Lines Matching refs:opnum
2480 static inline void nfsd4_increment_op_stats(u32 opnum)
2482 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP)
2483 percpu_counter_inc(&nfsdstats.counter[NFSD_STATS_NFS4_OP(opnum)]);
2488 static const char *nfsd4_op_name(unsigned opnum);
2514 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP))
2516 if (first_op->opnum == OP_SEQUENCE)
2530 return &nfsd4_ops[op->opnum];
2535 if (op->opnum == OP_ILLEGAL)
2562 if (next->opnum == OP_ILLEGAL)
2587 if (op->opnum == OP_PUTFH)
2589 else if (op->opnum == OP_SAVEFH)
2591 else if (op->opnum == OP_RESTOREFH)
2593 else if (op->opnum == OP_COPY) {
2685 if (op->opnum == OP_OPEN)
2755 status, nfsd4_op_name(op->opnum));
2758 nfsd4_increment_op_stats(op->opnum);
3590 if (test_bit(this->opnum, allow->u.longs) &&
3603 if (op->opnum == OP_ILLEGAL || op->status == nfserr_notsupp)
3614 op->opnum, nfsd4_op_name(op->opnum));
3619 static const char *nfsd4_op_name(unsigned opnum)
3621 if (opnum < ARRAY_SIZE(nfsd4_ops))
3622 return nfsd4_ops[opnum].op_name;