Netdev List
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Mieczyslaw Nalewaj <namiltd@yahoo.com>,
	Luiz Angelo Daros de Luca <luizluca@gmail.com>,
	Jakub Kicinski <kuba@kernel.org>, Sasha Levin <sashal@kernel.org>,
	linusw@kernel.org, andrew@lunn.ch, olteanv@gmail.com,
	davem@davemloft.net, edumazet@google.com, pabeni@redhat.com,
	netdev@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH AUTOSEL 6.18-6.1] net: dsa: realtek: rtl8365mb: add support for RTL8367SB
Date: Mon, 31 Aug 2026 09:26:30 -0400	[thread overview]
Message-ID: <20260831133314.4125787-362-sashal@kernel.org> (raw)
In-Reply-To: <20260831133314.4125787-1-sashal@kernel.org>

From: Mieczyslaw Nalewaj <namiltd@yahoo.com>

[ Upstream commit 28702a215c96917d85558ad6309a57ab224808c0 ]

Add chip info entry for the Realtek RTL8367SB switch. This device has
chip ID 0x6367 and version 0x0010. It exposes two external interfaces:
port 6 supports MII, TMII, RMII, RGMII, SGMII and HSGMII, while port 7
supports MII, TMII, RMII and RGMII. Use the existing 8365MB-VC jam table
for initialization.

Reviewed-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
Signed-off-by: Mieczyslaw Nalewaj <namiltd@yahoo.com>
Link: https://patch.msgid.link/3c6d822b-0e85-4173-86ba-2badb140bbf1@yahoo.com
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:** `[net: dsa: realtek: rtl8365mb]` `[add]` — Add chip-info
table entry for Realtek RTL8367SB switch variant in the existing
rtl8365mb DSA driver.

### Step 1.2: Commit Message Tags
**Record:**
- **Reviewed-by:** Luiz Angelo Daros de Luca \<luizluca@gmail.com\> —
  subsystem reviewer who also provided technical feedback during review
- **Signed-off-by:** Mieczyslaw Nalewaj \<namiltd@yahoo.com\> — author
- **Signed-off-by:** Jakub Kicinski \<kuba@kernel.org\> — netdev
  maintainer merge
- **Link:** https://patch.msgid.link/3c6d822b-0e85-4173-86ba-
  2badb140bbf1@yahoo.com
- **No** Fixes:, Reported-by:, Tested-by:, Acked-by:, or Cc:
  stable@vger.kernel.org
- Notable: no user bug report or syzbot reference; reviewed by a driver
  contributor

### Step 1.3: Commit Body Analysis
**Record:**
- **Bug description:** RTL8367SB (chip ID `0x6367`, version `0x0010`) is
  not recognized by `rtl8365mb_detect()` because it has no entry in
  `rtl8365mb_chip_infos[]`.
- **Symptom:** Probe fails with `unrecognized switch (id=0x6367,
  ver=0x0010)` and `-ENODEV`; the switch never registers as a DSA device
  and networking through it does not work.
- **Version info:** None stated.
- **Root cause (author):** Missing chip-info entry; the chip reuses the
  existing `8365MB-VC` jam initialization table. Port 6 supports
  MII/TMII/RMII/RGMII/SGMII/HSGMII; port 7 supports MII/TMII/RMII/RGMII.

### Step 1.4: Hidden Bug Fix Detection
**Record:** Not a crash/UAF/leak fix. This is hardware enablement
disguised as “add support.” It completes detection for a chip already
listed in the driver’s family documentation but absent from the runtime
chip table — functionally equivalent to adding a device/chip ID to an
existing driver.

---

## Phase 2: Diff Analysis

### Step 2.1: Change Inventory
**Record:**
- **File:** `drivers/net/dsa/realtek/rtl8365mb.c` — +14 lines, 0 removed
- **Modified data:** `rtl8365mb_chip_infos[]` static table only
- **Scope:** Single-file, surgical table entry addition

### Step 2.2: Code Flow Change
**Record:**
- **Before:** `rtl8365mb_detect()` iterates `rtl8365mb_chip_infos[]`;
  chip `0x6367`/`0x0010` matches nothing → `-ENODEV`.
- **After:** Same loop matches the new RTL8367SB entry → probe
  continues, switch initializes with the existing VC jam table and
  declared external interface capabilities.
- **Path affected:** Device probe / chip detection during
  `rtl83xx_register_switch()` → `priv->ops->detect()`.

### Step 2.3: Bug Mechanism
**Record:**
- **Category:** Logic/correctness — incomplete chip identification table
  (hardware enablement).
- **Mechanism:** Driver documents RTL8367SB in its header comment list
  (line 81) but had no matching `chip_id`/`chip_ver` entry, so detection
  always failed for that silicon.

