trivial fix s/u64/u32/ for sb->s_blocksize

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hello,

in btrfs_ioctl_clone(), using u32 for super_block->s_blocksize assignment.

Signed-off-by: Jie Liu <jeff.liu@xxxxxxxxxx>

diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 970977a..03ab77a 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -2133,12 +2133,12 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
     struct extent_buffer *leaf;
     char *buf;
     struct btrfs_key key;
-    u32 nritems;
     int slot;
     int ret;
     u64 len = olen;
-    u64 bs = root->fs_info->sb->s_blocksize;
     u64 hint_byte;
+    u32 bs = root->fs_info->sb->s_blocksize;
+    u32 nritems;

     /*
      * TODO:
--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Filesystem Development]     [Linux NFS]     [Linux NILFS]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux