diff options
Diffstat (limited to 'net')
-rw-r--r-- | net/socket.c | 2 | ||||
-rw-r--r-- | net/sunrpc/rpc_pipe.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net/socket.c b/net/socket.c index 379b3a390755..3cd96fe8191d 100644 --- a/net/socket.c +++ b/net/socket.c | |||
@@ -258,7 +258,7 @@ static void sock_destroy_inode(struct inode *inode) | |||
258 | container_of(inode, struct socket_alloc, vfs_inode)); | 258 | container_of(inode, struct socket_alloc, vfs_inode)); |
259 | } | 259 | } |
260 | 260 | ||
261 | static void init_once(void *foo, struct kmem_cache *cachep, unsigned long flags) | 261 | static void init_once(struct kmem_cache *cachep, void *foo) |
262 | { | 262 | { |
263 | struct socket_alloc *ei = (struct socket_alloc *)foo; | 263 | struct socket_alloc *ei = (struct socket_alloc *)foo; |
264 | 264 | ||
diff --git a/net/sunrpc/rpc_pipe.c b/net/sunrpc/rpc_pipe.c index c8433e8865aa..18f0a8dcc095 100644 --- a/net/sunrpc/rpc_pipe.c +++ b/net/sunrpc/rpc_pipe.c | |||
@@ -842,7 +842,7 @@ static struct file_system_type rpc_pipe_fs_type = { | |||
842 | }; | 842 | }; |
843 | 843 | ||
844 | static void | 844 | static void |
845 | init_once(void * foo, struct kmem_cache * cachep, unsigned long flags) | 845 | init_once(struct kmem_cache * cachep, void *foo) |
846 | { | 846 | { |
847 | struct rpc_inode *rpci = (struct rpc_inode *) foo; | 847 | struct rpc_inode *rpci = (struct rpc_inode *) foo; |
848 | 848 | ||