aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/nfsd/state.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h
index aa14f06af2df..87eecfd9b968 100644
--- a/fs/nfsd/state.h
+++ b/fs/nfsd/state.h
@@ -335,13 +335,13 @@ struct nfs4_replay {
335struct nfs4_stateowner { 335struct nfs4_stateowner {
336 struct list_head so_strhash; /* hash by op_name */ 336 struct list_head so_strhash; /* hash by op_name */
337 struct list_head so_stateids; 337 struct list_head so_stateids;
338 int so_is_open_owner; /* 1=openowner,0=lockowner */
339 struct nfs4_client * so_client; 338 struct nfs4_client * so_client;
340 /* after increment in ENCODE_SEQID_OP_TAIL, represents the next 339 /* after increment in ENCODE_SEQID_OP_TAIL, represents the next
341 * sequence id expected from the client: */ 340 * sequence id expected from the client: */
342 u32 so_seqid; 341 u32 so_seqid;
343 struct xdr_netobj so_owner; /* open owner name */ 342 struct xdr_netobj so_owner; /* open owner name */
344 struct nfs4_replay so_replay; 343 struct nfs4_replay so_replay;
344 bool so_is_open_owner;
345}; 345};
346 346
347struct nfs4_openowner { 347struct nfs4_openowner {