aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/locking/nolock
diff options
context:
space:
mode:
authorSteven Whitehouse <swhiteho@redhat.com>2006-09-07 17:35:48 -0400
committerSteven Whitehouse <swhiteho@redhat.com>2006-09-07 17:35:48 -0400
commit5ce311ebdb90429519f7c6d2092e4ae6ca8cba74 (patch)
tree7492b442e0d18a7aa745e696e6595856f8becfe5 /fs/gfs2/locking/nolock
parent1c089c325d5cda0f64a3cf8edf3aaafa148f200a (diff)
[GFS2] Remove unused sync_lvb code from lock modules
This code is no longer used for anything and can be removed from the locking modules. The sync_lvb function is not required as this happens automatically with the current locking system. Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/locking/nolock')
-rw-r--r--fs/gfs2/locking/nolock/main.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/fs/gfs2/locking/nolock/main.c b/fs/gfs2/locking/nolock/main.c
index e326079430a2..ba7399787f62 100644
--- a/fs/gfs2/locking/nolock/main.c
+++ b/fs/gfs2/locking/nolock/main.c
@@ -162,17 +162,6 @@ static void nolock_unhold_lvb(lm_lock_t *lock, char *lvb)
162 kfree(lvb); 162 kfree(lvb);
163} 163}
164 164
165/**
166 * nolock_sync_lvb - sync out the value of a lvb
167 * @lock: the lock the LVB is associated with
168 * @lvb: the lock value block
169 *
170 */
171
172static void nolock_sync_lvb(lm_lock_t *lock, char *lvb)
173{
174}
175
176static int nolock_plock_get(lm_lockspace_t *lockspace, struct lm_lockname *name, 165static int nolock_plock_get(lm_lockspace_t *lockspace, struct lm_lockname *name,
177 struct file *file, struct file_lock *fl) 166 struct file *file, struct file_lock *fl)
178{ 167{
@@ -221,7 +210,6 @@ static struct lm_lockops nolock_ops = {
221 .lm_cancel = nolock_cancel, 210 .lm_cancel = nolock_cancel,
222 .lm_hold_lvb = nolock_hold_lvb, 211 .lm_hold_lvb = nolock_hold_lvb,
223 .lm_unhold_lvb = nolock_unhold_lvb, 212 .lm_unhold_lvb = nolock_unhold_lvb,
224 .lm_sync_lvb = nolock_sync_lvb,
225 .lm_plock_get = nolock_plock_get, 213 .lm_plock_get = nolock_plock_get,
226 .lm_plock = nolock_plock, 214 .lm_plock = nolock_plock,
227 .lm_punlock = nolock_punlock, 215 .lm_punlock = nolock_punlock,