diff options
author | Qu Wenruo <quwenruo@cn.fujitsu.com> | 2014-02-27 21:46:19 -0500 |
---|---|---|
committer | Josef Bacik <jbacik@fb.com> | 2014-03-10 15:17:16 -0400 |
commit | d458b0540ebd728b4d6ef47cc5ef0dbfd4dd361a (patch) | |
tree | cc00182614b878fcfde3218ec0daf5ac4332cab5 /fs/btrfs/qgroup.c | |
parent | a046e9c88b0f46677923864295eac7c92cd962cb (diff) |
btrfs: Cleanup the "_struct" suffix in btrfs_workequeue
Since the "_struct" suffix is mainly used for distinguish the differnt
btrfs_work between the original and the newly created one,
there is no need using the suffix since all btrfs_workers are changed
into btrfs_workqueue.
Also this patch fixed some codes whose code style is changed due to the
too long "_struct" suffix.
Signed-off-by: Qu Wenruo <quwenruo@cn.fujitsu.com>
Tested-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Josef Bacik <jbacik@fb.com>
Diffstat (limited to 'fs/btrfs/qgroup.c')
-rw-r--r-- | fs/btrfs/qgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/qgroup.c b/fs/btrfs/qgroup.c index 38617cc2fdd5..2cf905877aaf 100644 --- a/fs/btrfs/qgroup.c +++ b/fs/btrfs/qgroup.c | |||
@@ -1984,7 +1984,7 @@ out: | |||
1984 | return ret; | 1984 | return ret; |
1985 | } | 1985 | } |
1986 | 1986 | ||
1987 | static void btrfs_qgroup_rescan_worker(struct btrfs_work_struct *work) | 1987 | static void btrfs_qgroup_rescan_worker(struct btrfs_work *work) |
1988 | { | 1988 | { |
1989 | struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info, | 1989 | struct btrfs_fs_info *fs_info = container_of(work, struct btrfs_fs_info, |
1990 | qgroup_rescan_work); | 1990 | qgroup_rescan_work); |