### Step 2.4: Fix Quality
**Record:**
- Fix is obviously correct in structure: follows identical pattern to
  RTL8367S and RTL8367RB-VB entries.
- Minimal scope; no logic changes beyond the table.
- **Regression risk:** Low. Wrong `extints` could misreport supported
  PHY modes, but v3 incorporated reviewer feedback on port-6
  capabilities; v4 is the reviewed final form.
- No API or structure changes.

---

## Phase 3: Git History Investigation

### Step 3.1: Blame / Introduction
**Record:** Current `rtl8365mb_chip_infos[]` entries (including RTL8367S
and RTL8367RB-VB) were introduced in `6bda50f4333fa` (2025-11-29, v6.18
base import). RTL8367SB was documented in the file header comment from
the same baseline but never given a table entry — an omission from
initial driver bring-up, not a later regression.

### Step 3.2: Fixes: Tag
**Record:** N/A — no Fixes: tag present.

### Step 3.3: Related File History
**Record:** Recent rtl8365mb changes in this tree are bug fixes (`fix
mode mask calculation`, `fix rtl8365mb_phy_ocp_write return value`,
stats cleanup). This RTL8367SB commit is not yet in the tree. Standalone
one-patch change (v1–v4 on mailing list, same functional diff in final
version).

### Step 3.4: Author Context
**Record:** Mieczyslaw Nalewaj has prior rtl8365mb fixes in this tree
(`b707f3109f1a7`, `5f5d956b2ce00`, `d95de5acbf9ed`). Active contributor
to this driver, not the original author of the whole file.

### Step 3.5: Dependencies
**Record:** No prerequisites. Uses existing
`rtl8365mb_init_jam_8365mb_vc` table and `PHY_INTF()` macros already
present. Applies standalone.

---

## Phase 4: Mailing List and External Research

