diff options
author | Olga Kornievskaia <aglo@citi.umich.edu> | 2008-12-23 16:19:00 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2008-12-23 16:19:00 -0500 |
commit | 61054b14d545e257b9415d5ca0cd5f43762b4d0c (patch) | |
tree | 7f648cf35a3b79aa1555f21050f11d415b93f381 /net | |
parent | 945b34a7725a5f0741de7775132aafc58bfecfbb (diff) |
nfsd: support callbacks with gss flavors
This patch adds server-side support for callbacks other than AUTH_SYS.
Signed-off-by: Olga Kornievskaia <aglo@citi.umich.edu>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/rpc_pipe.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index 3105efbb182d..192453248870 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c | |||
@@ -407,6 +407,7 @@ enum { | |||
407 | RPCAUTH_nfs, | 407 | RPCAUTH_nfs, |
408 | RPCAUTH_portmap, | 408 | RPCAUTH_portmap, |
409 | RPCAUTH_statd, | 409 | RPCAUTH_statd, |
410 | RPCAUTH_nfsd4_cb, | ||
410 | RPCAUTH_RootEOF | 411 | RPCAUTH_RootEOF |
411 | }; | 412 | }; |
412 | 413 | ||
@@ -440,6 +441,10 @@ static struct rpc_filelist files[] = { | |||
440 | .name = "statd", | 441 | .name = "statd", |
441 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, | 442 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, |
442 | }, | 443 | }, |
444 | [RPCAUTH_nfsd4_cb] = { | ||
445 | .name = "nfsd4_cb", | ||
446 | .mode = S_IFDIR | S_IRUGO | S_IXUGO, | ||
447 | }, | ||
443 | }; | 448 | }; |
444 | 449 | ||
445 | enum { | 450 | enum { |