diff options
author | J. Bruce Fields <bfields@redhat.com> | 2012-03-27 14:50:26 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2012-11-07 19:31:35 -0500 |
commit | acb2887e04c2140c2c63c8bf94e0b446efcc7001 (patch) | |
tree | 27f8546bda33ab32c3c13f3d6d2071697742928a /fs/nfsd/state.h | |
parent | face15025ffdf664de95e86ae831544154d26c9c (diff) | |
download | talos-op-linux-acb2887e04c2140c2c63c8bf94e0b446efcc7001.tar.gz talos-op-linux-acb2887e04c2140c2c63c8bf94e0b446efcc7001.zip |
nfsd4: clean up callback security parsing
Move the callback parsing into a separate function.
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/state.h')
-rw-r--r-- | fs/nfsd/state.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/nfsd/state.h b/fs/nfsd/state.h index e036894bce57..df33e781f36c 100644 --- a/fs/nfsd/state.h +++ b/fs/nfsd/state.h @@ -150,6 +150,11 @@ struct nfsd4_channel_attrs { u32 rdma_attrs; }; +struct nfsd4_cb_sec { + u32 uid; + u32 gid; +}; + struct nfsd4_create_session { clientid_t clientid; struct nfs4_sessionid sessionid; @@ -158,8 +163,7 @@ struct nfsd4_create_session { struct nfsd4_channel_attrs fore_channel; struct nfsd4_channel_attrs back_channel; u32 callback_prog; - u32 uid; - u32 gid; + struct nfsd4_cb_sec cb_sec; }; struct nfsd4_bind_conn_to_session { @@ -192,6 +196,7 @@ struct nfsd4_session { struct nfs4_sessionid se_sessionid; struct nfsd4_channel_attrs se_fchannel; struct nfsd4_channel_attrs se_bchannel; + struct nfsd4_cb_sec se_cb_sec; struct list_head se_conns; u32 se_cb_prog; u32 se_cb_seq_nr; |