mirror of
https://github.com/team-infusion-developers/android_kernel_samsung_msm8976.git
synced 2024-11-01 10:33:27 +00:00
nfsd4: make is_open_owner boolean
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
parent
a50d2ad172
commit
3557e43b8f
1 changed files with 1 additions and 1 deletions
|
@ -335,13 +335,13 @@ struct nfs4_replay {
|
||||||
struct nfs4_stateowner {
|
struct nfs4_stateowner {
|
||||||
struct list_head so_strhash; /* hash by op_name */
|
struct list_head so_strhash; /* hash by op_name */
|
||||||
struct list_head so_stateids;
|
struct list_head so_stateids;
|
||||||
int so_is_open_owner; /* 1=openowner,0=lockowner */
|
|
||||||
struct nfs4_client * so_client;
|
struct nfs4_client * so_client;
|
||||||
/* after increment in ENCODE_SEQID_OP_TAIL, represents the next
|
/* after increment in ENCODE_SEQID_OP_TAIL, represents the next
|
||||||
* sequence id expected from the client: */
|
* sequence id expected from the client: */
|
||||||
u32 so_seqid;
|
u32 so_seqid;
|
||||||
struct xdr_netobj so_owner; /* open owner name */
|
struct xdr_netobj so_owner; /* open owner name */
|
||||||
struct nfs4_replay so_replay;
|
struct nfs4_replay so_replay;
|
||||||
|
bool so_is_open_owner;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct nfs4_openowner {
|
struct nfs4_openowner {
|
||||||
|
|
Loading…
Reference in a new issue