aboutsummaryrefslogtreecommitdiffstats
path: root/net/core (follow)
AgeCommit message (Expand)AuthorFilesLines
2022-10-27net: do not sense pfmemalloc status in skb_append_pagefrags()Eric Dumazet1-1/+1
2022-10-24net: fix UAF issue in nfqnl_nf_hook_drop() when ops_init() failedZhengchao Shao1-0/+7
2022-10-20Merge tag 'net-6.1-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netLinus Torvalds3-4/+24
2022-10-19net: Fix return value of qdisc ingress handling on successPaul Blakey1-0/+4
2022-10-18udp: Update reuse->has_conns under reuseport_lock.Kuniyuki Iwashima1-0/+16
2022-10-16Merge tag 'random-6.1-rc1-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/crng/randomLinus Torvalds3-26/+25
2022-10-16skmsg: pass gfp argument to alloc_sk_msg()Eric Dumazet1-4/+4
2022-10-12ipv6: Fix data races around sk->sk_prot.Kuniyuki Iwashima1-2/+4
2022-10-11treewide: use get_random_u32() when possibleJason A. Donenfeld1-2/+2
2022-10-11treewide: use prandom_u32_max() when possible, part 1Jason A. Donenfeld3-24/+23
2022-10-03Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextJakub Kicinski3-21/+118
2022-10-03gro: add support of (hw)gro packets to gro stackCoco Li1-4/+14
2022-10-03Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-nextDavid S. Miller1-0/+1
2022-09-30net: devlink: add port_init/fini() helpers to allow pre-register/post-unregister functionsJiri Pirko1-3/+43
2022-09-30net: devlink: introduce a flag to indicate devlink port being registeredJiri Pirko1-2/+4
2022-09-30net: devlink: introduce port registered assert helper and use itJiri Pirko1-13/+19
2022-09-30net-sysfs: Convert to use sysfs_emit() APIsWang Yufen1-29/+29
2022-09-29net: skb: introduce and use a single page frag cachePaolo Abeni2-22/+103
2022-09-29Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-7/+0
2022-09-29bpf: tcp: Stop bpf_setsockopt(TCP_CONGESTION) in init ops to recur itselfMartin KaFai Lau1-1/+27
2022-09-29bpf: Refactor bpf_setsockopt(TCP_CONGESTION) handling into another functionMartin KaFai Lau1-17/+28
2022-09-29bpf: Move the "cdg" tcp-cc check to the common sol_tcp_sockopt()Martin KaFai Lau1-6/+7
2022-09-28net: drop the weight argument from netif_napi_addJakub Kicinski1-2/+1
2022-09-28net: shrink struct ubuf_infoPavel Begunkov1-17/+21
2022-09-28Revert "net: set proper memcg for net_init hooks allocations"Shakeel Butt1-7/+0
2022-09-26xdp: improve page_pool xdp_return performanceJesper Dangaard Brouer1-6/+4
2022-09-26skmsg: Schedule psock work if the cached skb exists on the psockLiu Jian1-4/+8
2022-09-26net: If sock is dead don't access sock's sk_wq in sk_stream_wait_memoryLiu Jian1-1/+2
2022-09-22Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netJakub Kicinski1-3/+2
2022-09-21flow_dissector: Do not count vlan tags inside tunnel payloadQingqing Yang1-2/+2
2022-09-20bpf: Rename nfct_bsa to nfct_btf_struct_accessDaniel Xu1-9/+9
2022-09-20tcp: Access &tcp_hashinfo via net.Kuniyuki Iwashima1-2/+3
2022-09-20net: rtnetlink: Enslave device before bringing it upPhil Sutter1-7/+7
2022-09-20flow_offload: Introduce flow_match_l2tpv3Wojciech Drewek1-0/+7
2022-09-20flow_dissector: Add L2TPv3 dissectorsWojciech Drewek1-0/+28
2022-09-16rtnetlink: advertise allmulti counterNicolas Dichtel1-0/+3
2022-09-10bpf: Add support for writing to nf_conn:markDaniel Xu1-0/+54
2022-09-09net: core: fix flow symmetric hashLudovic Cintrat1-3/+2
2022-09-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni4-24/+7
2022-09-07net: sysctl: remove unused variable long_maxLiu Shixin1-1/+0
2022-09-07net: skb: export skb drop reaons to user by TRACE_DEFINE_ENUMMenglong Dong3-23/+6
2022-09-06Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextPaolo Abeni3-419/+366
2022-09-02bpf: Change bpf_getsockopt(SOL_IPV6) to reuse do_ipv6_getsockopt()Martin KaFai Lau1-31/+24
2022-09-02bpf: Change bpf_getsockopt(SOL_IP) to reuse do_ip_getsockopt()Martin KaFai Lau1-18/+12
2022-09-02bpf: Change bpf_getsockopt(SOL_TCP) to reuse do_tcp_getsockopt()Martin KaFai Lau1-31/+43
2022-09-02bpf: Change bpf_getsockopt(SOL_SOCKET) to reuse sk_getsockopt()Martin KaFai Lau2-36/+25
2022-09-02bpf: Embed kernel CONFIG check into the if statement in bpf_getsockoptMartin KaFai Lau1-7/+4
2022-09-02bpf: net: Avoid sk_getsockopt() taking sk lock when called from bpfMartin KaFai Lau1-2/+2
2022-09-02bpf: net: Change sk_getsockopt() to take the sockptr_t argumentMartin KaFai Lau2-22/+26
2022-09-02net: Change sock_getsockopt() to take the sk ptr instead of the sock ptrMartin KaFai Lau1-3/+9