f2fs: remove new blank line of f2fs kernel message
authorChao Yu <yuchao0@huawei.com>
Mon, 15 Apr 2019 07:28:32 +0000 (15:28 +0800)
committerJaegeuk Kim <jaegeuk@kernel.org>
Thu, 9 May 2019 04:23:08 +0000 (21:23 -0700)
Just removing '\n' in f2fs_msg(, "\n") to avoid redundant new blank line.

Signed-off-by: Chao Yu <yuchao0@huawei.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/file.c
fs/f2fs/super.c

index abdff1a0ae9222aeb3011d742792598a6b25cccd..f34c6820c44e8b36f6de974cbd31ea97ff286c94 100644 (file)
@@ -2576,7 +2576,7 @@ static int f2fs_ioc_flush_device(struct file *filp, unsigned long arg)
        if (!f2fs_is_multi_device(sbi) || sbi->s_ndevs - 1 <= range.dev_num ||
                        __is_large_section(sbi)) {
                f2fs_msg(sbi->sb, KERN_WARNING,
-                       "Can't flush %u in %d for segs_per_sec %u != 1\n",
+                       "Can't flush %u in %d for segs_per_sec %u != 1",
                                range.dev_num, sbi->s_ndevs,
                                sbi->segs_per_sec);
                return -EINVAL;
@@ -2858,7 +2858,7 @@ int f2fs_pin_file_control(struct inode *inode, bool inc)
 
        if (fi->i_gc_failures[GC_FAILURE_PIN] > sbi->gc_pin_file_threshold) {
                f2fs_msg(sbi->sb, KERN_WARNING,
-                       "%s: Enable GC = ino %lx after %x GC trials\n",
+                       "%s: Enable GC = ino %lx after %x GC trials",
                        __func__, inode->i_ino,
                        fi->i_gc_failures[GC_FAILURE_PIN]);
                clear_inode_flag(inode, FI_PIN_FILE);
index 0b6fa77c35f3e3b35580330c2758963c88f7ce62..2cd78583218ae4c2b4609ea9d6556641a4b91427 100644 (file)
@@ -2454,7 +2454,7 @@ static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
        /* Currently, support only 4KB page cache size */
        if (F2FS_BLKSIZE != PAGE_SIZE) {
                f2fs_msg(sb, KERN_INFO,
-                       "Invalid page_cache_size (%lu), supports only 4KB\n",
+                       "Invalid page_cache_size (%lu), supports only 4KB",
                        PAGE_SIZE);
                return 1;
        }
@@ -2463,7 +2463,7 @@ static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
        blocksize = 1 << le32_to_cpu(raw_super->log_blocksize);
        if (blocksize != F2FS_BLKSIZE) {
                f2fs_msg(sb, KERN_INFO,
-                       "Invalid blocksize (%u), supports only 4KB\n",
+                       "Invalid blocksize (%u), supports only 4KB",
                        blocksize);
                return 1;
        }
@@ -2471,7 +2471,7 @@ static int sanity_check_raw_super(struct f2fs_sb_info *sbi,
        /* check log blocks per segment */
        if (le32_to_cpu(raw_super->log_blocks_per_seg) != 9) {
                f2fs_msg(sb, KERN_INFO,
-                       "Invalid log blocks per segment (%u)\n",
+                       "Invalid log blocks per segment (%u)",
                        le32_to_cpu(raw_super->log_blocks_per_seg));
                return 1;
        }
@@ -3113,7 +3113,7 @@ try_onemore:
 #ifndef CONFIG_BLK_DEV_ZONED
        if (f2fs_sb_has_blkzoned(sbi)) {
                f2fs_msg(sb, KERN_ERR,
-                        "Zoned block device support is not enabled\n");
+                        "Zoned block device support is not enabled");
                err = -EOPNOTSUPP;
                goto free_sb_buf;
        }