diff options
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 5dd52b70859a..3fc683f46b3e 100644 --- a/fs/lockd/mon.c +++ b/fs/lockd/mon.c | |||
@@ -233,8 +233,8 @@ static struct rpc_procinfo nsm_procedures[] = { | |||
233 | }; | 233 | }; |
234 | 234 | ||
235 | static struct rpc_version nsm_version1 = { | 235 | static struct rpc_version nsm_version1 = { |
236 | .number = 1, | 236 | .number = 1, |
237 | .nrprocs = sizeof(nsm_procedures)/sizeof(nsm_procedures[0]), | 237 | .nrprocs = ARRAY_SIZE(nsm_procedures), |
238 | .procs = nsm_procedures | 238 | .procs = nsm_procedures |
239 | }; | 239 | }; |
240 | 240 | ||
@@ -247,7 +247,7 @@ static struct rpc_stat nsm_stats; | |||
247 | static struct rpc_program nsm_program = { | 247 | static struct rpc_program nsm_program = { |
248 | .name = "statd", | 248 | .name = "statd", |
249 | .number = SM_PROGRAM, | 249 | .number = SM_PROGRAM, |
250 | .nrvers = sizeof(nsm_version)/sizeof(nsm_version[0]), | 250 | .nrvers = ARRAY_SIZE(nsm_version), |
251 | .version = nsm_version, | 251 | .version = nsm_version, |
252 | .stats = &nsm_stats | 252 | .stats = &nsm_stats |
253 | }; | 253 | }; |
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 766ce06146b5..f22a3764461a 100644 --- a/fs/lockd/xdr.c +++ b/fs/lockd/xdr.c | |||
@@ -604,7 +604,7 @@ static struct rpc_stat nlm_stats; | |||
604 | struct rpc_program nlm_program = { | 604 | struct rpc_program nlm_program = { |
605 | .name = "lockd", | 605 | .name = "lockd", |
606 | .number = NLM_PROGRAM, | 606 | .number = NLM_PROGRAM, |
607 | .nrvers = sizeof(nlm_versions) / sizeof(nlm_versions[0]), | 607 | .nrvers = ARRAY_SIZE(nlm_versions), |
608 | .version = nlm_versions, | 608 | .version = nlm_versions, |
609 | .stats = &nlm_stats, | 609 | .stats = &nlm_stats, |
610 | }; | 610 | }; |