btrfs: remove unnecessary type casts
authorYu Zhe <yuzhe@nfschina.com>
Thu, 31 Mar 2022 10:34:08 +0000 (03:34 -0700)
committerDavid Sterba <dsterba@suse.com>
Mon, 16 May 2022 15:03:11 +0000 (17:03 +0200)
Explicit type casts are not necessary when it's void* to another pointer
type.

Signed-off-by: Yu Zhe <yuzhe@nfschina.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/check-integrity.c
fs/btrfs/disk-io.c
fs/btrfs/inode.c
fs/btrfs/ioctl.c
fs/btrfs/relocation.c
fs/btrfs/scrub.c
fs/btrfs/space-info.c
fs/btrfs/subpage.c
fs/btrfs/volumes.c

index abac86a..62eb149 100644 (file)
@@ -2033,7 +2033,7 @@ continue_loop:
 
 static void btrfsic_bio_end_io(struct bio *bp)
 {
-       struct btrfsic_block *block = (struct btrfsic_block *)bp->bi_private;
+       struct btrfsic_block *block = bp->bi_private;
        int iodone_w_error;
 
        /* mutex is not held! This is not save if IO is not yet completed
index 22105c8..f6eef78 100644 (file)
@@ -1984,7 +1984,7 @@ static void end_workqueue_fn(struct btrfs_work *work)
 
 static int cleaner_kthread(void *arg)
 {
-       struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)arg;
+       struct btrfs_fs_info *fs_info = arg;
        int again;
 
        while (1) {
@@ -3317,7 +3317,7 @@ static int init_mount_fs_info(struct btrfs_fs_info *fs_info, struct super_block
 
 static int btrfs_uuid_rescan_kthread(void *data)
 {
-       struct btrfs_fs_info *fs_info = (struct btrfs_fs_info *)data;
+       struct btrfs_fs_info *fs_info = data;
        int ret;
 
        /*
index 7ddcc67..5ebc86d 100644 (file)
@@ -8938,7 +8938,7 @@ int btrfs_drop_inode(struct inode *inode)
 
 static void init_once(void *foo)
 {
-       struct btrfs_inode *ei = (struct btrfs_inode *) foo;
+       struct btrfs_inode *ei = foo;
 
        inode_init_once(&ei->vfs_inode);
 }
index d1e1edd..9d8e468 100644 (file)
@@ -2596,7 +2596,7 @@ err:
 static noinline int btrfs_ioctl_tree_search(struct inode *inode,
                                            void __user *argp)
 {
-       struct btrfs_ioctl_search_args __user *uargs;
+       struct btrfs_ioctl_search_args __user *uargs = argp;
        struct btrfs_ioctl_search_key sk;
        int ret;
        size_t buf_size;
@@ -2604,8 +2604,6 @@ static noinline int btrfs_ioctl_tree_search(struct inode *inode,
        if (!capable(CAP_SYS_ADMIN))
                return -EPERM;
 
-       uargs = (struct btrfs_ioctl_search_args __user *)argp;
-
        if (copy_from_user(&sk, &uargs->key, sizeof(sk)))
                return -EFAULT;
 
@@ -2628,7 +2626,7 @@ static noinline int btrfs_ioctl_tree_search(struct inode *inode,
 static noinline int btrfs_ioctl_tree_search_v2(struct inode *inode,
                                               void __user *argp)
 {
-       struct btrfs_ioctl_search_args_v2 __user *uarg;
+       struct btrfs_ioctl_search_args_v2 __user *uarg = argp;
        struct btrfs_ioctl_search_args_v2 args;
        int ret;
        size_t buf_size;
@@ -2638,7 +2636,6 @@ static noinline int btrfs_ioctl_tree_search_v2(struct inode *inode,
                return -EPERM;
 
        /* copy search header and buffer size */
-       uarg = (struct btrfs_ioctl_search_args_v2 __user *)argp;
        if (copy_from_user(&args, uarg, sizeof(args)))
                return -EFAULT;
 
index 79af494..50bdd82 100644 (file)
@@ -362,7 +362,7 @@ struct btrfs_root *find_reloc_root(struct btrfs_fs_info *fs_info, u64 bytenr)
        rb_node = rb_simple_search(&rc->reloc_root_tree.rb_root, bytenr);
        if (rb_node) {
                node = rb_entry(rb_node, struct mapping_node, rb_node);
-               root = (struct btrfs_root *)node->data;
+               root = node->data;
        }
        spin_unlock(&rc->reloc_root_tree.lock);
        return btrfs_grab_root(root);
index 96a8ad3..d07059a 100644 (file)
@@ -2790,7 +2790,7 @@ static void scrub_parity_bio_endio_worker(struct btrfs_work *work)
 
 static void scrub_parity_bio_endio(struct bio *bio)
 {
-       struct scrub_parity *sparity = (struct scrub_parity *)bio->bi_private;
+       struct scrub_parity *sparity = bio->bi_private;
        struct btrfs_fs_info *fs_info = sparity->sctx->fs_info;
 
        if (bio->bi_status)
index b87931a..4de2c82 100644 (file)
@@ -519,7 +519,7 @@ static void shrink_delalloc(struct btrfs_fs_info *fs_info,
                items = calc_reclaim_items_nr(fs_info, to_reclaim) * 2;
        }
 
-       trans = (struct btrfs_trans_handle *)current->journal_info;
+       trans = current->journal_info;
 
        /*
         * If we are doing more ordered than delalloc we need to just wait on
index a498065..a105b29 100644 (file)
@@ -150,7 +150,7 @@ void btrfs_detach_subpage(const struct btrfs_fs_info *fs_info,
        if (!btrfs_is_subpage(fs_info, page) || !PagePrivate(page))
                return;
 
-       subpage = (struct btrfs_subpage *)detach_page_private(page);
+       subpage = detach_page_private(page);
        ASSERT(subpage);
        btrfs_free_subpage(subpage);
 }
index 04809d4..8a3f1bd 100644 (file)
@@ -8266,7 +8266,7 @@ bool btrfs_pinned_by_swapfile(struct btrfs_fs_info *fs_info, void *ptr)
 
 static int relocating_repair_kthread(void *data)
 {
-       struct btrfs_block_group *cache = (struct btrfs_block_group *)data;
+       struct btrfs_block_group *cache = data;
        struct btrfs_fs_info *fs_info = cache->fs_info;
        u64 target;
        int ret = 0;