Lines Matching +full:offset +full:- +full:x
1 /* SPDX-License-Identifier: GPL-2.0 */
23 __entry->xid = be32_to_cpu(rqst->rq_xid);
24 __entry->args_opcnt = args_opcnt;
26 TP_printk("xid=0x%08x opcnt=%u",
27 __entry->xid, __entry->args_opcnt)
43 __entry->args_opcnt = args_opcnt;
44 __entry->resp_opcnt = resp_opcnt;
45 __entry->status = be32_to_cpu(status);
49 __entry->resp_opcnt, __entry->args_opcnt,
50 __get_str(name), __entry->status)
56 loff_t offset,
58 TP_ARGS(rqstp, fhp, offset, len),
62 __field(loff_t, offset)
66 __entry->xid = be32_to_cpu(rqstp->rq_xid);
67 __entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
68 __entry->offset = offset;
69 __entry->len = len;
71 TP_printk("xid=0x%08x fh_hash=0x%08x offset=%lld len=%lu",
72 __entry->xid, __entry->fh_hash,
73 __entry->offset, __entry->len)
80 loff_t offset, \
82 TP_ARGS(rqstp, fhp, offset, len))
97 loff_t offset,
99 TP_ARGS(rqstp, fhp, offset, status),
103 __field(loff_t, offset)
107 __entry->xid = be32_to_cpu(rqstp->rq_xid);
108 __entry->fh_hash = knfsd_fh_hash(&fhp->fh_handle);
109 __entry->offset = offset;
110 __entry->status = status;
112 TP_printk("xid=0x%08x fh_hash=0x%08x offset=%lld status=%d",
113 __entry->xid, __entry->fh_hash,
114 __entry->offset, __entry->status)
121 loff_t offset, \
123 TP_ARGS(rqstp, fhp, offset, len))
140 __entry->cl_boot = stp->si_opaque.so_clid.cl_boot;
141 __entry->cl_id = stp->si_opaque.so_clid.cl_id;
142 __entry->si_id = stp->si_opaque.so_id;
143 __entry->si_generation = stp->si_generation;
145 TP_printk("client %08x:%08x stateid %08x:%08x",
146 __entry->cl_boot,
147 __entry->cl_id,
148 __entry->si_id,
149 __entry->si_generation)