diff options
author | Qu Wenruo | 2014-02-28 03:46:19 +0100 |
---|---|---|
committer | Josef Bacik | 2014-03-10 20:17:16 +0100 |
commit | d458b0540ebd728b4d6ef47cc5ef0dbfd4dd361a (patch) | |
tree | cc00182614b878fcfde3218ec0daf5ac4332cab5 /fs/btrfs/volumes.h | |
parent | btrfs: Cleanup the old btrfs_worker. (diff) | |
download | kernel-qcow2-linux-d458b0540ebd728b4d6ef47cc5ef0dbfd4dd361a.tar.gz kernel-qcow2-linux-d458b0540ebd728b4d6ef47cc5ef0dbfd4dd361a.tar.xz kernel-qcow2-linux-d458b0540ebd728b4d6ef47cc5ef0dbfd4dd361a.zip |
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/volumes.h')
-rw-r--r-- | fs/btrfs/volumes.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/volumes.h b/fs/btrfs/volumes.h index 5d9a03773ca6..80754f9dd3df 100644 --- a/fs/btrfs/volumes.h +++ b/fs/btrfs/volumes.h @@ -95,7 +95,7 @@ struct btrfs_device { /* per-device scrub information */ struct scrub_ctx *scrub_device; - struct btrfs_work_struct work; + struct btrfs_work work; struct rcu_head rcu; struct work_struct rcu_work; |