diff options
| author | Christoph Hellwig <hch@lst.de> | 2026-05-07 08:24:57 +0300 |
|---|---|---|
| committer | Carlos Maiolino <cem@kernel.org> | 2026-05-11 13:51:57 +0300 |
| commit | 5082d8835070fe63f3c61fe574cbb5319bd94575 (patch) | |
| tree | af107591afa4f57769cf24d3cddac5500a687e9d | |
| parent | 87e63466c9fc30c3d95b8741c3df1f1ff01d7f23 (diff) | |
| download | linux-5082d8835070fe63f3c61fe574cbb5319bd94575.tar.xz | |
xfs: fix the "limiting open zones" message
The xfs logging macros include a newline, remove the \n, which adds an
extra one.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Carlos Maiolino <cmaiolino@redhat.com>
Reviewed-by: Andrey Albershteyn <aalbersh@kernel.org>
Signed-off-by: Carlos Maiolino <cem@kernel.org>
| -rw-r--r-- | fs/xfs/xfs_zone_alloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_zone_alloc.c b/fs/xfs/xfs_zone_alloc.c index c64f9ab743a6..5e297b75a85f 100644 --- a/fs/xfs/xfs_zone_alloc.c +++ b/fs/xfs/xfs_zone_alloc.c @@ -1170,7 +1170,7 @@ xfs_calc_open_zones( if (bdev_open_zones && bdev_open_zones < mp->m_max_open_zones) { mp->m_max_open_zones = bdev_open_zones; - xfs_info(mp, "limiting open zones to %u due to hardware limit.\n", + xfs_info(mp, "limiting open zones to %u due to hardware limit.", bdev_open_zones); } |
