diff options
author | Christoph Hellwig <hch@infradead.org> | 2007-08-30 03:21:22 -0400 |
---|---|---|
committer | Tim Shimmin <tes@chook.melbourne.sgi.com> | 2007-10-15 22:16:35 -0400 |
commit | 743944967021f3759d3540b0dfbc7ee7215bc4b0 (patch) | |
tree | 6a7eed892bf6f6fd70d2072cd88cb536325cc4b8 /fs/xfs/xfs_mount.h | |
parent | bd186aa901c183d6e25257711b6c64b42a90dde0 (diff) |
[XFS] move syncing related members from struct bhv_vfs to struct xfs_mount
SGI-PV: 969608
SGI-Modid: xfs-linux-melb:xfs-kern:29508a
Signed-off-by: Christoph Hellwig <hch@infradead.org>
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Tim Shimmin <tes@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_mount.h')
-rw-r--r-- | fs/xfs/xfs_mount.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h index f37060bcde53..94f73c523e5f 100644 --- a/fs/xfs/xfs_mount.h +++ b/fs/xfs/xfs_mount.h | |||
@@ -433,6 +433,12 @@ typedef struct xfs_mount { | |||
433 | struct mutex m_icsb_mutex; /* balancer sync lock */ | 433 | struct mutex m_icsb_mutex; /* balancer sync lock */ |
434 | #endif | 434 | #endif |
435 | struct xfs_mru_cache *m_filestream; /* per-mount filestream data */ | 435 | struct xfs_mru_cache *m_filestream; /* per-mount filestream data */ |
436 | struct task_struct *m_sync_task; /* generalised sync thread */ | ||
437 | bhv_vfs_sync_work_t m_sync_work; /* work item for VFS_SYNC */ | ||
438 | struct list_head m_sync_list; /* sync thread work item list */ | ||
439 | spinlock_t m_sync_lock; /* work item list lock */ | ||
440 | int m_sync_seq; /* sync thread generation no. */ | ||
441 | wait_queue_head_t m_wait_single_sync_task; | ||
436 | } xfs_mount_t; | 442 | } xfs_mount_t; |
437 | 443 | ||
438 | /* | 444 | /* |