diff options
author | Tobias Klauser <tklauser@nuerscht.ch> | 2006-03-24 06:15:34 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-03-24 10:33:19 -0500 |
commit | e8c96f8c29d89af0c13dc2819a9a00575846ca18 (patch) | |
tree | b90ed0da4803df56a91be5979580e335af2d697c /fs/lockd | |
parent | b5029622ac86bb441dc5e641226fb1152fca02d7 (diff) |
[PATCH] fs: Use ARRAY_SIZE macro
Use ARRAY_SIZE macro instead of sizeof(x)/sizeof(x[0]) and remove a
duplicate of ARRAY_SIZE. Some trailing whitespaces are also deleted.
Signed-off-by: Tobias Klauser <tklauser@nuerscht.ch>
Cc: David Howells <dhowells@redhat.com>
Cc: Dave Kleikamp <shaggy@austin.ibm.com>
Acked-by: Trond Myklebust <trond.myklebust@fys.uio.no>
Cc: Neil Brown <neilb@cse.unsw.edu.au>
Cc: Chris Mason <mason@suse.com>
Cc: Jeff Mahoney <jeffm@suse.com>
Cc: Christoph Hellwig <hch@lst.de>
Cc: Nathan Scott <nathans@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/mon.c | 6 | ||||
-rw-r--r-- | fs/lockd/svc.c | 2 | ||||
-rw-r--r-- | fs/lockd/xdr.c | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c index 0edc03e67966..a89cb8aa2c88 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c | |||
@@ -224,8 +224,8 @@ static struct rpc_procinfo nsm_procedures[] = { | |||
224 | }; | 224 | }; |
225 | 225 | ||
226 | static struct rpc_version nsm_version1 = { | 226 | static struct rpc_version nsm_version1 = { |
227 | .number = 1, | 227 | .number = 1, |
228 | .nrprocs = sizeof(nsm_procedures)/sizeof(nsm_procedures[0]), | 228 | .nrprocs = ARRAY_SIZE(nsm_procedures), |
229 | .procs = nsm_procedures | 229 | .procs = nsm_procedures |
230 | }; | 230 | }; |
231 | 231 | ||
@@ -238,7 +238,7 @@ static struct rpc_stat nsm_stats; | |||
238 | static struct rpc_program nsm_program = { | 238 | static struct rpc_program nsm_program = { |
239 | .name = "statd", | 239 | .name = "statd", |
240 | .number = SM_PROGRAM, | 240 | .number = SM_PROGRAM, |
241 | .nrvers = sizeof(nsm_version)/sizeof(nsm_version[0]), | 241 | .nrvers = ARRAY_SIZE(nsm_version), |
242 | .version = nsm_version, | 242 | .version = nsm_version, |
243 | .stats = &nsm_stats | 243 | .stats = &nsm_stats |
244 | }; | 244 | }; |
diff --git a/fs/lockd/svc.c b/fs/lockd/svc.c index 71a30b416d1a..5e85bde6c123 100644 --- a/fs/lockd/svc.c +++ b/fs/lockd/svc.c | |||
@@ -509,7 +509,7 @@ static struct svc_version * nlmsvc_version[] = { | |||
509 | 509 | ||
510 | static struct svc_stat nlmsvc_stats; | 510 | static struct svc_stat nlmsvc_stats; |
511 | 511 | ||
512 | #define NLM_NRVERS (sizeof(nlmsvc_version)/sizeof(nlmsvc_version[0])) | 512 | #define NLM_NRVERS ARRAY_SIZE(nlmsvc_version) |
513 | static struct svc_program nlmsvc_program = { | 513 | static struct svc_program nlmsvc_program = { |
514 | .pg_prog = NLM_PROGRAM, /* program number */ | 514 | .pg_prog = NLM_PROGRAM, /* program number */ |
515 | .pg_nvers = NLM_NRVERS, /* number of entries in nlmsvc_version */ | 515 | .pg_nvers = NLM_NRVERS, /* number of entries in nlmsvc_version */ |
diff --git a/fs/lockd/xdr.c b/fs/lockd/xdr.c index 200fbda2c6d1..1d700a4dd0b5 100644 --- a/fs/lockd/xdr.c +++ b/fs/lockd/xdr.c | |||
@@ -599,7 +599,7 @@ static struct rpc_stat nlm_stats; | |||
599 | struct rpc_program nlm_program = { | 599 | struct rpc_program nlm_program = { |
600 | .name = "lockd", | 600 | .name = "lockd", |
601 | .number = NLM_PROGRAM, | 601 | .number = NLM_PROGRAM, |
602 | .nrvers = sizeof(nlm_versions) / sizeof(nlm_versions[0]), | 602 | .nrvers = ARRAY_SIZE(nlm_versions), |
603 | .version = nlm_versions, | 603 | .version = nlm_versions, |
604 | .stats = &nlm_stats, | 604 | .stats = &nlm_stats, |
605 | }; | 605 | }; |