Lines Matching refs:opnum
2163 static inline void nfsd4_increment_op_stats(u32 opnum)
2165 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
2166 nfsdstats.nfs4_opcount[opnum]++;
2171 static const char *nfsd4_op_name(unsigned opnum);
2197 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
2199 if (first_op->opnum == OP_SEQUENCE)
2213 return &nfsd4_ops[op->opnum];
2218 if (op->opnum == OP_ILLEGAL)
2245 if (next->opnum == OP_ILLEGAL)
2289 if (op->opnum == OP_PUTFH)
2291 else if (op->opnum == OP_SAVEFH)
2293 else if (op->opnum == OP_RESTOREFH)
2295 else if (op->opnum == OP_COPY) {
2376 if (op->opnum == OP_OPEN)
2446 nfsd4_op_name(op->opnum));
2449 nfsd4_increment_op_stats(op->opnum);
3252 if (test_bit(this->opnum, allow->u.longs) &&
3265 if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
3276 op->opnum, nfsd4_op_name(op->opnum));
3281 static const char *nfsd4_op_name(unsigned opnum)
3283 if (opnum < ARRAY_SIZE(nfsd4_ops))
3284 return nfsd4_ops[opnum].op_name;