aboutsummaryrefslogtreecommitdiffstats
path: root/net/socket.c (follow)
AgeCommit message (Expand)AuthorFilesLines
2018-04-05Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivialLinus Torvalds1-1/+1
2018-04-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds1-25/+26
2018-04-02Merge branch 'syscalls-next' of git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linuxLinus Torvalds1-73/+161
2018-04-02net: socket: replace call to sys_recv() with __sys_recvfrom()Dominik Brodowski1-1/+2
2018-04-02net: socket: replace calls to sys_send() with __sys_sendto()Dominik Brodowski1-1/+2
2018-04-02net: socket: move check for forbid_cmsg_compat to __sys_...msg()Dominik Brodowski1-15/+23
2018-04-02net: socket: add do_sys_recvmmsg() helper; remove in-kernel call to syscallDominik Brodowski1-5/+12
2018-04-02net: socket: add __sys_getsockopt() helper; remove in-kernel call to syscallDominik Brodowski1-4/+10
2018-04-02net: socket: add __sys_setsockopt() helper; remove in-kernel call to syscallDominik Brodowski1-3/+10
2018-04-02net: socket: add __sys_shutdown() helper; remove in-kernel call to syscallDominik Brodowski1-2/+7
2018-04-02net: socket: add __sys_socketpair() helper; remove in-kernel call to syscallDominik Brodowski1-3/+8
2018-04-02net: socket: add __sys_getpeername() helper; remove in-kernel call to syscallDominik Brodowski1-4/+10
2018-04-02net: socket: add __sys_getsockname() helper; remove in-kernel call to syscallDominik Brodowski1-4/+10
2018-04-02net: socket: add __sys_listen() helper; remove in-kernel call to syscallDominik Brodowski1-2/+7
2018-04-02net: socket: add __sys_connect() helper; remove in-kernel call to syscallDominik Brodowski1-3/+8
2018-04-02net: socket: add __sys_bind() helper; remove in-kernel call to syscallDominik Brodowski1-2/+7
2018-04-02net: socket: add __sys_socket() helper; remove in-kernel call to syscallDominik Brodowski1-2/+7
2018-04-02net: socket: add __sys_accept4() helper; remove in-kernel call to syscallDominik Brodowski1-7/+13
2018-04-02net: socket: add __sys_sendto() helper; remove in-kernel call to syscallDominik Brodowski1-7/+12
2018-04-02net: socket: add __sys_recvfrom() helper; remove in-kernel call to syscallDominik Brodowski1-8/+13
2018-03-27net: Spelling s/stucture/structure/Geert Uytterhoeven1-1/+1
2018-03-23Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-0/+5
2018-03-12sock_diag: request _diag module only when the family or proto has been registeredXin Long1-0/+5
2018-03-01socket: skip checking sk_err for recvmmsg(MSG_ERRQUEUE)Soheil Hassas Yeganeh1-4/+6
2018-02-26net: make kmem caches as __ro_after_initAlexey Dobriyan1-1/+1
2018-02-15net: Make extern and export get_net_ns()Kirill Tkhai1-1/+2
2018-02-14net: Remove atalk header from socket.cDavid Ahern1-1/+0
2018-02-12net: make getname() functions return length rather than use int* parameterDenys Vlasenko1-18/+17
2018-01-31Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-nextLinus Torvalds1-230/+71
2018-01-30Merge branch 'misc.poll' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-3/+3
2018-01-24kill kernel_sock_ioctl()Al Viro1-13/+0
2018-01-24dev_ioctl(): move copyin/copyout to callersAl Viro1-46/+45
2018-01-24lift handling of SIOCIW... out of dev_ioctl()Al Viro1-1/+1
2018-01-24kill dev_ifname32()Al Viro1-21/+1
2018-01-24kill bond_ioctl()Al Viro1-32/+4
2018-01-24kill dev_ifsioc()Al Viro1-38/+0
2018-01-24net: separate SIOCGIFCONF handling from dev_ioctl()Al Viro1-56/+23
2018-01-19bpf: get rid of pure_initcall dependency to enable jitsDaniel Borkmann1-9/+0
2018-01-11Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/netDavid S. Miller1-1/+12
2018-01-10Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfsLinus Torvalds1-1/+3
2018-01-10Fix a leak in socket(2) when we fail to allocate a file descriptor.Al Viro1-1/+3
2018-01-09bpf: introduce BPF_JIT_ALWAYS_ON configAlexei Starovoitov1-0/+9
2017-12-19sock: Move the socket inuse to namespace.Tonghao Zhang1-19/+2
2017-12-05make sock_alloc_file() do sock_release() on failuresAl Viro1-17/+8
2017-12-05socketpair(): allocate descriptors firstAl Viro1-51/+38
2017-11-27net: annotate ->poll() instancesAl Viro1-2/+2
2017-11-27anntotate the places where ->poll() return values goAl Viro1-1/+1
2017-11-15kmemcheck: remove annotationsLevin, Alexander (Sasha Levin)1-1/+0
2017-08-16net: fixes for skb_send_sockJohn Fastabend1-1/+1
2017-08-01proto_ops: Add locked held versions of sendmsg and sendpageTom Herbert1-0/+27