diff options
Diffstat (limited to 'net/sunrpc/xprt.c')
-rw-r--r-- | net/sunrpc/xprt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/sunrpc/xprt.c b/net/sunrpc/xprt.c index 0637340e5342..953206d8c6c2 100644 --- a/net/sunrpc/xprt.c +++ b/net/sunrpc/xprt.c | |||
@@ -962,7 +962,7 @@ static void xprt_free_slot(struct rpc_xprt *xprt, struct rpc_rqst *req) | |||
962 | spin_unlock(&xprt->reserve_lock); | 962 | spin_unlock(&xprt->reserve_lock); |
963 | } | 963 | } |
964 | 964 | ||
965 | struct rpc_xprt *xprt_alloc(int size, int max_req) | 965 | struct rpc_xprt *xprt_alloc(struct net *net, int size, int max_req) |
966 | { | 966 | { |
967 | struct rpc_xprt *xprt; | 967 | struct rpc_xprt *xprt; |
968 | 968 | ||
@@ -975,6 +975,7 @@ struct rpc_xprt *xprt_alloc(int size, int max_req) | |||
975 | if (xprt->slot == NULL) | 975 | if (xprt->slot == NULL) |
976 | goto out_free; | 976 | goto out_free; |
977 | 977 | ||
978 | xprt->xprt_net = get_net(net); | ||
978 | return xprt; | 979 | return xprt; |
979 | 980 | ||
980 | out_free: | 981 | out_free: |
@@ -986,6 +987,7 @@ EXPORT_SYMBOL_GPL(xprt_alloc); | |||
986 | 987 | ||
987 | void xprt_free(struct rpc_xprt *xprt) | 988 | void xprt_free(struct rpc_xprt *xprt) |
988 | { | 989 | { |
990 | put_net(xprt->xprt_net); | ||
989 | kfree(xprt->slot); | 991 | kfree(xprt->slot); |
990 | kfree(xprt); | 992 | kfree(xprt); |
991 | } | 993 | } |