Lines Matching refs:ops
1067 struct nfsd4_minorversion_ops *ops; in nfsd4_decode_compound() local
1089 argp->ops = kmalloc(argp->opcnt * sizeof(*argp->ops), GFP_KERNEL); in nfsd4_decode_compound()
1090 if (!argp->ops) { in nfsd4_decode_compound()
1091 argp->ops = argp->iops; in nfsd4_decode_compound()
1100 ops = &nfsd4_minorversion[argp->minorversion]; in nfsd4_decode_compound()
1102 op = &argp->ops[i]; in nfsd4_decode_compound()
1138 if (op->opnum >= OP_ACCESS && op->opnum < ops->nops) in nfsd4_decode_compound()
1139 op->status = ops->decoders[op->opnum](argp, &op->u); in nfsd4_decode_compound()
2684 if (args->ops != args->iops) { in nfsd4_release_compoundargs()
2685 kfree(args->ops); in nfsd4_release_compoundargs()
2686 args->ops = args->iops; in nfsd4_release_compoundargs()
2709 args->ops = args->iops; in nfs4svc_decode_compoundargs()