aboutsummaryrefslogtreecommitdiffstats
path: root/fs/lockd
diff options
context:
space:
mode:
Diffstat (limited to 'fs/lockd')
-rw-r--r--fs/lockd/mon.c6
-rw-r--r--fs/lockd/svc.c2
-rw-r--r--fs/lockd/xdr.c2
3 files changed, 5 insertions, 5 deletions
diff --git a/fs/lockd/mon.c b/fs/lockd/mon.c
index 0edc03e6796..a89cb8aa2c8 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
226static struct rpc_version nsm_version1 = { 226static 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;
238static struct rpc_program nsm_program = { 238static 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 71a30b416d1..5e85bde6c12 100644
--- a/fs/lockd/svc.c
+++ b/fs/lockd/svc.c
@@ -509,7 +509,7 @@ static struct svc_version * nlmsvc_version[] = {
509 509
510static struct svc_stat nlmsvc_stats; 510static 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)
513static struct svc_program nlmsvc_program = { 513static 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 200fbda2c6d..1d700a4dd0b 100644
--- a/fs/lockd/xdr.c
+++ b/fs/lockd/xdr.c
@@ -599,7 +599,7 @@ static struct rpc_stat nlm_stats;
599struct rpc_program nlm_program = { 599struct 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};