diff options
author | Dave Chinner <dchinner@redhat.com> | 2012-10-08 12:56:05 +0200 |
---|---|---|
committer | Ben Myers <bpm@sgi.com> | 2012-10-17 19:19:27 +0200 |
commit | 5889608df35783590251cfd440fa5d48f1855179 (patch) | |
tree | 4284177945081868e2756d27ae9706e1cc9ee357 /fs/xfs/xfs_sync.h | |
parent | xfs: xfs_sync_data is redundant. (diff) | |
download | linux-5889608df35783590251cfd440fa5d48f1855179.tar.xz linux-5889608df35783590251cfd440fa5d48f1855179.zip |
xfs: syncd workqueue is no more
With the syncd functions moved to the log and/or removed, the syncd
workqueue is the only remaining bit left. It is used by the log
covering/ail pushing work, as well as by the inode reclaim work.
Given how cheap workqueues are these days, give the log and inode
reclaim work their own work queues and kill the syncd work queue.
Signed-off-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Mark Tinguely <tinguely@sgi.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_sync.h')
-rw-r--r-- | fs/xfs/xfs_sync.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/fs/xfs/xfs_sync.h b/fs/xfs/xfs_sync.h index 0018e846f0dc..0beabea99e73 100644 --- a/fs/xfs/xfs_sync.h +++ b/fs/xfs/xfs_sync.h @@ -24,8 +24,6 @@ struct xfs_perag; #define SYNC_WAIT 0x0001 /* wait for i/o to complete */ #define SYNC_TRYLOCK 0x0002 /* only try to lock inodes */ -extern struct workqueue_struct *xfs_syncd_wq; /* sync workqueue */ - void xfs_reclaim_worker(struct work_struct *work); int xfs_quiesce_data(struct xfs_mount *mp); |