diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-08 10:17:58 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-09-08 10:17:58 -0400 |
commit | 9b47c11d1cbedcba685c9bd90c73fd41acdfab0e (patch) | |
tree | 799f05877bd8973262da54852b7b8bf9a9916998 /fs/gfs2/lm.h | |
parent | a2c4580797f62b0dd9a48f1e0ce3fe8b8fd76262 (diff) |
[GFS2] Use void * instead of typedef for locking module interface
As requested by Jan Engelhardt, this removes the typedefs in the
locking module interface and replaces them with void *. Also
since we are changing the interface, I've added a few consts
as well.
Cc: Jan Engelhardt <jengelh@linux01.gwdg.de>
Cc: David Teigland <teigland@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/gfs2/lm.h')
-rw-r--r-- | fs/gfs2/lm.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/fs/gfs2/lm.h b/fs/gfs2/lm.h index 6b890e73e6c1..21cdc30ee08c 100644 --- a/fs/gfs2/lm.h +++ b/fs/gfs2/lm.h | |||
@@ -20,16 +20,16 @@ void gfs2_lm_unmount(struct gfs2_sbd *sdp); | |||
20 | int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...) | 20 | int gfs2_lm_withdraw(struct gfs2_sbd *sdp, char *fmt, ...) |
21 | __attribute__ ((format(printf, 2, 3))); | 21 | __attribute__ ((format(printf, 2, 3))); |
22 | int gfs2_lm_get_lock(struct gfs2_sbd *sdp, struct lm_lockname *name, | 22 | int gfs2_lm_get_lock(struct gfs2_sbd *sdp, struct lm_lockname *name, |
23 | lm_lock_t **lockp); | 23 | void **lockp); |
24 | void gfs2_lm_put_lock(struct gfs2_sbd *sdp, lm_lock_t *lock); | 24 | void gfs2_lm_put_lock(struct gfs2_sbd *sdp, void *lock); |
25 | unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, lm_lock_t *lock, | 25 | unsigned int gfs2_lm_lock(struct gfs2_sbd *sdp, void *lock, |
26 | unsigned int cur_state, unsigned int req_state, | 26 | unsigned int cur_state, unsigned int req_state, |
27 | unsigned int flags); | 27 | unsigned int flags); |
28 | unsigned int gfs2_lm_unlock(struct gfs2_sbd *sdp, lm_lock_t *lock, | 28 | unsigned int gfs2_lm_unlock(struct gfs2_sbd *sdp, void *lock, |
29 | unsigned int cur_state); | 29 | unsigned int cur_state); |
30 | void gfs2_lm_cancel(struct gfs2_sbd *sdp, lm_lock_t *lock); | 30 | void gfs2_lm_cancel(struct gfs2_sbd *sdp, void *lock); |
31 | int gfs2_lm_hold_lvb(struct gfs2_sbd *sdp, lm_lock_t *lock, char **lvbp); | 31 | int gfs2_lm_hold_lvb(struct gfs2_sbd *sdp, void *lock, char **lvbp); |
32 | void gfs2_lm_unhold_lvb(struct gfs2_sbd *sdp, lm_lock_t *lock, char *lvb); | 32 | void gfs2_lm_unhold_lvb(struct gfs2_sbd *sdp, void *lock, char *lvb); |
33 | int gfs2_lm_plock_get(struct gfs2_sbd *sdp, struct lm_lockname *name, | 33 | int gfs2_lm_plock_get(struct gfs2_sbd *sdp, struct lm_lockname *name, |
34 | struct file *file, struct file_lock *fl); | 34 | struct file *file, struct file_lock *fl); |
35 | int gfs2_lm_plock(struct gfs2_sbd *sdp, struct lm_lockname *name, | 35 | int gfs2_lm_plock(struct gfs2_sbd *sdp, struct lm_lockname *name, |