diff options
author | Xu Gang <xug@cn.fujitsu.com> | 2009-04-14 14:54:14 +0800 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2009-04-15 10:18:07 +0100 |
commit | 1328df725239804ae30fc7257c1a3185e679b517 (patch) | |
tree | 0146b3e7d4f254bde14d82199965f3fcad6bfba3 /fs | |
parent | 10d2198805d7faa2b193485446ff6b1de42c9b78 (diff) | |
download | linux-3.10-1328df725239804ae30fc7257c1a3185e679b517.tar.gz linux-3.10-1328df725239804ae30fc7257c1a3185e679b517.tar.bz2 linux-3.10-1328df725239804ae30fc7257c1a3185e679b517.zip |
GFS2: Use DEFINE_SPINLOCK
SPIN_LOCK_UNLOCKED is deprecated, use DEFINE_SPINLOCK instead.
(as suggested in Documentation/spinlocks.txt)
Signed-off-by: Xu Gang <xug@cn.fujitsu.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/quota.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/quota.c b/fs/gfs2/quota.c index 47bc5cbba48..152e6c4a0dc 100644 --- a/fs/gfs2/quota.c +++ b/fs/gfs2/quota.c @@ -81,7 +81,7 @@ struct gfs2_quota_change_host { static LIST_HEAD(qd_lru_list); static atomic_t qd_lru_count = ATOMIC_INIT(0); -static spinlock_t qd_lru_lock = SPIN_LOCK_UNLOCKED; +static DEFINE_SPINLOCK(qd_lru_lock); int gfs2_shrink_qd_memory(int nr, gfp_t gfp_mask) { |