aboutsummaryrefslogtreecommitdiffstats
path: root/net (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-08-23virtio/vsock: check SO_RCVLOWAT before wake up readerArseniy Krasnov1-1/+1
2022-08-23vsock: add API call for data readyArseniy Krasnov1-0/+10
2022-08-23vsock: pass sock_rcvlowat to notify_poll_in as targetArseniy Krasnov1-1/+2
2022-08-23vmci/vsock: use 'target' in notify_poll_in callbackArseniy Krasnov2-8/+8
2022-08-23virtio/vsock: use 'target' in notify_poll_in callbackArseniy Krasnov1-4/+1
2022-08-23hv_sock: disable SO_RCVLOWAT supportArseniy Krasnov1-0/+7
2022-08-23vsock: SO_RCVLOWAT transport set callbackArseniy Krasnov1-0/+20
2022-08-23net: sched: remove duplicate check of user rights in qdiscZhengchao Shao2-21/+0
2022-08-23xfrm: Drop unused argumentHongbin Wang1-8/+7
2022-08-22net: dsa: tag_8021q: remove old comment regarding dsa_8021q_netdev_opsVladimir Oltean1-3/+1
2022-08-22net_sched: move from strlcpy with unused retval to strscpyWolfram Sang2-2/+2
2022-08-22openvswitch: move from strlcpy with unused retval to strscpyWolfram Sang1-1/+1
2022-08-22ethtool: move from strlcpy with unused retval to strscpyWolfram Sang1-4/+4
2022-08-22dsa: move from strlcpy with unused retval to strscpyWolfram Sang2-4/+4
2022-08-22net: move from strlcpy with unused retval to strscpyWolfram Sang3-5/+5
2022-08-22packet: move from strlcpy with unused retval to strscpyWolfram Sang1-2/+2
2022-08-22l2tp: move from strlcpy with unused retval to strscpyWolfram Sang1-2/+2
2022-08-22ipv6: move from strlcpy with unused retval to strscpyWolfram Sang4-4/+4
2022-08-22ipv4: move from strlcpy with unused retval to strscpyWolfram Sang1-1/+1
2022-08-22caif: move from strlcpy with unused retval to strscpyWolfram Sang4-5/+5
2022-08-22bridge: move from strlcpy with unused retval to strscpyWolfram Sang3-7/+7
2022-08-22ax25: move from strlcpy with unused retval to strscpyWolfram Sang1-1/+1
2022-08-22vlan: move from strlcpy with unused retval to strscpyWolfram Sang1-3/+3
2022-08-22net: dsa: make phylink-related OF properties mandatory on DSA and CPU portsVladimir Oltean1-5/+167
2022-08-22net: dsa: rename dsa_port_link_{,un}register_ofVladimir Oltean3-16/+16
2022-08-22net: dsa: avoid dsa_port_link_{,un}register_of() calls with platform dataVladimir Oltean1-10/+24
2022-08-22Merge tag 'nfs-for-5.20-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfsLinus Torvalds1-1/+1
2022-08-22Remove DECnet support from kernelStephen Hemminger23-10683/+1
2022-08-22rose: check NULL rose_loopback_neigh->loopbackBernard Pidoux1-1/+2
2022-08-22openvswitch: Fix overreporting of drops in dropwatchMike Pattrick1-2/+3
2022-08-22openvswitch: Fix double reporting of drops in dropwatchMike Pattrick1-3/+10
2022-08-22af_unix: Show number of inflight fds for sockets in TCP_LISTEN state tooKirill Tkhai1-3/+33
2022-08-20dynamic_dname(): drop unused dentry argumentAl Viro1-1/+1
2022-08-20batman-adv: Fix hang up with small MTU hard-interfaceShigeru Yoshida1-0/+4
2022-08-20batman-adv: Drop initialization of flexible ethtool_link_ksettingsSven Eckelmann1-1/+0
2022-08-19SUNRPC: RPC level errors should set task->tk_rpc_statusTrond Myklebust1-1/+1
2022-08-18Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski22-152/+305
2022-08-18bpf: Add a few optnames to bpf_setsockoptMartin KaFai Lau1-0/+5
2022-08-18bpf: Change bpf_setsockopt(SOL_IPV6) to reuse do_ipv6_setsockopt()Martin KaFai Lau3-32/+29
2022-08-18bpf: Change bpf_setsockopt(SOL_IP) to reuse do_ip_setsockopt()Martin KaFai Lau2-22/+22
2022-08-18bpf: Change bpf_setsockopt(SOL_TCP) to reuse do_tcp_setsockopt()Martin KaFai Lau2-69/+32
2022-08-18bpf: Refactor bpf specific tcp optnames to a new functionMartin KaFai Lau1-29/+50
2022-08-18bpf: Change bpf_setsockopt(SOL_SOCKET) to reuse sk_setsockopt()Martin KaFai Lau2-98/+32
2022-08-18bpf: Embed kernel CONFIG check into the if statement in bpf_setsockoptMartin KaFai Lau1-7/+3
2022-08-18bpf: net: Change do_ipv6_setsockopt() to use the sockopt's lock_sock() and capable()Martin KaFai Lau1-7/+7
2022-08-18bpf: net: Change do_ip_setsockopt() to use the sockopt's lock_sock() and capable()Martin KaFai Lau1-6/+6
2022-08-18bpf: net: Change do_tcp_setsockopt() to use the sockopt's lock_sock() and capable()Martin KaFai Lau1-9/+9
2022-08-18bpf: net: Consider has_current_bpf_ctx() when testing capable() in sk_setsockopt()Martin KaFai Lau1-13/+25
2022-08-18bpf: net: Avoid sk_setsockopt() taking sk lock when called from bpfMartin KaFai Lau1-3/+27
2022-08-18net: Add sk_setsockopt() to take the sk ptr instead of the sock ptrMartin KaFai Lau1-3/+10