All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 09/15] xfs: Introduce a new mutex lock for shrinkfs
@ 2012-11-16  6:46 Jeff Liu
  0 siblings, 0 replies; only message in thread
From: Jeff Liu @ 2012-11-16  6:46 UTC (permalink / raw)
  To: xfs

Introduce a new mutex lock for shrinkfs which is same to growfs.


Signed-off-by: Jie Liu <jeff.liu@oracle.com>

---
 fs/xfs/xfs_mount.h |    1 +
 fs/xfs/xfs_super.c |    1 +
 2 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/fs/xfs/xfs_mount.h b/fs/xfs/xfs_mount.h
index 4fe2232..9eaea5a 100644
--- a/fs/xfs/xfs_mount.h
+++ b/fs/xfs/xfs_mount.h
@@ -161,6 +161,7 @@ typedef struct xfs_mount {
 	struct radix_tree_root	m_perag_tree;	/* per-ag accounting info */
 	spinlock_t		m_perag_lock;	/* lock for m_perag_tree */
 	struct mutex		m_growlock;	/* growfs mutex */
+	struct mutex		m_shrinklock;	/* shrinkfs mutex */
 	int			m_fixedfsid[2];	/* unchanged for life of FS */
 	uint			m_dmevmask;	/* DMI events for this FS */
 	__uint64_t		m_flags;	/* global mount flags */
diff --git a/fs/xfs/xfs_super.c b/fs/xfs/xfs_super.c
index e01f64c..81b6b60 100644
--- a/fs/xfs/xfs_super.c
+++ b/fs/xfs/xfs_super.c
@@ -1330,6 +1330,7 @@ xfs_fs_fill_super(
 
 	spin_lock_init(&mp->m_sb_lock);
 	mutex_init(&mp->m_growlock);
+	mutex_init(&mp->m_shrinklock);
 	atomic_set(&mp->m_active_trans, 0);
 
 	mp->m_super = sb;
-- 
1.7.4.1

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2012-11-16  6:44 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-16  6:46 [PATCH 09/15] xfs: Introduce a new mutex lock for shrinkfs Jeff Liu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.