aboutsummaryrefslogtreecommitdiffstats
path: root/net/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/socket.c')
-rw-r--r--net/socket.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/net/socket.c b/net/socket.c
index 97fff3a4e72f..817dc92e9ef8 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -262,20 +262,21 @@ static struct inode *sock_alloc_inode(struct super_block *sb)
262} 262}
263 263
264 264
265static void sock_free_rcu(struct rcu_head *head) 265
266static void wq_free_rcu(struct rcu_head *head)
266{ 267{
267 struct inode *inode = container_of(head, struct inode, i_rcu); 268 struct socket_wq *wq = container_of(head, struct socket_wq, rcu);
268 struct socket_alloc *ei = container_of(inode, struct socket_alloc,
269 vfs_inode);
270 269
271 kfree(ei->socket.wq); 270 kfree(wq);
272 INIT_LIST_HEAD(&inode->i_dentry);
273 kmem_cache_free(sock_inode_cachep, ei);
274} 271}
275 272
276static void sock_destroy_inode(struct inode *inode) 273static void sock_destroy_inode(struct inode *inode)
277{ 274{
278 call_rcu(&inode->i_rcu, sock_free_rcu); 275 struct socket_alloc *ei;
276
277 ei = container_of(inode, struct socket_alloc, vfs_inode);
278 call_rcu(&ei->socket.wq->rcu, wq_free_rcu);
279 kmem_cache_free(sock_inode_cachep, ei);
279} 280}
280 281
281static void init_once(void *foo) 282static void init_once(void *foo)