Home
last modified time | relevance | path

Searched refs:opnum (Results 1 – 9 of 9) sorted by relevance

/fs/nfs/flexfilelayout/
Dflexfilelayoutdev.c205 if (e1->opnum != e2->opnum) in ff_ds_error_match()
206 return e1->opnum < e2->opnum ? -1 : 1; in ff_ds_error_match()
254 u64 length, int status, enum nfs_opnum4 opnum, in ff_layout_track_ds_error() argument
273 dserr->opnum = opnum; in ff_layout_track_ds_error()
498 *p++ = cpu_to_be32(err->opnum); in ff_layout_encode_ds_ioerr()
501 err->opnum); in ff_layout_encode_ds_ioerr()
Dflexfilelayout.h49 enum nfs_opnum4 opnum; member
196 u64 length, int status, enum nfs_opnum4 opnum,
Dflexfilelayout.c1226 u32 *op_status, int opnum, int error) in ff_layout_io_track_ds_error() argument
1262 mirror, offset, length, status, opnum, in ff_layout_io_track_ds_error()
1275 if (opnum == OP_READ) in ff_layout_io_track_ds_error()
1283 dprintk("%s: err %d op %d status %u\n", __func__, err, opnum, status); in ff_layout_io_track_ds_error()
2288 errors[n].errors[0].opnum = pos->opnum; in ff_layout_send_layouterror()
/fs/nfsd/
Dnfs4proc.c2451 static inline void nfsd4_increment_op_stats(u32 opnum) in nfsd4_increment_op_stats() argument
2453 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP) in nfsd4_increment_op_stats()
2454 percpu_counter_inc(&nfsdstats.counter[NFSD_STATS_NFS4_OP(opnum)]); in nfsd4_increment_op_stats()
2459 static const char *nfsd4_op_name(unsigned opnum);
2485 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP)) in nfs41_check_op_ordering()
2487 if (first_op->opnum == OP_SEQUENCE) in nfs41_check_op_ordering()
2501 return &nfsd4_ops[op->opnum]; in OPDESC()
2506 if (op->opnum == OP_ILLEGAL) in nfsd4_cache_this_op()
2533 if (next->opnum == OP_ILLEGAL) in need_wrongsec_check()
2558 if (op->opnum == OP_PUTFH) in check_if_stalefh_allowed()
[all …]
Dtrace.h137 u32 opnum,
140 TP_ARGS(rqstp, args_opcnt, resp_opcnt, opnum, status),
146 __field(u32, opnum)
153 __entry->opnum = opnum;
157 __entry->opnum, __entry->status)
163 u32 opnum,
166 TP_ARGS(rqstp, opnum, status),
170 __field(u32, opnum)
175 __entry->opnum = opnum;
178 __entry->opnum, __entry->status)
Dnfs4xdr.c2360 if (op->opnum < FIRST_NFS4_OP) in nfsd4_opnum_in_range()
2362 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP) in nfsd4_opnum_in_range()
2364 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP) in nfsd4_opnum_in_range()
2366 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP) in nfsd4_opnum_in_range()
2422 if (xdr_stream_decode_u32(argp->xdr, &op->opnum) < 0) in nfsd4_decode_compound()
2426 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u); in nfsd4_decode_compound()
2430 op->opnum, in nfsd4_decode_compound()
2433 op->opnum = OP_ILLEGAL; in nfsd4_decode_compound()
2443 if (op->opnum == OP_READ || op->opnum == OP_READ_PLUS) { in nfsd4_decode_compound()
2454 if (op->opnum == OP_LOCK || op->opnum == OP_LOCKT) in nfsd4_decode_compound()
[all …]
Dxdr4.h635 u32 opnum; member
745 return resp->opcnt == 1 && args->ops[0].opnum == OP_SEQUENCE; in nfsd4_is_solo_sequence()
/fs/nfs/
Dnfs4xdr.c3213 uint32_t opnum; in __decode_op_hdr() local
3219 opnum = be32_to_cpup(p++); in __decode_op_hdr()
3220 if (unlikely(opnum != expected)) in __decode_op_hdr()
3228 trace_nfs4_xdr_status(xdr, opnum, nfserr); in __decode_op_hdr()
3232 trace_nfs4_xdr_bad_operation(xdr, opnum, expected); in __decode_op_hdr()
5477 uint32_t opnum; in decode_setclientid() local
5483 opnum = be32_to_cpup(p++); in decode_setclientid()
5484 if (opnum != OP_SETCLIENTID) { in decode_setclientid()
5486 " %d\n", opnum); in decode_setclientid()
Dnfs42xdr.c423 *p = cpu_to_be32(error->opnum); in encode_device_error()