summaryrefslogtreecommitdiffstats
path: root/net (follow)
Commit message (Expand)AuthorAgeFilesLines
* tls: decrement decrypt_pending if no async completion will be calledSabrina Dubroca2024-02-291-0/+2
* Merge tag 'nf-24-02-29' of git://git.kernel.org/pub/scm/linux/kernel/git/netf...Paolo Abeni2024-02-294-0/+147
|\
| * netfilter: bridge: confirm multicast packets before passing them up the stackFlorian Westphal2024-02-293-0/+127
| * netfilter: nf_tables: allow NFPROTO_INET in nft_(match/target)_validate()Ignat Korchagin2024-02-281-0/+20
* | net: hsr: Use correct offset for HSR TLV values in supervisory HSR framesLukasz Majewski2024-02-291-1/+1
* | rtnetlink: fix error logic of IFLA_BRIDGE_FLAGS writing backLin Ma2024-02-291-6/+5
* | net: hsr: Fix typo in the hsr_forward_do() function commentLukasz Majewski2024-02-281-1/+1
* | Merge tag 'wireless-2024-02-27' of git://git.kernel.org/pub/scm/linux/kernel/...Jakub Kicinski2024-02-282-1/+4
|\ \
| * | wifi: mac80211: only call drv_sta_rc_update for uploaded stationsFelix Fietkau2024-02-231-1/+2
| * | wifi: nl80211: reject iftype change with mesh ID changeJohannes Berg2024-02-151-0/+2
* | | mptcp: fix possible deadlock in subflow diagPaolo Abeni2024-02-271-0/+3
* | | mptcp: fix double-free on socket dismantleDavide Caratti2024-02-271-0/+49
* | | mptcp: fix potential wake-up event lossPaolo Abeni2024-02-271-10/+11
* | | mptcp: fix snd_wnd initialization for passive socketPaolo Abeni2024-02-271-1/+1
* | | mptcp: push at DSS boundariesPaolo Abeni2024-02-271-0/+1
* | | mptcp: avoid printing warning once on client sideMatthieu Baerts (NGI0)2024-02-271-1/+1
* | | mptcp: map v4 address to v6 when destroying subflowGeliang Tang2024-02-271-0/+10
* | | dpll: rely on rcu for netdev_dpll_pin()Eric Dumazet2024-02-271-1/+1
* | | ipv6: fix potential "struct net" leak in inet6_rtm_getaddr()Eric Dumazet2024-02-261-3/+4
* | | net: mctp: take ownership of skb in mctp_local_outputJeremy Kerr2024-02-231-2/+8
* | | net: ip_tunnel: prevent perpetual headroom growthFlorian Westphal2024-02-231-7/+21
* | | netlink: Fix kernel-infoleak-after-free in __skb_datagram_iterRyosuke Yasuoka2024-02-231-1/+1
| |/ |/|
* | l2tp: pass correct message length to ip6_append_dataTom Parkin2024-02-221-1/+1
* | Merge tag 'nf-24-02-22' of git://git.kernel.org/pub/scm/linux/kernel/git/netf...Paolo Abeni2024-02-222-42/+56
|\ \
| * | netfilter: nf_tables: use kzalloc for hook allocationFlorian Westphal2024-02-221-1/+1
| * | netfilter: nf_tables: register hooks last when adding new chain/flowtablePablo Neira Ayuso2024-02-221-38/+40
| * | netfilter: nft_flow_offload: release dst in case direct xmit path is usedPablo Neira Ayuso2024-02-221-0/+1
| * | netfilter: nft_flow_offload: reset dst in route object after setting up flowPablo Neira Ayuso2024-02-221-3/+13
| * | netfilter: nf_tables: set dormant flag on hook register failureFlorian Westphal2024-02-221-0/+1
* | | Merge tag 'for-netdev' of https://git.kernel.org/pub/scm/linux/kernel/git/bpf...Paolo Abeni2024-02-222-3/+7
|\ \ \
| * | | bpf, sockmap: Fix NULL pointer dereference in sk_psock_verdict_data_ready()Shigeru Yoshida2024-02-211-2/+5
| * | | xsk: Add truesize to skb_add_rx_frag().Sebastian Andrzej Siewior2024-02-131-1/+2
* | | | Fix write to cloned skb in ipv6_hop_ioam()Justin Iurman2024-02-221-0/+10
* | | | phonet/pep: fix racy skb_queue_empty() useRémi Denis-Courmont2024-02-221-9/+32
* | | | phonet: take correct lock to peek at the RX queueRémi Denis-Courmont2024-02-221-2/+2
* | | | net/sched: flower: Add lock protection when remove filter handleJianbo Liu2024-02-221-1/+4
* | | | devlink: fix port dump cmd typeJiri Pirko2024-02-221-1/+1
* | | | net: mctp: put sock on tag allocation failureJeremy Kerr2024-02-221-1/+1
* | | | tls: don't skip over different type records from the rx_listSabrina Dubroca2024-02-211-8/+14
* | | | tls: stop recv() if initial process_rx_list gave us non-DATASabrina Dubroca2024-02-211-1/+1
* | | | tls: break out of main loop when PEEK gets a non-data recordSabrina Dubroca2024-02-211-0/+2
* | | | af_unix: Drop oob_skb ref before purging queue in GC.Kuniyuki Iwashima2024-02-211-13/+9
* | | | net: implement lockless setsockopt(SO_PEEK_OFF)Eric Dumazet2024-02-213-34/+15
* | | | arp: Prevent overflow in arp_req_get().Kuniyuki Iwashima2024-02-201-1/+2
* | | | devlink: fix possible use-after-free and memory leaks in devlink_init()Vasiliy Kovalev2024-02-201-3/+9
* | | | ipv6: sr: fix possible use-after-free and null-ptr-derefVasiliy Kovalev2024-02-201-9/+11
| |/ / |/| |
* | | mptcp: fix duplicate subflow creationPaolo Abeni2024-02-181-15/+18
* | | mptcp: fix data races on remote_idPaolo Abeni2024-02-182-7/+7
* | | mptcp: fix data races on local_idPaolo Abeni2024-02-186-13/+23
* | | mptcp: fix lockless access in subflow ULP diagPaolo Abeni2024-02-182-2/+6