aboutsummaryrefslogtreecommitdiffstats
path: root/fs/nfs/mount_clnt.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/nfs/mount_clnt.c')
-rw-r--r--fs/nfs/mount_clnt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/nfs/mount_clnt.c b/fs/nfs/mount_clnt.c
index 59047f8d7d72..3dde50c093b5 100644
--- a/fs/nfs/mount_clnt.c
+++ b/fs/nfs/mount_clnt.c
@@ -503,13 +503,13 @@ static struct rpc_procinfo mnt3_procedures[] = {
503 503
504static struct rpc_version mnt_version1 = { 504static struct rpc_version mnt_version1 = {
505 .number = 1, 505 .number = 1,
506 .nrprocs = 2, 506 .nrprocs = ARRAY_SIZE(mnt_procedures),
507 .procs = mnt_procedures, 507 .procs = mnt_procedures,
508}; 508};
509 509
510static struct rpc_version mnt_version3 = { 510static struct rpc_version mnt_version3 = {
511 .number = 3, 511 .number = 3,
512 .nrprocs = 2, 512 .nrprocs = ARRAY_SIZE(mnt3_procedures),
513 .procs = mnt3_procedures, 513 .procs = mnt3_procedures,
514}; 514};
515 515