diff options
author | Paul Moore <paul.moore@hp.com> | 2009-03-27 17:10:48 -0400 |
---|---|---|
committer | James Morris <jmorris@namei.org> | 2009-03-28 00:01:37 -0400 |
commit | 8651d5c0b1f874c5b8307ae2b858bc40f9f02482 (patch) | |
tree | c09bee8fdc4c659d155b47911dc87ce4c09b6676 /net/socket.c | |
parent | 58bfbb51ff2b0fdc6c732ff3d72f50aa632b67a2 (diff) |
lsm: Remove the socket_post_accept() hook
The socket_post_accept() hook is not currently used by any in-tree modules
and its existence continues to cause problems by confusing people about
what can be safely accomplished using this hook. If a legitimate need for
this hook arises in the future it can always be reintroduced.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: James Morris <jmorris@namei.org>
Diffstat (limited to 'net/socket.c')
-rw-r--r-- | net/socket.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/net/socket.c b/net/socket.c index 0b14b79c03af..91d0c0254ffe 100644 --- a/net/socket.c +++ b/net/socket.c | |||
@@ -1536,8 +1536,6 @@ SYSCALL_DEFINE4(accept4, int, fd, struct sockaddr __user *, upeer_sockaddr, | |||
1536 | fd_install(newfd, newfile); | 1536 | fd_install(newfd, newfile); |
1537 | err = newfd; | 1537 | err = newfd; |
1538 | 1538 | ||
1539 | security_socket_post_accept(sock, newsock); | ||
1540 | |||
1541 | out_put: | 1539 | out_put: |
1542 | fput_light(sock->file, fput_needed); | 1540 | fput_light(sock->file, fput_needed); |
1543 | out: | 1541 | out: |