### Step 4.1: Original Discussion
**Record:**
- **URL:** [PATCH v4 on
  lists.openwall.net](https://lists.openwall.net/netdev/2026/05/09/111)
  (Message-ID `3c6d822b-0e85-4173-86ba-2badb140bbf1@yahoo.com`)
- **Series revisions:** v1 → v2 (no changes) → v3 (expanded port-6 PHY
  mode mask per reviewer) → v4 (changelog only, repost)
- **Reviewer feedback:** Luiz Angelo Daros de Luca noted v2 port
  capabilities were too narrow for RTL8367SB; v3 corrected them. v3
  received `Reviewed-by:`.
- **Stable nominations:** None found in available thread content.
- **NAKs/concerns:** None found.

### Step 4.2: Reviewers
**Record:** Patch sent to netdev maintainers (Lunn, Oltean, Miller,
Kicinski, etc.). Cc’d Luiz Angelo Daros de Luca, who reviewed and
validated port capabilities.

### Step 4.3: Bug Reports
**Record:** No Reported-by, no syzbot, no bugzilla. Enablement driven by
hardware identification need, not a filed crash report.

### Step 4.4: Related Patches
**Record:** Standalone; not part of a multi-commit series.

### Step 4.5: Stable List History
**Record:** Could not access lore.kernel.org/stable (bot protection). No
stable discussion verified.

---

## Phase 5: Code Semantic Analysis

### Step 5.1: Key Functions
**Record:** Only `rtl8365mb_chip_infos[]` data modified. Detection logic
in `rtl8365mb_detect()` unchanged.

### Step 5.2: Callers
**Record:** `rtl8365mb_detect()` registered as `.detect` in
`rtl8365mb_switch_ops`, called from `rtl83xx_register_switch()` during
driver probe (platform/MDIO device init). Called once per device at
boot/module load.

### Step 5.3: Callees
**Record:** Detection reads chip ID/version registers via regmap; on
match, subsequent `rtl8365mb_switch_init()` uses `chip_info->jam_table`
and `extints` for PHY mode validation.

### Step 5.4: Reachability
**Record:** Triggered when a board with `compatible =
"realtek,rtl8365mb"` (or MDIO equivalent) has an RTL8367SB switch
attached. Requires `CONFIG_NET_DSA_REALTEK_RTL8365MB`. Affects
embedded/router platforms using this switch — not a syscall path, but a
common boot-time path for affected hardware.

### Step 5.5: Similar Patterns
**Record:** RTL8367S (`0x6367`/`0x00A0`) and RTL8367RB-VB
(`0x6367`/`0x0020`) entries use the same pattern. RTL8367SB sits between
them with a distinct `chip_ver` (`0x0010`) and combined port
capabilities.

---

## Phase 6: Cross-Reference Against Local Tree (6.18.43)

### Step 6.1: Does Buggy Code Exist?
**Record:** **Yes.** Local tree is **6.18.43**
(`v6.18.43-1-gc7f0dac02d232`). `drivers/net/dsa/realtek/rtl8365mb.c`
exists with `rtl8365mb_chip_infos[]` containing RTL8367S and RTL8367RB-
VB but **no RTL8367SB entry**, despite RTL8367SB being listed in the
driver’s supported-family comment at line 81. Commit is **not** yet
applied to this checkout.

### Step 6.2: Backport Complications
**Record:** **Clean apply expected.** Current tree has RTL8367S
immediately followed by RTL8367RB-VB — exactly where the patch inserts
the new entry. No conflicting changes in that region.

### Step 6.3: Related Fixes Already Present
**Record:** No existing RTL8367SB support or alternate fix found (`git
log --grep` returned empty).

---

## Phase 7: Subsystem and Maintainer Context

### Step 7.1: Subsystem Criticality
**Record:** **net/dsa/realtek** — IMPORTANT (networking driver
subsystem). Affects only platforms with this specific switch and
`CONFIG_NET_DSA_REALTEK_RTL8365MB` enabled. Known DTS usage:
`bcm47094-asus-rt-ac88u.dts` uses `realtek,rtl8365mb` (RTL8365MB-VC, not
RTL8367SB, but shows driver deployment on consumer routers).

### Step 7.2: Subsystem Activity
**Record:** Active — multiple rtl8365mb fixes landed in this 6.18.y
tree.

---

## Phase 8: Impact and Risk Assessment

### Step 8.1: Who Is Affected
**Record:** **Driver-specific / platform-specific** — users with
RTL8367SB (`0x6367`/`0x0010`) on boards using the rtl8365mb DSA driver.

### Step 8.2: Trigger Conditions
**Record:** Boot-time probe of a Realtek DSA switch whose hardware
reports chip ID `0x6367` and version `0x0010`. Not user-triggerable via
syscall; requires specific hardware. Unprivileged users cannot trigger
directly, but affected systems fail networking at boot.

### Step 8.3: Failure Mode Severity
**Record:** Probe failure (`-ENODEV`, “unrecognized switch”).
**Severity: MEDIUM** for affected hardware — no kernel crash, panic, or
data corruption, but switch is completely non-functional. Networking
unavailable on those boards.

### Step 8.4: Risk-Benefit
**Record:**
- **Benefit:** Enables RTL8367SB hardware on existing driver
  infrastructure; low user count but total failure without it.
- **Risk:** Very low — 14-line static table entry, reviewed, no
  behavioral changes to other chips.
- **Ratio:** Moderate benefit for a narrow audience, very low risk. Fits
  the stable **device ID / hardware enablement** exception category.

---

## Phase 9: Final Synthesis

### Step 9.1: Evidence Summary

**FOR backport:**
- Adds missing chip variant ID to an existing driver (stable exception:
  device ID / hardware enablement)
- Fixes real functional failure on RTL8367SB hardware (probe `-ENODEV`)
- Small (14 lines), self-contained, no dependencies
- Reviewed by driver contributor who corrected port capabilities
- Driver and infrastructure already present in 6.18.43
- Should apply cleanly

**AGAINST backport:**
- Not a crash, security, corruption, or deadlock fix
- No user bug reports or syzbot findings
- “Add support” language — feature completion rather than regression fix
- RTL8367SB was never supported in released 6.18.y; this adds new
  capability
- Affects a narrow hardware population
- No stable mailing list nomination found

**Unresolved:**
- No verified stable-list discussion (lore blocked)
- No DTS board in this tree explicitly using RTL8367SB (unverified
  whether any 6.18.y deployments need it today)

### Step 9.2: Stable Rules Checklist
1. Obviously correct and tested? **PASS** — table entry follows existing
   pattern; Reviewed-by from subsystem contributor; no Tested-by.
2. Fixes a real bug affecting users? **PASS** — probe failure on
   RTL8367SB is a real, reproducible functional bug for that hardware.
3. Important issue? **BORDERLINE PASS** — not crash/security class, but
   complete hardware failure for affected platforms.
4. Small and contained? **PASS** — 14 lines, one file, data table only.
5. No new features or APIs? **PASS with exception** — adds hardware
   support via existing driver mechanism (device ID exception applies).
6. Can apply to local tree? **PASS** — driver present, patch fits
   cleanly.

### Step 9.3: Exception Category
**Record:** **NEW DEVICE IDs / hardware enablement** — adding a chip
ID/version entry to an existing driver’s identification table, analogous
to PCI/USB ID additions. Driver (`CONFIG_NET_DSA_REALTEK_RTL8365MB`)
already exists in 6.18.43.

### Step 9.4: Decision Rationale

For **this** tree (6.18.43), the rtl8365mb driver is present and ships
with RTL8367SB documented in comments but missing from the detection
table. Boards with RTL8367SB silicon cannot use the switch at all. The
patch is a minimal, reviewed chip-identification entry using existing
initialization infrastructure — the canonical stable pattern for
enabling hardware on an existing driver without adding new APIs or
driver logic.

The fix is not security-critical and affects a limited hardware set, but
stable trees routinely accept such chip/ID table additions because they
fix real hardware failures with negligible regression risk. This meets
the stable exception criteria and applies cleanly to 6.18.43.

---

## Verification

- **[Phase 1]** Parsed subject, tags, body from provided commit message;
  fetched v4 thread from lists.openwall.net
- **[Phase 2]** Confirmed diff: +14 lines to `rtl8365mb_chip_infos[]`
  only
- **[Phase 3]** `git blame -L 535,560`: chip table from `6bda50f4333fa`;
  `git log --oneline -20 -- rtl8365mb.c`: no RTL8367SB commit in tree
- **[Phase 3]** `git log --grep="RTL8367SB"`: empty — commit not present
- **[Phase 4]** openwall.net v4 thread: v1–v4 evolution, Reviewed-by,
  Luiz Angelo port-capability feedback
- **[Phase 4]** lore.kernel.org fetch: blocked by bot protection
  (UNVERIFIED for stable-list discussion)
- **[Phase 4]** b4 dig: could not run without commit hash in local tree
  (commit not merged here)
- **[Phase 5]** Read `rtl8365mb_detect()` at lines 2070–2099: confirmed
  `-ENODEV` on unrecognized chip
- **[Phase 5]** Read `rtl83xx_register_switch()` at line 228: `detect()`
  called at probe
- **[Phase 5]** Grep `realtek,rtl8365mb` in DTS: found in
  `bcm47094-asus-rt-ac88u.dts`
- **[Phase 6]** `git describe HEAD`: v6.18.43; `make kernelversion`:
  6.18.43
- **[Phase 6]** Read lines 523–560: RTL8367SB entry absent; patch
  insertion point matches
- **[Phase 6]** Read line 81: RTL8367SB listed in family comment but
  unsupported at runtime
- **[Phase 7]** `CONFIG_NET_DSA_REALTEK_RTL8365MB` in
  `drivers/net/dsa/realtek/Makefile`
- **[Phase 8]** Failure mode verified in code: `-ENODEV` at line 2098,
  not oops/corruption

**YES**

 drivers/net/dsa/realtek/rtl8365mb.c | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/drivers/net/dsa/realtek/rtl8365mb.c b/drivers/net/dsa/realtek/rtl8365mb.c
index e10a789e22022..c806a24dcd031 100644
--- a/drivers/net/dsa/realtek/rtl8365mb.c
+++ b/drivers/net/dsa/realtek/rtl8365mb.c
@@ -544,6 +544,20 @@ static const struct rtl8365mb_chip_info rtl8365mb_chip_infos[] = {
 		.jam_table = rtl8365mb_init_jam_8365mb_vc,
 		.jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
 	},
+	{
+		.name = "RTL8367SB",
+		.chip_id = 0x6367,
+		.chip_ver = 0x0010,
+		.extints = {
+			{ 6, 1, PHY_INTF(MII) | PHY_INTF(TMII) |
+				PHY_INTF(RMII) | PHY_INTF(RGMII) |
+				PHY_INTF(SGMII) | PHY_INTF(HSGMII) },
+			{ 7, 2, PHY_INTF(MII) | PHY_INTF(TMII) |
+				PHY_INTF(RMII) | PHY_INTF(RGMII) },
+		},
+		.jam_table = rtl8365mb_init_jam_8365mb_vc,
+		.jam_size = ARRAY_SIZE(rtl8365mb_init_jam_8365mb_vc),
+	},
 	{
 		.name = "RTL8367RB-VB",
 		.chip_id = 0x6367,
-- 
2.53.0


  parent reply	other threads:[~2026-08-31 13:44 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 ` Sasha Levin [this message]
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 ` [PATCH AUTOSEL 6.18] psp: validate IPv4 header fields in psp_dev_rcv() Sasha Levin
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-362-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=andrew@lunn.ch \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=kuba@kernel.org \
    --cc=linusw@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luizluca@gmail.com \
    --cc=namiltd@yahoo.com \
    --cc=netdev@vger.kernel.org \
    --cc=olteanv@gmail.com \
    --cc=pabeni@redhat.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /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