]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
nfs: count correct array for mnt3_counts array size
authorEryu Guan <eguan@redhat.com>
Tue, 18 Jul 2017 05:32:32 +0000 (13:32 +0800)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Fri, 21 Jul 2017 12:49:57 +0000 (08:49 -0400)
Array size of mnt3_counts should be the size of array
mnt3_procedures, not mnt_procedures, though they're same in size
right now. Found this by code inspection.

Fixes: 1c5876ddbdb4 ("sunrpc: move p_count out of struct rpc_procinfo")
Cc: Christoph Hellwig <hch@lst.de>
Signed-off-by: Eryu Guan <eguan@redhat.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
fs/nfs/mount_clnt.c

index 3efe946672beb0b23cb7b7fbf0da79842b801cd5..60bad882c12351fe39314bd1d265f7980c5719ab 100644 (file)
@@ -512,7 +512,7 @@ static const struct rpc_version mnt_version1 = {
        .counts         = mnt_counts,
 };
 
-static unsigned int mnt3_counts[ARRAY_SIZE(mnt_procedures)];
+static unsigned int mnt3_counts[ARRAY_SIZE(mnt3_procedures)];
 static const struct rpc_version mnt_version3 = {
        .number         = 3,
        .nrprocs        = ARRAY_SIZE(mnt3_procedures),