Home
last modified time | relevance | path

Searched refs:stateid_t (Results 1 – 10 of 10) sorted by relevance

/linux-4.19.296/fs/nfsd/
Dxdr4.h66 stateid_t current_stateid;
67 stateid_t save_stateid;
96 stateid_t cl_stateid; /* request+response */
134 stateid_t dr_stateid;
166 stateid_t open_stateid;
172 stateid_t lock_stateid;
180 stateid_t stateid;
210 stateid_t lu_stateid;
230 stateid_t op_delegate_stateid; /* request - response */
245 stateid_t op_stateid; /* response */
[all …]
Dstate.h56 } stateid_t; typedef
99 stateid_t sc_stateid;
559 stateid_t ls_recall_sid;
582 static inline bool nfsd4_stateid_generation_after(stateid_t *a, stateid_t *b) in nfsd4_stateid_generation_after()
606 stateid_t *stateid, int flags, struct file **filp, bool *tmp_file);
608 stateid_t *stateid, unsigned char typemask,
614 void nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid);
Dflexfilelayoutxdr.h41 stateid_t stateid;
Dtrace.h131 TP_PROTO(stateid_t *stp),
154 TP_PROTO(stateid_t *stp), \
Dpnfs.h55 struct nfsd4_compound_state *cstate, stateid_t *stateid,
Dnfs4state.c56 static const stateid_t one_stateid = {
60 static const stateid_t zero_stateid = {
63 static const stateid_t currentstateid = {
66 static const stateid_t close_stateid = {
72 #define ZERO_STATEID(stateid) (!memcmp((stateid), &zero_stateid, sizeof(stateid_t)))
73 #define ONE_STATEID(stateid) (!memcmp((stateid), &one_stateid, sizeof(stateid_t)))
74 #define CURRENT_STATEID(stateid) (!memcmp((stateid), &currentstateid, sizeof(stateid_t)))
75 #define CLOSE_STATEID(stateid) (!memcmp((stateid), &close_stateid, sizeof(stateid_t)))
874 nfs4_inc_and_copy_stateid(stateid_t *dst, struct nfs4_stid *stid) in nfs4_inc_and_copy_stateid()
876 stateid_t *src = &stid->sc_stateid; in nfs4_inc_and_copy_stateid()
[all …]
Dnfs4proc.c532 memcpy(&cstate->current_stateid, &cstate->save_stateid, sizeof(stateid_t)); in nfsd4_restorefh()
544 memcpy(&cstate->save_stateid, &cstate->current_stateid, sizeof(stateid_t)); in nfsd4_savefh()
994 stateid_t *stateid = &write->wr_stateid; in nfsd4_write()
1034 stateid_t *src_stateid, struct file **src, in nfsd4_verify_copy()
1035 stateid_t *dst_stateid, struct file **dst) in nfsd4_verify_copy()
Dnfs4layouts.c266 struct nfsd4_compound_state *cstate, stateid_t *stateid, in nfsd4_preprocess_layout_stateid()
Dnfs4xdr.c499 nfsd4_decode_stateid(struct nfsd4_compoundargs *argp, stateid_t *sid) in nfsd4_decode_stateid()
503 READ_BUF(sizeof(stateid_t)); in nfsd4_decode_stateid()
1496 READ_BUF(sizeof(stateid_t)); in nfsd4_decode_free_stateid()
3153 nfsd4_encode_stateid(struct xdr_stream *xdr, stateid_t *sid) in nfsd4_encode_stateid()
3157 p = xdr_reserve_space(xdr, sizeof(stateid_t)); in nfsd4_encode_stateid()
Dnfs4callback.c142 static void encode_stateid4(struct xdr_stream *xdr, const stateid_t *sid) in encode_stateid4()