diff options
Diffstat (limited to 'fs/nfsd/nfs4xdr.c')
-rw-r--r-- | fs/nfsd/nfs4xdr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/nfs4xdr.c b/fs/nfsd/nfs4xdr.c index 69d3501173a8..03857fd81126 100644 --- a/fs/nfsd/nfs4xdr.c +++ b/fs/nfsd/nfs4xdr.c | |||
@@ -992,7 +992,7 @@ nfsd4_decode_compound(struct nfsd4_compoundargs *argp) | |||
992 | if (argp->opcnt > 100) | 992 | if (argp->opcnt > 100) |
993 | goto xdr_error; | 993 | goto xdr_error; |
994 | 994 | ||
995 | if (argp->opcnt > sizeof(argp->iops)/sizeof(argp->iops[0])) { | 995 | if (argp->opcnt > ARRAY_SIZE(argp->iops)) { |
996 | argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL); | 996 | argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL); |
997 | if (!argp->ops) { | 997 | if (!argp->ops) { |
998 | argp->ops = argp->iops; | 998 | argp->ops = argp->iops; |