summaryrefslogtreecommitdiff
path: root/net
AgeCommit message (Expand)AuthorFilesLines
2022-09-08Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/netPaolo Abeni37-235/+368
2022-09-08sch_sfb: Also store skb len before calling child enqueueToke Høiland-Jørgensen1-1/+2
2022-09-07net/smc: Fix possible access to freed memory in link clearYacan Liu4-0/+13
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-07netfilter: nft_payload: reject out-of-range attributes via policyFlorian Westphal1-3/+3
2022-09-07Merge https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-nextPaolo Abeni11-604/+575
2022-09-06tcp: fix early ETIMEDOUT after spurious non-SACK RTONeal Cardwell1-7/+18
2022-09-05netlink: Bounds-check struct nlmsgerr creationKees Cook2-6/+10
2022-09-05Merge tag 'for-net-2022-09-02' of git://git.kernel.org/pub/scm/linux/kernel/g...David S. Miller1-6/+6
2022-09-05ipv6: sr: fix out-of-bounds read when setting HMAC data.David Lebrun1-0/+5
2022-09-05bonding: add all node mcast address when slave upHangbin Liu1-2/+6
2022-09-04Merge tag 'wireless-next-2022-09-03' of git://git.kernel.org/pub/scm/linux/ke...David S. Miller11-302/+417
2022-09-04Merge tag 'wireless-2022-09-03' of git://git.kernel.org/pub/scm/linux/kernel/...David S. Miller4-9/+13
2022-09-03wifi: mac80211: call drv_sta_state() under sdata_lock() in reconfigJohannes Berg1-15/+13
2022-09-03wifi: nl80211: add MLD address to assoc BSS entriesJohannes Berg1-2/+4
2022-09-03wifi: mac80211: mlme: refactor QoS settings codeJohannes Berg2-13/+27
2022-09-03wifi: mac80211: fix double SW scan stopJohannes Berg1-1/+1
2022-09-03wifi: mac80211: mlme: assign link address correctlyJohannes Berg1-3/+2
2022-09-03wifi: mac80211: move link code to a new fileJohannes Berg4-254/+274
2022-09-03wifi: mac80211: remove unused arg to ieee80211_chandef_eht_operJohannes Berg3-6/+4
2022-09-03wifi: nl80211: remove redundant err variableJinpeng Cui1-4/+1
2022-09-03wifi: mac80211: Support POWERED_ADDR_CHANGE featureJames Prestwood2-2/+71
2022-09-03wifi: mac80211: prevent 4-addr use on MLDsJohannes Berg2-0/+11
2022-09-03wifi: mac80211: prevent VLANs on MLDsJohannes Berg1-0/+5
2022-09-03wifi: use struct_group to copy addressesJohannes Berg2-3/+3
2022-09-03wifi: mac80211: fix locking in auth/assoc timeoutJohannes Berg1-6/+5
2022-09-03wifi: mac80211: mlme: release deflink channel in error caseJohannes Berg1-0/+1
2022-09-03wifi: mac80211: fix link warning in RX agg timer expiryMukesh Sisodiya1-0/+4
2022-09-03net: sched: htb: remove redundant resource cleanup in htb_init()Zhengchao Shao1-27/+9
2022-09-03net: sched: fq_codel: remove redundant resource cleanup in fq_codel_init()Zhengchao Shao1-17/+8
2022-09-03net/sched: cls_api: remove redundant 0 check in tcf_qevent_init()Zhengchao Shao1-3/+0
2022-09-03bpf: Change bpf_getsockopt(SOL_IPV6) to reuse do_ipv6_getsockopt()Martin KaFai Lau3-33/+27
2022-09-03bpf: Change bpf_getsockopt(SOL_IP) to reuse do_ip_getsockopt()Martin KaFai Lau2-20/+14
2022-09-03bpf: Change bpf_getsockopt(SOL_TCP) to reuse do_tcp_getsockopt()Martin KaFai Lau2-33/+45
2022-09-03bpf: Change bpf_getsockopt(SOL_SOCKET) to reuse sk_getsockopt()Martin KaFai Lau2-36/+25
2022-09-03bpf: Embed kernel CONFIG check into the if statement in bpf_getsockoptMartin KaFai Lau1-7/+4
2022-09-03bpf: net: Avoid do_ipv6_getsockopt() taking sk lock when called from bpfMartin KaFai Lau1-8/+8
2022-09-03bpf: net: Change do_ipv6_getsockopt() to take the sockptr_t argumentMartin KaFai Lau3-40/+47
2022-09-03net: Add a len argument to compat_ipv6_get_msfilter()Martin KaFai Lau1-5/+3
2022-09-03net: Remove unused flags argument from do_ipv6_getsockoptMartin KaFai Lau1-3/+3
2022-09-03bpf: net: Avoid do_ip_getsockopt() taking sk lock when called from bpfMartin KaFai Lau1-8/+8
2022-09-03bpf: net: Change do_ip_getsockopt() to take the sockptr_t argumentMartin KaFai Lau3-48/+63
2022-09-03bpf: net: Avoid do_tcp_getsockopt() taking sk lock when called from bpfMartin KaFai Lau1-9/+9
2022-09-03bpf: net: Change do_tcp_getsockopt() to take the sockptr_t argumentMartin KaFai Lau1-35/+37
2022-09-03bpf: net: Avoid sk_getsockopt() taking sk lock when called from bpfMartin KaFai Lau1-2/+2
2022-09-03bpf: net: Change sk_getsockopt() to take the sockptr_t argumentMartin KaFai Lau2-22/+26
2022-09-03net: Change sock_getsockopt() to take the sk ptr instead of the sock ptrMartin KaFai Lau1-3/+9
2022-09-03Merge git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nfJakub Kicinski9-97/+20
2022-09-03Bluetooth: hci_sync: Fix hci_read_buffer_size_syncLuiz Augusto von Dentz1-6/+6