diff options
author | Stanislav Kinsbursky <skinsbursky@parallels.com> | 2011-12-26 07:39:39 -0500 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-31 18:20:24 -0500 |
commit | c21a588f35b1c50304e505fad542b3aab0814266 (patch) | |
tree | 2dda83e8d5f62eb9892c425941265aeeb278e952 /net/sunrpc/sunrpc_syms.c | |
parent | 90c4e82999c517e0cd00d0782c68d186cb18b784 (diff) |
SUNRPC: pipefs per-net operations helper introduced
During per-net pipes creation and destruction we have to make sure, that pipefs
sb exists for the whole creation/destruction cycle. This is done by using
special mutex which controls pipefs sb reference on network namespace context.
Helper consists of two parts: first of them (rpc_get_dentry_net) searches for
dentry with specified name and returns with mutex taken on success. When pipe
creation or destructions is completed, caller should release this mutex by
rpc_put_dentry_net call.
Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Diffstat (limited to 'net/sunrpc/sunrpc_syms.c')
-rw-r--r-- | net/sunrpc/sunrpc_syms.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/sunrpc/sunrpc_syms.c b/net/sunrpc/sunrpc_syms.c index 8ec9778c3f4a..7086d11589c8 100644 --- a/net/sunrpc/sunrpc_syms.c +++ b/net/sunrpc/sunrpc_syms.c | |||
@@ -38,6 +38,7 @@ static __net_init int sunrpc_init_net(struct net *net) | |||
38 | if (err) | 38 | if (err) |
39 | goto err_ipmap; | 39 | goto err_ipmap; |
40 | 40 | ||
41 | rpc_pipefs_init_net(net); | ||
41 | return 0; | 42 | return 0; |
42 | 43 | ||
43 | err_ipmap: | 44 | err_ipmap: |