diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2006-08-30 11:16:23 -0400 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2006-08-30 11:16:23 -0400 |
commit | d6a53727683bbf993c01ab49b45e0eac17e23df1 (patch) | |
tree | c17d58d664222633c254f09561eed847c1ccef59 | |
parent | ec45d9f583b3663f90a7c5c559fd13e6e4c56ad5 (diff) |
[GFS2] Use const on glock lookup key
Use const for the glock name which is being used as a lookup key
in the glock hash table.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
-rw-r--r-- | fs/gfs2/glock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c index 4a2e90dc1d02..679cb836ed0c 100644 --- a/fs/gfs2/glock.c +++ b/fs/gfs2/glock.c | |||
@@ -83,7 +83,7 @@ static inline int relaxed_state_ok(unsigned int actual, unsigned requested, | |||
83 | * Returns: The number of the corresponding hash bucket | 83 | * Returns: The number of the corresponding hash bucket |
84 | */ | 84 | */ |
85 | 85 | ||
86 | static unsigned int gl_hash(struct lm_lockname *name) | 86 | static unsigned int gl_hash(const struct lm_lockname *name) |
87 | { | 87 | { |
88 | unsigned int h; | 88 | unsigned int h; |
89 | 89 | ||
@@ -200,7 +200,7 @@ static inline int queue_empty(struct gfs2_glock *gl, struct list_head *head) | |||
200 | */ | 200 | */ |
201 | 201 | ||
202 | static struct gfs2_glock *search_bucket(struct gfs2_gl_hash_bucket *bucket, | 202 | static struct gfs2_glock *search_bucket(struct gfs2_gl_hash_bucket *bucket, |
203 | struct lm_lockname *name) | 203 | const struct lm_lockname *name) |
204 | { | 204 | { |
205 | struct gfs2_glock *gl; | 205 | struct gfs2_glock *gl; |
206 | 206 | ||
@@ -227,7 +227,7 @@ static struct gfs2_glock *search_bucket(struct gfs2_gl_hash_bucket *bucket, | |||
227 | */ | 227 | */ |
228 | 228 | ||
229 | static struct gfs2_glock *gfs2_glock_find(struct gfs2_sbd *sdp, | 229 | static struct gfs2_glock *gfs2_glock_find(struct gfs2_sbd *sdp, |
230 | struct lm_lockname *name) | 230 | const struct lm_lockname *name) |
231 | { | 231 | { |
232 | struct gfs2_gl_hash_bucket *bucket = &sdp->sd_gl_hash[gl_hash(name)]; | 232 | struct gfs2_gl_hash_bucket *bucket = &sdp->sd_gl_hash[gl_hash(name)]; |
233 | struct gfs2_glock *gl; | 233 | struct gfs2_glock *gl; |