]> rtime.felk.cvut.cz Git - linux-imx.git/commitdiff
SUNRPC: put pipefs superblock link on network namespace
authorStanislav Kinsbursky <skinsbursky@parallels.com>
Mon, 26 Dec 2011 12:39:30 +0000 (15:39 +0300)
committerTrond Myklebust <Trond.Myklebust@netapp.com>
Tue, 31 Jan 2012 23:20:24 +0000 (18:20 -0500)
We have modules (like, pNFS blocklayout module) which creates pipes on
rpc_pipefs. Thus we need per-net operations for them. To make it possible we
require appropriate super block. So we have to put sb link on network namespace
context. Note, that it's not strongly required to create pipes in per-net
operations. IOW, if pipefs wasn't mounted yet, that no sb link reference will
present on network namespace and in this case we need just need to pass through
pipe creation. Pipe dentry will be created during pipefs mount notification.

Signed-off-by: Stanislav Kinsbursky <skinsbursky@parallels.com>
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
net/sunrpc/netns.h
net/sunrpc/rpc_pipe.c

index d013bf211caeb0ca87874ee21d741466d359ea85..b3842529aec92eaceaf8649bb7d3002df52c1426 100644 (file)
@@ -9,6 +9,8 @@ struct cache_detail;
 struct sunrpc_net {
        struct proc_dir_entry *proc_net_rpc;
        struct cache_detail *ip_map_cache;
+
+       struct super_block *pipefs_sb;
 };
 
 extern int sunrpc_net_id;
index 6f295e6c12a0f98a8d98f06965ef15bc45c655d3..e5e1f357b561957af70c877761ceb91dc57ca9c4 100644 (file)
@@ -1029,6 +1029,7 @@ rpc_fill_super(struct super_block *sb, void *data, int silent)
        struct inode *inode;
        struct dentry *root;
        struct net *net = data;
+       struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
        int err;
 
        sb->s_blocksize = PAGE_CACHE_SIZE;
@@ -1053,6 +1054,7 @@ rpc_fill_super(struct super_block *sb, void *data, int silent)
        if (err)
                goto err_depopulate;
        sb->s_fs_info = get_net(net);
+       sn->pipefs_sb = sb;
        return 0;
 
 err_depopulate:
@@ -1073,7 +1075,9 @@ rpc_mount(struct file_system_type *fs_type,
 void rpc_kill_sb(struct super_block *sb)
 {
        struct net *net = sb->s_fs_info;
+       struct sunrpc_net *sn = net_generic(net, sunrpc_net_id);
 
+       sn->pipefs_sb = NULL;
        put_net(net);
        blocking_notifier_call_chain(&rpc_pipefs_notifier_list,
                                           RPC_PIPEFS_UMOUNT,