aboutsummaryrefslogtreecommitdiff
path: root/net/socket.c
AgeCommit message (Expand)AuthorFilesLines
2020-10-05Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar David S. Miller 1-2/+4
2020-10-02net: add WARN_ONCE in kernel_sendpage() for improper zero-copy sendGravatar Coly Li 1-2/+4
2020-09-04Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Jakub Kicinski 1-2/+2
2020-08-27net: Fix some commentsGravatar Miaohe Lin 1-2/+2
2020-08-24io_uring: allow tcp ancillary data for __sys_recvmsg_sock()Gravatar Luke Hsiao 1-3/+5
2020-08-10net: Revert "net: optimize the sockptr_t for unified kernel/user address spaces"Gravatar Christoph Hellwig 1-5/+1
2020-08-08net: Convert to use the fallthrough macroGravatar Miaohe Lin 1-3/+3
2020-08-08net: Remove meaningless jump label out_fsGravatar Miaohe Lin 1-2/+1
2020-08-08net: Set fput_needed iff FDPUT_FPUT is setGravatar Miaohe Lin 1-1/+1
2020-08-08net: Use helper function fdput()Gravatar Miaohe Lin 1-4/+2
2020-07-28net: improve the user pointer check in init_user_sockptrGravatar Christoph Hellwig 1-1/+1
2020-07-24net: optimize the sockptr_t for unified kernel/user address spacesGravatar Christoph Hellwig 1-1/+5
2020-07-24net: pass a sockptr_t into ->setsockoptGravatar Christoph Hellwig 1-16/+7
2020-07-24net: switch sock_set_timeout to sockptr_tGravatar Christoph Hellwig 1-1/+2
2020-07-19net: make ->{get,set}sockopt in proto_ops optionalGravatar Christoph Hellwig 1-0/+4
2020-07-19net: remove compat_sys_{get,set}sockoptGravatar Christoph Hellwig 1-11/+14
2020-07-19net: streamline __sys_getsockoptGravatar Christoph Hellwig 1-17/+14
2020-07-19net: streamline __sys_setsockoptGravatar Christoph Hellwig 1-30/+27
2020-07-13net: socket: Move kerneldoc next to function it documentsGravatar Andrew Lunn 1-9/+8
2020-07-04net: use mptcp setsockopt function for SOL_SOCKET on mptcp socketsGravatar Florian Westphal 1-1/+12
2020-05-29net: remove kernel_setsockoptGravatar Christoph Hellwig 1-31/+0
2020-05-27net: remove kernel_getsockoptGravatar Christoph Hellwig 1-34/+0
2020-05-18ipv4,appletalk: move SIOCADDRT and SIOCDELRT handling into ->compat_ioctlGravatar Christoph Hellwig 1-62/+0
2020-05-18ipv6: move SIOCADDRT and SIOCDELRT handling into ->compat_ioctlGravatar Christoph Hellwig 1-46/+17
2020-05-11net: cleanly handle kernel vs user buffers for ->msg_controlGravatar Christoph Hellwig 1-16/+6
2020-03-30Merge tag 'for-5.7/io_uring-2020-03-29' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-4/+21
2020-03-20io_uring: make sure accept honor rlimit nofileGravatar Jens Axboe 1-3/+5
2020-03-10net: abstract out normal and compat msghdr importGravatar Jens Axboe 1-4/+21
2020-01-08socket: fix unused-function warningGravatar Arnd Bergmann 1-11/+12
2019-12-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar David S. Miller 1-2/+2
2019-12-13Merge tag 'io_uring-5.5-20191212' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-2/+2
2019-12-12net: Allow to show socket-specific information in /proc/[pid]/fdinfo/[fd]Gravatar Kirill Tkhai 1-0/+12
2019-12-10net: make socket read/write_iter() honor IOCB_NOWAITGravatar Jens Axboe 1-2/+2
2019-12-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netGravatar Linus Torvalds 1-1/+6
2019-12-06net: avoid an indirect call in ____sys_recvmsg()Gravatar Eric Dumazet 1-1/+6
2019-12-03io_uring: ensure async punted connect requests copy dataGravatar Jens Axboe 1-8/+8
2019-12-03io_uring: ensure async punted sendmsg/recvmsg requests copy dataGravatar Jens Axboe 1-43/+17
2019-12-01Merge tag 'y2038-cleanups-5.5' of git://git.kernel.org:/pub/scm/linux/kernel/...Gravatar Linus Torvalds 1-2/+2
2019-12-01Merge tag 'compat-ioctl-5.5' of git://git.kernel.org:/pub/scm/linux/kernel/gi...Gravatar Linus Torvalds 1-0/+3
2019-11-26net: disallow ancillary data for __sys_{send,recv}msg_file()Gravatar Jens Axboe 1-6/+37
2019-11-26net: separate out the msghdr copy from ___sys_{send,recv}msg()Gravatar Jens Axboe 1-46/+95
2019-11-25net: add __sys_connect_file() helperGravatar Jens Axboe 1-8/+22
2019-11-25Merge tag 'for-5.5/io_uring-20191121' of git://git.kernel.dk/linux-blockGravatar Linus Torvalds 1-24/+41
2019-11-25vfs: mark pipes and sockets as stream-like file descriptorsGravatar Linus Torvalds 1-0/+1
2019-11-15y2038: socket: use __kernel_old_timespec instead of timespecGravatar Arnd Bergmann 1-1/+1
2019-11-15y2038: remove CONFIG_64BIT_TIMEGravatar Arnd Bergmann 1-1/+1
2019-10-29net: add __sys_accept4_file() helperGravatar Jens Axboe 1-24/+41
2019-10-23compat_ioctl: move SIOCOUTQ out of compat_ioctl.cGravatar Arnd Bergmann 1-0/+2
2019-10-23compat_ioctl: handle SIOCOUTQNSDGravatar Arnd Bergmann 1-0/+1
2019-07-19Merge branch 'work.mount0' of git://git.kernel.org/pub/scm/linux/kernel/git/v...Gravatar Linus Torvalds 1-6/+10