From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Jakub Kicinski <kuba@kernel.org>,
Eric Dumazet <edumazet@google.com>,
Willem de Bruijn <willemb@google.com>,
Sasha Levin <sashal@kernel.org>,
daniel.zahka@gmail.com, willemdebruijn.kernel@gmail.com,
davem@davemloft.net, pabeni@redhat.com, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18] psp: validate IPv4 header fields in psp_dev_rcv()
Date: Mon, 31 Aug 2026 09:28:54 -0400 [thread overview]
Message-ID: <20260831133314.4125787-506-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>
From: Jakub Kicinski <kuba@kernel.org>
[ Upstream commit c2b22277ad897d21341f502f87fccd905ff4e207 ]
psp_dev_rcv() is called from the NIC driver's RX completion path
before the frame reaches ip_rcv_core(), so the IP header has not
been validated in SW, yet. We expect that the device has done
all this validation, but let's also add the SW checks, to avoid
surprises.
Reviewed-by: Eric Dumazet <edumazet@google.com>
Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://patch.msgid.link/20260428205352.1247325-4-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
## Phase 1: Commit Message Forensics
### Step 1.1: Subject line
**Record:** `[psp]` `[validate]` — Add software validation of IPv4 (and
IPv6) header fields in `psp_dev_rcv()` before decapsulation.
### Step 1.2: Tags
**Record:**
- **Reviewed-by:** Eric Dumazet \<edumazet@google.com\>
- **Reviewed-by:** Willem de Bruijn \<willemb@google.com\>
- **Link:**
https://patch.msgid.link/20260428205352.1247325-4-kuba@kernel.org
(patch 4/N of a series)
- **Signed-off-by:** Jakub Kicinski \<kuba@kernel.org\>
- No Fixes:, Reported-by:, Tested-by:, Cc: stable, or syzbot tags.
Notable: reviewed by two senior networking developers; no fuzzer or user
crash report.
### Step 1.3: Body analysis
**Record:**
- **Bug:** `psp_dev_rcv()` runs in the NIC RX completion path before
`ip_rcv_core()`, so normal software IP header validation has not run
yet.
- **Symptom:** Malformed IP headers (invalid `ihl`,
`tot_len`/`payload_len` too small for decapsulation) could be
accepted; code uses `iph->ihl` for `ip_fast_csum()` and subtracts
`encap` from length fields without bounds checks.
- **Root cause:** Assumption that hardware always delivers valid L3
headers; no defensive SW checks mirroring `ip_rcv_core()`.
- **Version info:** None in the message.
### Step 1.4: Hidden bug fix?
**Record:** Yes. Despite “avoid surprises” wording, this is a real
validation bug fix: invalid `ihl` can cause out-of-bounds access in
`ip_fast_csum()`, and unchecked subtraction can underflow
`tot_len`/`payload_len`, producing corrupt skbs passed up the stack.
---
## Phase 2: Diff Analysis
### Step 2.1: Inventory
**Record:**
- **File:** `net/psp/psp_main.c` (+9 lines, 0 removed)
- **Function:** `psp_dev_rcv()`
- **Scope:** Single-file, surgical validation additions.
### Step 2.2: Code flow per hunk
**Record:**
1. **IPv4 `ihl` check (after reading `iph`):** Before → used `iph->ihl`
directly for `l3_hlen` and later `ip_fast_csum()`. After → reject if
`ihl < 5`.
2. **IPv4 `tot_len` check (before modifying header):** Before →
`iph->tot_len = htons(ntohs(iph->tot_len) - encap)` with no guard.
After → reject if `tot_len < l3_hlen + encap`.
3. **IPv6 `payload_len` check:** Before → subtract `encap`
unconditionally. After → reject if `payload_len < encap`.
### Step 2.3: Bug mechanism
**Record:** **Memory safety / logic correctness.**
- Invalid `ihl` (< 5): `l3_hlen = iph->ihl * 4` can be too small;
`ip_fast_csum((u8 *)iph, iph->ihl)` may read fewer than 20 bytes or
use invalid length (compare `ip_rcv_core()` at
`net/ipv4/ip_input.c:500`).
- Length underflow: `ntohs(iph->tot_len) - encap` with `tot_len < encap`
wraps to a large value when stored back into `tot_len`, corrupting the
skb for downstream IP processing.
### Step 2.4: Fix quality
**Record:** Obviously correct; mirrors existing IP stack validation
patterns. Minimal risk; only rejects packets that would have been
mishandled. No API changes. In this tree, checks must be placed after
`encap` is computed with `psp_hlen` (post-`ac4bf66686bbb`), not the
fixed `PSP_ENCAP_HLEN` shown in the candidate diff.
---
## Phase 3: Git History Investigation
### Step 3.1: Blame
**Record:** Core `psp_dev_rcv()` logic from `19eef1d98eeda` (Nov 2025).
Variable-length PSP header handling added in `ac4bf66686bbb` (May 2026,
already in this tree). The validation gap dates to initial
`psp_dev_rcv()` introduction.
### Step 3.2: Fixes: tag
**Record:** N/A — no Fixes: tag.
### Step 3.3: Related file history
**Record:** Recent `net/psp/psp_main.c` commits:
- `ac4bf66686bbb` — variable-length PSP header strip (Cc: stable,
backported)
- `b640188b61e63` — `psp_write_headers()` hash fix
- `aa1a08a4632af`, `d90df5ce6deb2` — permission/unregister checks
The candidate commit is **not** in this tree. It is standalone
validation logic, but must be adapted for post-`ac4bf66686bbb` `encap`
calculation.
### Step 3.4: Author context
**Record:** Jakub Kicinski is the networking tree maintainer who merged
PSP work. Related PSP fixes in-tree were reviewed by Willem de Bruijn
(same reviewer on this patch).
### Step 3.5: Dependencies
**Record:** No series dependency for the validation logic itself.
Applies standalone to any tree with `psp_dev_rcv()`. In this tree,
`encap = sizeof(struct udphdr) + psp_hlen + optional ICV`, so the
`tot_len`/`payload_len` checks use the updated `encap` value.
---
## Phase 4: Mailing List and External Research
### Step 4.1–4.5
**Record:** Lore/patch.msgid.link fetch returned 403 (bot protection).
`b4 dig` requires a commit hash; the candidate is not in this checkout,
so `b4 dig -c` could not match it. **UNVERIFIED:** full mailing-list
thread, stable nominations in review, series context for patches 1–3.
From the Link subject (`1247325-4`), this is patch 4 of a series; the
validation changes themselves appear self-contained.
---
## Phase 5: Code Semantic Analysis
### Step 5.1: Key functions
**Record:** `psp_dev_rcv()` — only function modified.
### Step 5.2: Callers
**Record:**
- `drivers/net/ethernet/mellanox/mlx5/core/en_accel/psp_rxtx.c:135` —
`mlx5e_psp_offload_handle_rx_skb()`, production RX path after HW
decryption syndrome check.
- `drivers/net/netdevsim/psp.c:64` — test/simulation path.
### Step 5.3: Callees
**Record:** `__vlan_get_protocol()`, `pskb_may_pull()`, `skb_ext_add()`,
`ip_fast_csum()`, `memmove()`, `skb_pull()`, `pskb_trim()`.
### Step 5.4: Reachability
**Record:** Reachable from NIC RX completion on PSP-offloaded mlx5
devices (`CONFIG_INET_PSP` + `CONFIG_MLX5_EN_PSP`). Hardware is expected
to validate frames first; netdevsim allows software testing without HW.
Not a general syscall path, but network-reachable on configured systems.
### Step 5.5: Similar patterns
**Record:** `ip_rcv_core()` validates `iph->ihl < 5` and `len <
iph->ihl*4` (`net/ipv4/ip_input.c:500–524`). `route.c`, `icmp.c`,
`nf_reject_ipv4.c` use the same `ihl < 5` guard. `psp_dev_rcv()` is an
intentional bypass of that path and lacks equivalent checks today.
---
## Phase 6: Cross-Reference Against Local Tree (6.18.43)
### Step 6.1: Buggy code present?
**Record:** **Yes.** Current `net/psp/psp_main.c` (lines 294–358) lacks
all three checks. Uses `iph->ihl` without `ihl < 5` guard; subtracts
`encap` from `tot_len`/`payload_len` without underflow protection.
### Step 6.2: Backport complications
**Record:** **Minor adaptation needed.** This tree already has
`ac4bf66686bbb` (variable `psp_hlen`, dynamic `encap`). The candidate
diff targets pre-`ac4bf66686bbb` code with fixed `PSP_ENCAP_HLEN`.
Validation logic maps cleanly: `ihl` check at the same spot; length
checks after `encap` is computed with `sizeof(struct udphdr) +
psp_hlen`.
### Step 6.3: Related fixes already present?
**Record:** `ac4bf66686bbb` fixes variable-length PSP header stripping
but explicitly does not add IP header field validation. No duplicate fix
found.
---
## Phase 7: Subsystem Context
### Step 7.1: Subsystem / criticality
**Record:** `net/psp` — INET PSP security protocol. **IMPORTANT**
(networking RX path), but config-specific (`CONFIG_INET_PSP`).
### Step 7.2: Activity
**Record:** Actively developed subsystem in 6.18 (multiple PSP commits
in 2025–2026). New enough that bugs are still being found and hardened.
---
## Phase 8: Impact and Risk Assessment
### Step 8.1: Who is affected
**Record:** Systems with PSP offload enabled (primarily mlx5 ConnectX
with `MLX5_EN_PSP`). Not universal; datacenter/cloud deployments using
Google PSP.
### Step 8.2: Trigger conditions
**Record:** Malformed inner IP/IPv6 header in a PSP-decapsulated frame
reaching `psp_dev_rcv()`. Expected rare (HW validation), but possible
via HW/firmware bugs or test injection (netdevsim). Network-origin on
PSP-enabled hosts.
### Step 8.3: Failure mode severity
**Record:**
- `ihl < 5` → invalid `ip_fast_csum()` / wrong offsets → **HIGH** (OOB
read potential)
- Length underflow → corrupt `tot_len`/`payload_len` on skb entering
normal IP receive → **HIGH** (downstream parsing errors, possible
crash)
Overall: **HIGH** if triggered; trigger likelihood is **LOW-MEDIUM**
(HW-gated but not impossible).
### Step 8.4: Risk-benefit
**Record:**
- **Benefit:** MEDIUM-HIGH — prevents corrupt skbs and OOB access in a
network RX helper that bypasses standard IP validation.
- **Risk:** VERY LOW — 3 small rejection checks on error paths; no
behavior change for valid packets.
- **Ratio:** Favorable for backport.
---
## Phase 9: Final Synthesis
### Step 9.1: Evidence compile
**FOR backport:**
- Real validation gap with concrete failure modes (OOB read, integer
underflow)
- Network RX path on PSP-enabled hardware
- Small, obviously correct, matches `ip_input.c` patterns
- Reviewed by Eric Dumazet and Willem de Bruijn
- Buggy code confirmed present in 6.18.43
- Prior related PSP fix (`ac4bf66686bbb`) was nominated and backported
to stable
**AGAINST backport:**
- No crash report, syzbot, or CVE cited
- Author frames as defense-in-depth (“device has done validation”)
- Narrow deployment (optional PSP on mlx5)
- Patch needs minor rework for current `psp_main.c` layout
- Mailing-list discussion unverified
**Unresolved:** Full review thread and whether patches 1–3 of the series
are prerequisites (validation patch appears independent).
### Step 9.2: Stable rules checklist
1. Obviously correct and tested? **PASS** — mirrors established IP
validation; reviewed by net experts (no runtime test cited).
2. Fixes a real bug? **PASS** — missing validation with demonstrable
underflow/OOB mechanisms.
3. Important issue? **PASS** — potential crash/corruption in network RX
path (HIGH severity if triggered).
4. Small and contained? **PASS** — ~9 lines, one function.
5. No new features/APIs? **PASS** — error-path validation only.
6. Can apply to local tree? **PASS** — with minor adjustment for
`psp_hlen`-based `encap`.
### Step 9.3: Exception category
**Record:** None (not device ID, quirk, DT, build, or docs). Standard
bug-fix/hardening.
### Step 9.4: Decision rationale
For **linux-6.18.y** (this checkout at 6.18.43): the PSP subsystem and
the vulnerable `psp_dev_rcv()` code are present. The function
deliberately skips `ip_rcv_core()` validation yet performs header
arithmetic (`tot_len - encap`, `ip_fast_csum` with `ihl`) that assumes
valid headers. That is a real bug; the fix is minimal, conservative, and
aligned with how the rest of the IPv4 stack validates headers. While
triggers are likely rare due to hardware offload gating, the failure
modes are serious enough for stable, and the same subsystem recently
received a similar stable backport (`ac4bf66686bbb`). The patch needs a
small adjustment for the variable-length PSP header changes already in
this tree, but the logic is straightforward.
---
## Verification
- **[Phase 1]** Parsed subject, tags, body from user-provided commit
message.
- **[Phase 2]** Analyzed diff: 3 validation checks in `psp_dev_rcv()`.
- **[Phase 3]** `git describe HEAD` → `v6.18.43-1-gc7f0dac02d232`;
Makefile → 6.18.43.
- **[Phase 3]** `git blame -L 294,360 net/psp/psp_main.c` → code from
`19eef1d98eeda`, modified by `ac4bf66686bbb`.
- **[Phase 3]** `git log --oneline -20 -- net/psp/psp_main.c` → recent
PSP history confirmed.
- **[Phase 3]** `git show ac4bf66686bbb` → variable-length header fix
already in tree; notes HW gating, Cc: stable.
- **[Phase 3]** `git log --grep="validate IPv4"` → commit not in tree.
- **[Phase 4]** WebFetch patch.msgid.link → 403 blocked. **UNVERIFIED:**
lore discussion, stable nominations.
- **[Phase 4]** `b4 dig -c HEAD` → no match (different commit).
**UNVERIFIED:** original thread for this patch.
- **[Phase 5]** `grep psp_dev_rcv` → callers in mlx5 and netdevsim
confirmed.
- **[Phase 5]** Read `mlx5e_psp_offload_handle_rx_skb()` → RX path with
HW syndrome gate.
- **[Phase 5]** `grep "ihl < 5"` in `net/ipv4/` → standard validation in
`ip_input.c:500` and elsewhere.
- **[Phase 6]** Read current `net/psp/psp_main.c:272-369` → all three
checks absent.
- **[Phase 6]** `grep "ihl < 5|tot_len.*encap"` in `net/psp/` → no
matches.
- **[Phase 7]** Read `net/psp/Kconfig` → `CONFIG_INET_PSP` optional,
depends on INET.
- **[Phase 8]** Traced failure modes from code: underflow at lines
351/358, `ip_fast_csum` at line 353 without `ihl` guard.
**YES**
net/psp/psp_main.c | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/net/psp/psp_main.c b/net/psp/psp_main.c
index e35c31977479c..afda9cb660275 100644
--- a/net/psp/psp_main.c
+++ b/net/psp/psp_main.c
@@ -294,6 +294,9 @@ int psp_dev_rcv(struct sk_buff *skb, u16 dev_id, u8 generation, bool strip_icv)
if (proto == htons(ETH_P_IP)) {
struct iphdr *iph = (struct iphdr *)(skb->data + l2_hlen);
+ if (unlikely(iph->ihl < 5))
+ return -EINVAL;
+
is_udp = iph->protocol == IPPROTO_UDP;
l3_hlen = iph->ihl * 4;
if (l3_hlen != sizeof(struct iphdr) &&
@@ -347,6 +350,9 @@ int psp_dev_rcv(struct sk_buff *skb, u16 dev_id, u8 generation, bool strip_icv)
if (proto == htons(ETH_P_IP)) {
struct iphdr *iph = (struct iphdr *)(skb->data + l2_hlen);
+ if (unlikely(ntohs(iph->tot_len) < l3_hlen + encap))
+ return -EINVAL;
+
iph->protocol = psph->nexthdr;
iph->tot_len = htons(ntohs(iph->tot_len) - encap);
iph->check = 0;
@@ -354,6 +360,9 @@ int psp_dev_rcv(struct sk_buff *skb, u16 dev_id, u8 generation, bool strip_icv)
} else {
struct ipv6hdr *ipv6h = (struct ipv6hdr *)(skb->data + l2_hlen);
+ if (unlikely(ntohs(ipv6h->payload_len) < encap))
+ return -EINVAL;
+
ipv6h->nexthdr = psph->nexthdr;
ipv6h->payload_len = htons(ntohs(ipv6h->payload_len) - encap);
}
--
2.53.0
next prev parent reply other threads:[~2026-08-31 13:48 UTC|newest]
Thread overview: 88+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20260831133314.4125787-1-sashal@kernel.org>
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.12] netconsole: take target_cleanup_list_lock in drop_netconsole_target() Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.6] bridge: Add missing READ_ONCE() annotations around FDB destination port Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-6.6] net: phy: motorcomm: use device properties for firmware tuning Sasha Levin
2026-08-31 13:20 ` [PATCH AUTOSEL 6.18-5.15] dpaa2-switch: rework FDB management on the bridge leave path Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] net: airoha: Reserve RX headroom to avoid skb reallocation Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-6.1] eth: mlx5: fix macsec dependency Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] phonet: check register_netdevice_notifier() error in phonet_device_init() Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18] net: sfp: apply I2C adapter quirks to limit block size Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] hsr: broadcast netlink notifications in the device's net namespace Sasha Levin
2026-08-31 13:21 ` [PATCH AUTOSEL 6.18-5.10] vhost-scsi: flush backend after device ioctls Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] bridge: Do not suppress ARP probes and DAD NS unconditionally Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.10] sctp: Unwind address notifier registration on failure Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-5.15] ptp: ocp: add shutdown callback Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.12] net: lan966x: restore RX state on reload failure Sasha Levin
2026-08-31 13:22 ` [PATCH AUTOSEL 6.18-6.6] net/mlx5: E-Switch, align disable sequence with switchdev-to-legacy transition Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.6] tls: Flush backlog before waiting for a new record Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] net: dsa: sja1105: flower: reject cross-chip redirect Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.12] net: hns3: improve the unused_tuple parameter setting Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-6.1] net: thunderx: fix PTP device ref leak in nicvf_probe() Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] net: stmmac: xgmac2: disable RBUE in default RX interrupt mask Sasha Levin
2026-08-31 13:23 ` [PATCH AUTOSEL 6.18-5.10] ipv6: Honor oif when choosing nexthop for locally generated traffic Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] ipv6: addrconf: fix temp address generation after prefix deprecation Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] net/sched: sch_drr: make cl->quantum lockless Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18] net: napi: Skip last poll when arming gro timer in busy poll Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] rds: annotate data-race around rs_seen_congestion Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] net: dsa: mv88e6xxx: enable .rmu_disable() for 6320 family Sasha Levin
2026-08-31 13:24 ` [PATCH AUTOSEL 6.18-5.10] net: qrtr: fix node refcount leak on ctrl packet alloc failure Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.15] dpaa2-switch: fix handling of NAPI on the remove path Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.15] net: dsa: mv88e6xxx: define .pot_clear() for 6321 Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] net/mlx5e: Verify unique vhca_id count instead of range Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] ice: pass the return value of skb_checksum_help() Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] pds_core: quiesce DMA before freeing resources Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-6.12] net/mlx5: HWS, Handle destroying table that has a miss table Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] rds: filter RDS_INFO_* getsockopt by caller's netns Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18] net: mscc: ocelot: validate netdev belongs to switch in .netdev_to_port() Sasha Levin
2026-08-31 13:25 ` [PATCH AUTOSEL 6.18-5.10] e1000e: limit endianness conversion to boundary words Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18] net: ethtool: cmis_cdb: hold instance lock for ops locked devices Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] net: au1000: move free_irq out of the close-time spinlocked section Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.10] vsock: use sk_acceptq_is_full() helper in all transports Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.1] net: dsa: realtek: rtl8365mb: add support for RTL8367SB Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-6.12] rtase: Fix flow control configuration Sasha Levin
2026-08-31 13:26 ` [PATCH AUTOSEL 6.18-5.15] dpaa2-switch: fix the error path in dpaa2_switch_rx() Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] ipv6: use READ_ONCE() for bindv6only default in inet6_create() Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] net_sched: sch_fq: convert skb->tstamp if not monotonic Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] net/mlx5: HWS, Check if device is down while polling for completion Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.6] net: microchip: sparx5: clean up PSFP resources on flower setup failure Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] xfrm: allow migration from UDP encapsulated to non-encapsulated ESP Sasha Levin
2026-09-01 7:50 ` Antony Antony
2026-09-01 9:14 ` Sabrina Dubroca
2026-09-01 15:08 ` Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18] net: phy: sfp: detect presence via I2C when no MOD_DEF0 GPIO Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-5.10] netlabel: fix IPv6 unlabeled address add error handling Sasha Levin
2026-08-31 13:27 ` [PATCH AUTOSEL 6.18-6.12] net: mana: hardening: Reject zero max_num_queues from MANA_QUERY_VPORT_CONFIG Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] net: ibm: emac: Reserve VLAN header in MJS limit Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] net: wwan: t7xx: Add delay between MD and SAP suspend Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.12] net: sfp: add quirk for OEM 2.5G optical modules Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-6.1] net: phy: sfp: probe for RollBall I2C-to-MDIO bridge in mdio-i2c Sasha Levin
2026-09-01 5:28 ` Petr Wozniak
2026-09-01 15:07 ` Sasha Levin
[not found] ` <CALSZ6VYWSva6FY-40n8f-eeinu5qXkPbwXue9N9+=D7iEL+ksg@mail.gmail.com>
2026-09-01 15:07 ` Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18-5.10] net/sched: act_csum: don't mangle UDP tunnel GSO packets Sasha Levin
2026-08-31 13:28 ` [PATCH AUTOSEL 6.18] net/mlx5: Relax capability check for eswitch query paths Sasha Levin
2026-08-31 13:28 ` Sasha Levin [this message]
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] net/rds: Don't sleep inside rds_ib_conn_path_shutdown Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] netfilter: nf_conntrack_expect: zero at allocation time Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] net: sfp: extend SMBus support Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] bpf, sockmap: reject a packet-modifying SK_SKB stream parser Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-6.1] net: hsr: require valid EOT supervision TLV Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18-5.10] net: bridge: remove stale rcu_barrier() in br_multicast_dev_del() Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] net: txgbe: fix phylink leak on AML init failure Sasha Levin
2026-08-31 13:29 ` [PATCH AUTOSEL 6.18] net/mlx5: Switch vport HCA cap helpers to kvzalloc Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] netfilter: ipset: mark the rcu locked areas properly Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] xprtrdma: Add request-pool slack for delayed recycling Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] netfilter: nf_tables: use DEBUG_NET_WARN_ON_ONCE in packet and control paths Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-6.1] tls: reject the combination of TLS and sockmap Sasha Levin
2026-09-01 9:36 ` Sabrina Dubroca
2026-09-01 15:09 ` Sasha Levin
2026-09-02 15:35 ` Sabrina Dubroca
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] netfilter: nf_conntrack: use get_unaligned_be32() in tcp_sack() Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] net: usb: qmi_wwan: add MeiG SRM813Q Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18-5.10] net: cpsw_new: unregister devlink on port registration failure Sasha Levin
2026-08-31 13:30 ` [PATCH AUTOSEL 6.18] net: ibm: emac: fix unchecked platform_get_irq return value Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] net: ibm: emac: mal: fix potential system hang in mal_remove() Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.15] netfilter: nfnetlink_log: wait for rcu grace period before freeing pernet state Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-6.6] net: dsa: qca8k: Add support for force mode for fixed link topology Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] net: ibm: emac: mal: fix unchecked platform_get_irq return values Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18-5.10] net: dsa: mv88e6xxx: fix number of g1 interrupts for 6320 family Sasha Levin
2026-08-31 13:31 ` [PATCH AUTOSEL 6.18] net: ensure SCM_TXTIME delivery time is no older than system boot Sasha Levin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260831133314.4125787-506-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=daniel.zahka@gmail.com \
--cc=davem@davemloft.net \
--cc=edumazet@google.com \
--cc=kuba@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=pabeni@redhat.com \
--cc=patches@lists.linux.dev \
--cc=stable@vger.kernel.org \
--cc=willemb@google.com \
--cc=willemdebruijn.kernel@gmail.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox