Home
last modified time | relevance | path

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

/linux/fs/nfs/flexfilelayout/
H A Dflexfilelayoutdev.c209 if (e1->opnum != e2->opnum) in ff_ds_error_match()
210 return e1->opnum < e2->opnum ? -1 : 1; in ff_ds_error_match()
259 enum nfs_opnum4 opnum, gfp_t gfp_flags) in ff_layout_track_ds_error() argument
277 dserr->opnum = opnum; in ff_layout_track_ds_error()
515 *p++ = cpu_to_be32(err->opnum); in ff_layout_encode_ds_ioerr()
518 err->opnum); in ff_layout_encode_ds_ioerr()
/linux/fs/nfsd/
H A Dnfs4proc.c3054 static inline void nfsd4_increment_op_stats(struct nfsd_net *nn, u32 opnum) in nfsd4_increment_op_stats() argument
3056 if (opnum >= FIRST_NFS4_OP && opnum <= LAST_NFS4_OP) in nfsd4_increment_op_stats()
3057 percpu_counter_inc(&nn->counter[NFSD_STATS_NFS4_OP(opnum)]); in nfsd4_increment_op_stats()
3062 static const char *nfsd4_op_name(unsigned opnum);
3088 if (!(nfsd4_ops[first_op->opnum].op_flags & ALLOWED_AS_FIRST_OP)) in nfs41_check_op_ordering()
3090 if (first_op->opnum == OP_SEQUENCE) in nfs41_check_op_ordering()
3104 return &nfsd4_ops[op->opnum]; in OPDESC()
3109 if (op->opnum == OP_ILLEGAL) in nfsd4_cache_this_op()
3136 if (next->opnum == OP_ILLEGAL) in need_wrongsec_check()
3161 if (op->opnum == OP_PUTFH) in check_if_stalefh_allowed()
[all …]
H A Dtrace.h199 u32 opnum,
202 TP_ARGS(rqstp, args_opcnt, resp_opcnt, opnum, status),
208 __field(u32, opnum)
215 __entry->opnum = opnum;
219 __entry->opnum, __entry->status)
225 u32 opnum,
228 TP_ARGS(rqstp, opnum, status),
232 __field(u32, opnum)
237 __entry->opnum = opnum;
240 __entry->opnum, __entry->status)
[all …]
H A Dnfs4xdr.c2620 if (op->opnum < FIRST_NFS4_OP) in nfsd4_opnum_in_range()
2622 else if (argp->minorversion == 0 && op->opnum > LAST_NFS40_OP) in nfsd4_opnum_in_range()
2624 else if (argp->minorversion == 1 && op->opnum > LAST_NFS41_OP) in nfsd4_opnum_in_range()
2626 else if (argp->minorversion == 2 && op->opnum > LAST_NFS42_OP) in nfsd4_opnum_in_range()
2683 if (xdr_stream_decode_u32(argp->xdr, &op->opnum) < 0) in nfsd4_decode_compound()
2687 op->status = nfsd4_dec_ops[op->opnum](argp, &op->u); in nfsd4_decode_compound()
2691 op->opnum, in nfsd4_decode_compound()
2694 op->opnum = OP_ILLEGAL; in nfsd4_decode_compound()
2704 if (op->opnum == OP_READ || op->opnum == OP_READ_PLUS) { in nfsd4_decode_compound()
2715 if (op->opnum == OP_LOCK || op->opnum == OP_LOCKT) in nfsd4_decode_compound()
[all …]
H A Dxdr4.h850 u32 opnum; member
H A Dnfsctl.c1591 args->ops[j].opnum; in nfsd_nl_rpc_status_get_dumpit()
/linux/drivers/mtd/ubi/
H A Deba.c945 int pnum, opnum, err, err2, vol_id = vol->vol_id; in try_write_vid_and_data() local
953 opnum = vol->eba_tbl->entries[lnum].pnum; in try_write_vid_and_data()
986 } else if (!err && opnum >= 0) { in try_write_vid_and_data()
987 err2 = ubi_wl_put_peb(ubi, vol_id, lnum, opnum, 0); in try_write_vid_and_data()
990 opnum, err2); in try_write_vid_and_data()
/linux/fs/nfs/
H A Dnfs42xdr.c472 *p = cpu_to_be32(error->opnum); in encode_device_error()