From: Sasha Levin <sashal@kernel.org>
To: patches@lists.linux.dev, stable@vger.kernel.org
Cc: Lachlan Hodges <lachlan.hodges@morsemicro.com>,
Arien Judge <arien.judge@morsemicro.com>,
Johannes Berg <johannes.berg@intel.com>,
Sasha Levin <sashal@kernel.org>,
chunkeey@googlemail.com, pkshih@realtek.com,
johannes@sipsolutions.net, alexander.deucher@amd.com,
alexandre.f.demers@gmail.com, tglx@linutronix.de,
namcao@linutronix.de, bhelgaas@google.com,
linux-wireless@vger.kernel.org
Subject: [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: support parsing S1G TIM PVB
Date: Sat, 25 Oct 2025 11:55:30 -0400 [thread overview]
Message-ID: <20251025160905.3857885-99-sashal@kernel.org> (raw)
In-Reply-To: <20251025160905.3857885-1-sashal@kernel.org>
From: Lachlan Hodges <lachlan.hodges@morsemicro.com>
[ Upstream commit e0c47c6229c25b54440fe1f84a0ff533942290b1 ]
An S1G TIM PVB has 3 mandatory encoding modes, that being
block bitmap, single AID and OBL alongside the ability for
each encoding mode to be inverted. Introduce the ability to
parse the 3 encoding formats. The implementation specification
for the encoding formats can be found in IEEE80211-2024 9.4.2.5.
Signed-off-by: Arien Judge <arien.judge@morsemicro.com>
Signed-off-by: Lachlan Hodges <lachlan.hodges@morsemicro.com>
Link: https://patch.msgid.link/20250725132221.258217-3-lachlan.hodges@morsemicro.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
LLM Generated explanations, may be completely bogus:
YES
- Fixes a real functional gap for S1G (802.11ah): Prior to this change,
mac80211 only parsed legacy TIM PVBs. For S1G beacons the legacy
checker would early-return false (length < sizeof(TIM)), causing STAs
to miss buffered-traffic indications and mis-handle PS/wakeup
(incorrectly never seeing TIM bits). The new S1G-aware parsing
corrects that behavior and is needed for compliant S1G operation.
- Contained behavior change and gated to S1G only: The original legacy
logic is preserved as `__ieee80211_check_tim`
(include/linux/ieee80211.h:4782). The new wrapper
`ieee80211_check_tim(..., bool s1g)` dispatches to either the S1G
parser or the legacy parser (include/linux/ieee80211.h:5047). All
non-S1G call sites pass `false`, so there’s no behavior change outside
S1G.
- Correct mac80211 gating: mac80211 now passes the S1G indicator when
evaluating TIMs in MLME; this limits the new parsing to S1G beacons
only: `ieee80211_check_tim(elems->tim, elems->tim_len, vif_cfg->aid,
vif_cfg->s1g)` (net/mac80211/mlme.c:7487). This is precisely where
PS/Nullfunc/PS-Poll logic relies on correct TIM parsing.
- Complete and safe parsing for all S1G encodings: The new logic
implements all 3 mandatory S1G TIM PVB encoding modes (block bitmap,
single AID, OLB) plus inversion handling, with bounds checking:
- Encoded block enumeration and selection:
`ieee80211_s1g_find_target_block` validates lengths and finds the
block describing the target AID (include/linux/ieee80211.h:4922).
- Length helpers with validation: `ieee80211_s1g_len_bitmap`,
`ieee80211_s1g_len_single`, `ieee80211_s1g_len_olb` guard against
overruns (include/linux/ieee80211.h:4865, 4884, 4894).
- Decoders for each mode with inversion handling:
`ieee80211_s1g_parse_bitmap` (include/linux/ieee80211.h:4948),
`ieee80211_s1g_parse_single` (include/linux/ieee80211.h:4974),
`ieee80211_s1g_parse_olb` (include/linux/ieee80211.h:4991).
- Top-level S1G entry: `ieee80211_s1g_check_tim` assembles the AID
indices and dispatches to the appropriate parser
(include/linux/ieee80211.h:5001).
- Minimal risk to existing drivers: Call sites in in-tree drivers are
updated to the new signature with `s1g = false`, preserving existing
behavior:
- carl9170: drivers/net/wireless/ath/carl9170/rx.c:558
- p54: drivers/net/wireless/intersil/p54/txrx.c:320
- rt2x00: drivers/net/wireless/ralink/rt2x00/rt2x00dev.c:682
- rtlwifi: drivers/net/wireless/realtek/rtlwifi/ps.c:521
- mesh power save: net/mac80211/mesh_ps.c:588
- No architectural upheaval: This is a targeted parsing capability added
to an existing inline helper with a boolean selector. It doesn’t alter
core state machines or broader mac80211/driver interfaces beyond the
inline helper’s signature. Non-S1G behavior is unchanged and still
goes through the proven legacy path.
- Standards compliance: The implementation directly follows IEEE
802.11-2024 §9.4.2.5 encoding rules, including inversion and multi-
block OLB spans, addressing a correctness gap rather than introducing
a new feature.
Why it fits stable criteria:
- Important bug fix for an existing feature (S1G operation) that would
otherwise mis-handle TIM-based PS behavior.
- Change is self-contained, defensive (length-checked), and gated by
`s1g`, minimizing risk of regressions in non-S1G deployments.
- Touches only mac80211 and a handful of wireless drivers via a
mechanical signature update; verified in-tree call coverage indicates
no missed callers.
Given the correctness impact for S1G clients and the low regression risk
to other modes, this is a good candidate for stable backporting.
drivers/net/wireless/ath/carl9170/rx.c | 2 +-
drivers/net/wireless/intersil/p54/txrx.c | 2 +-
.../net/wireless/ralink/rt2x00/rt2x00dev.c | 2 +-
drivers/net/wireless/realtek/rtlwifi/ps.c | 2 +-
include/linux/ieee80211.h | 265 +++++++++++++++++-
net/mac80211/mesh_ps.c | 2 +-
net/mac80211/mlme.c | 3 +-
7 files changed, 263 insertions(+), 15 deletions(-)
diff --git a/drivers/net/wireless/ath/carl9170/rx.c b/drivers/net/wireless/ath/carl9170/rx.c
index 908c4c8b7f825..6833430130f4c 100644
--- a/drivers/net/wireless/ath/carl9170/rx.c
+++ b/drivers/net/wireless/ath/carl9170/rx.c
@@ -555,7 +555,7 @@ static void carl9170_ps_beacon(struct ar9170 *ar, void *data, unsigned int len)
/* Check whenever the PHY can be turned off again. */
/* 1. What about buffered unicast traffic for our AID? */
- cam = ieee80211_check_tim(tim_ie, tim_len, ar->common.curaid);
+ cam = ieee80211_check_tim(tim_ie, tim_len, ar->common.curaid, false);
/* 2. Maybe the AP wants to send multicast/broadcast data? */
cam |= !!(tim_ie->bitmap_ctrl & 0x01);
diff --git a/drivers/net/wireless/intersil/p54/txrx.c b/drivers/net/wireless/intersil/p54/txrx.c
index 2deb1bb54f24b..1294a1d6528e2 100644
--- a/drivers/net/wireless/intersil/p54/txrx.c
+++ b/drivers/net/wireless/intersil/p54/txrx.c
@@ -317,7 +317,7 @@ static void p54_pspoll_workaround(struct p54_common *priv, struct sk_buff *skb)
tim_len = tim[1];
tim_ie = (struct ieee80211_tim_ie *) &tim[2];
- new_psm = ieee80211_check_tim(tim_ie, tim_len, priv->aid);
+ new_psm = ieee80211_check_tim(tim_ie, tim_len, priv->aid, false);
if (new_psm != priv->powersave_override) {
priv->powersave_override = new_psm;
p54_set_ps(priv);
diff --git a/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c b/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c
index 7db29e90eb4f9..f8a6f9c968a1e 100644
--- a/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c
+++ b/drivers/net/wireless/ralink/rt2x00/rt2x00dev.c
@@ -679,7 +679,7 @@ static void rt2x00lib_rxdone_check_ps(struct rt2x00_dev *rt2x00dev,
/* Check whenever the PHY can be turned off again. */
/* 1. What about buffered unicast traffic for our AID? */
- cam = ieee80211_check_tim(tim_ie, tim_len, rt2x00dev->aid);
+ cam = ieee80211_check_tim(tim_ie, tim_len, rt2x00dev->aid, false);
/* 2. Maybe the AP wants to send multicast/broadcast data? */
cam |= (tim_ie->bitmap_ctrl & 0x01);
diff --git a/drivers/net/wireless/realtek/rtlwifi/ps.c b/drivers/net/wireless/realtek/rtlwifi/ps.c
index 6241e4fed4f64..bcab12c3b4c15 100644
--- a/drivers/net/wireless/realtek/rtlwifi/ps.c
+++ b/drivers/net/wireless/realtek/rtlwifi/ps.c
@@ -519,7 +519,7 @@ void rtl_swlps_beacon(struct ieee80211_hw *hw, void *data, unsigned int len)
/* 1. What about buffered unicast traffic for our AID? */
u_buffed = ieee80211_check_tim(tim_ie, tim_len,
- rtlpriv->mac80211.assoc_id);
+ rtlpriv->mac80211.assoc_id, false);
/* 2. Maybe the AP wants to send multicast/broadcast data? */
m_buffed = tim_ie->bitmap_ctrl & 0x01;
diff --git a/include/linux/ieee80211.h b/include/linux/ieee80211.h
index e5a2096e022ef..d350263f23f32 100644
--- a/include/linux/ieee80211.h
+++ b/include/linux/ieee80211.h
@@ -220,6 +220,12 @@ static inline u16 ieee80211_sn_sub(u16 sn1, u16 sn2)
#define IEEE80211_MAX_AID_S1G 8191
#define IEEE80211_MAX_TIM_LEN 251
#define IEEE80211_MAX_MESH_PEERINGS 63
+
+/* S1G encoding types */
+#define IEEE80211_S1G_TIM_ENC_MODE_BLOCK 0
+#define IEEE80211_S1G_TIM_ENC_MODE_SINGLE 1
+#define IEEE80211_S1G_TIM_ENC_MODE_OLB 2
+
/* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
6.2.1.1.2.
@@ -4757,15 +4763,8 @@ static inline unsigned long ieee80211_tu_to_usec(unsigned long tu)
return 1024 * tu;
}
-/**
- * ieee80211_check_tim - check if AID bit is set in TIM
- * @tim: the TIM IE
- * @tim_len: length of the TIM IE
- * @aid: the AID to look for
- * Return: whether or not traffic is indicated in the TIM for the given AID
- */
-static inline bool ieee80211_check_tim(const struct ieee80211_tim_ie *tim,
- u8 tim_len, u16 aid)
+static inline bool __ieee80211_check_tim(const struct ieee80211_tim_ie *tim,
+ u8 tim_len, u16 aid)
{
u8 mask;
u8 index, indexn1, indexn2;
@@ -4788,6 +4787,254 @@ static inline bool ieee80211_check_tim(const struct ieee80211_tim_ie *tim,
return !!(tim->virtual_map[index] & mask);
}
+struct s1g_tim_aid {
+ u16 aid;
+ u8 target_blk; /* Target block index */
+ u8 target_subblk; /* Target subblock index */
+ u8 target_subblk_bit; /* Target subblock bit */
+};
+
+struct s1g_tim_enc_block {
+ u8 enc_mode;
+ bool inverse;
+ const u8 *ptr;
+ u8 len;
+
+ /*
+ * For an OLB encoded block that spans multiple blocks, this
+ * is the offset into the span described by that encoded block.
+ */
+ u8 olb_blk_offset;
+};
+
+/*
+ * Helper routines to quickly extract the length of an encoded block. Validation
+ * is also performed to ensure the length extracted lies within the TIM.
+ */
+
+static inline int ieee80211_s1g_len_bitmap(const u8 *ptr, const u8 *end)
+{
+ u8 blkmap;
+ u8 n_subblks;
+
+ if (ptr >= end)
+ return -EINVAL;
+
+ blkmap = *ptr;
+ n_subblks = hweight8(blkmap);
+
+ if (ptr + 1 + n_subblks > end)
+ return -EINVAL;
+
+ return 1 + n_subblks;
+}
+
+static inline int ieee80211_s1g_len_single(const u8 *ptr, const u8 *end)
+{
+ return (ptr + 1 > end) ? -EINVAL : 1;
+}
+
+static inline int ieee80211_s1g_len_olb(const u8 *ptr, const u8 *end)
+{
+ if (ptr >= end)
+ return -EINVAL;
+
+ return (ptr + 1 + *ptr > end) ? -EINVAL : 1 + *ptr;
+}
+
+/*
+ * Enumerate all encoded blocks until we find the encoded block that describes
+ * our target AID. OLB is a special case as a single encoded block can describe
+ * multiple blocks as a single encoded block.
+ */
+static inline int ieee80211_s1g_find_target_block(struct s1g_tim_enc_block *enc,
+ const struct s1g_tim_aid *aid,
+ const u8 *ptr, const u8 *end)
+{
+ /* need at least block-control octet */
+ while (ptr + 1 <= end) {
+ u8 ctrl = *ptr++;
+ u8 mode = ctrl & 0x03;
+ bool contains, inverse = ctrl & BIT(2);
+ u8 span, blk_off = ctrl >> 3;
+ int len;
+
+ switch (mode) {
+ case IEEE80211_S1G_TIM_ENC_MODE_BLOCK:
+ len = ieee80211_s1g_len_bitmap(ptr, end);
+ contains = blk_off == aid->target_blk;
+ break;
+ case IEEE80211_S1G_TIM_ENC_MODE_SINGLE:
+ len = ieee80211_s1g_len_single(ptr, end);
+ contains = blk_off == aid->target_blk;
+ break;
+ case IEEE80211_S1G_TIM_ENC_MODE_OLB:
+ len = ieee80211_s1g_len_olb(ptr, end);
+ /*
+ * An OLB encoded block can describe more then one
+ * block, meaning an encoded OLB block can span more
+ * then a single block.
+ */
+ if (len > 0) {
+ /* Minus one for the length octet */
+ span = DIV_ROUND_UP(len - 1, 8);
+ /*
+ * Check if our target block lies within the
+ * block span described by this encoded block.
+ */
+ contains = (aid->target_blk >= blk_off) &&
+ (aid->target_blk < blk_off + span);
+ }
+ break;
+ default:
+ return -EOPNOTSUPP;
+ }
+
+ if (len < 0)
+ return len;
+
+ if (contains) {
+ enc->enc_mode = mode;
+ enc->inverse = inverse;
+ enc->ptr = ptr;
+ enc->len = (u8)len;
+ enc->olb_blk_offset = blk_off;
+ return 0;
+ }
+
+ ptr += len;
+ }
+
+ return -ENOENT;
+}
+
+static inline bool ieee80211_s1g_parse_bitmap(struct s1g_tim_enc_block *enc,
+ struct s1g_tim_aid *aid)
+{
+ const u8 *ptr = enc->ptr;
+ u8 blkmap = *ptr++;
+
+ /*
+ * If our block bitmap does not contain a set bit that corresponds
+ * to our AID, it could mean a variety of things depending on if
+ * the encoding mode is inverted or not.
+ *
+ * 1. If inverted, it means the entire subblock is present and hence
+ * our AID has been set.
+ * 2. If not inverted, it means our subblock is not present and hence
+ * it is all zero meaning our AID is not set.
+ */
+ if (!(blkmap & BIT(aid->target_subblk)))
+ return enc->inverse;
+
+ /*
+ * Increment ptr by the number of set subblocks that appear before our
+ * target subblock. If our target subblock is 0, do nothing as ptr
+ * already points to our target subblock.
+ */
+ if (aid->target_subblk)
+ ptr += hweight8(blkmap & GENMASK(aid->target_subblk - 1, 0));
+
+ return !!(*ptr & BIT(aid->target_subblk_bit)) ^ enc->inverse;
+}
+
+static inline bool ieee80211_s1g_parse_single(struct s1g_tim_enc_block *enc,
+ struct s1g_tim_aid *aid)
+{
+ /*
+ * Single AID mode describes, as the name suggests, a single AID
+ * within the block described by the encoded block. The octet
+ * contains the 6 LSBs of the AID described in the block. The other
+ * 2 bits are reserved. When inversed, every single AID described
+ * by the current block have buffered traffic except for the AID
+ * described in the single AID octet.
+ */
+ return ((*enc->ptr & 0x3f) == (aid->aid & 0x3f)) ^ enc->inverse;
+}
+
+static inline bool ieee80211_s1g_parse_olb(struct s1g_tim_enc_block *enc,
+ struct s1g_tim_aid *aid)
+{
+ const u8 *ptr = enc->ptr;
+ u8 blk_len = *ptr++;
+ /*
+ * Given an OLB encoded block that describes multiple blocks,
+ * calculate the offset into the span. Then calculate the
+ * subblock location normally.
+ */
+ u16 span_offset = aid->target_blk - enc->olb_blk_offset;
+ u16 subblk_idx = span_offset * 8 + aid->target_subblk;
+
+ if (subblk_idx >= blk_len)
+ return enc->inverse;
+
+ return !!(ptr[subblk_idx] & BIT(aid->target_subblk_bit)) ^ enc->inverse;
+}
+
+/*
+ * An S1G PVB has 3 non optional encoding types, each that can be inverted.
+ * An S1G PVB is constructed with zero or more encoded block subfields. Each
+ * encoded block represents a single "block" of AIDs (64), and each encoded
+ * block can contain one of the 3 encoding types alongside a single bit for
+ * whether the bits should be inverted.
+ *
+ * As the standard makes no guarantee about the ordering of encoded blocks,
+ * we must parse every encoded block in the worst case scenario given an
+ * AID that lies within the last block.
+ */
+static inline bool ieee80211_s1g_check_tim(const struct ieee80211_tim_ie *tim,
+ u8 tim_len, u16 aid)
+{
+ int err;
+ struct s1g_tim_aid target_aid;
+ struct s1g_tim_enc_block enc_blk;
+
+ if (tim_len < 3)
+ return false;
+
+ target_aid.aid = aid;
+ target_aid.target_blk = (aid >> 6) & 0x1f;
+ target_aid.target_subblk = (aid >> 3) & 0x7;
+ target_aid.target_subblk_bit = aid & 0x7;
+
+ /*
+ * Find our AIDs target encoded block and fill &enc_blk with the
+ * encoded blocks information. If no entry is found or an error
+ * occurs return false.
+ */
+ err = ieee80211_s1g_find_target_block(&enc_blk, &target_aid,
+ tim->virtual_map,
+ (const u8 *)tim + tim_len + 2);
+ if (err)
+ return false;
+
+ switch (enc_blk.enc_mode) {
+ case IEEE80211_S1G_TIM_ENC_MODE_BLOCK:
+ return ieee80211_s1g_parse_bitmap(&enc_blk, &target_aid);
+ case IEEE80211_S1G_TIM_ENC_MODE_SINGLE:
+ return ieee80211_s1g_parse_single(&enc_blk, &target_aid);
+ case IEEE80211_S1G_TIM_ENC_MODE_OLB:
+ return ieee80211_s1g_parse_olb(&enc_blk, &target_aid);
+ default:
+ return false;
+ }
+}
+
+/**
+ * ieee80211_check_tim - check if AID bit is set in TIM
+ * @tim: the TIM IE
+ * @tim_len: length of the TIM IE
+ * @aid: the AID to look for
+ * @s1g: whether the TIM is from an S1G PPDU
+ * Return: whether or not traffic is indicated in the TIM for the given AID
+ */
+static inline bool ieee80211_check_tim(const struct ieee80211_tim_ie *tim,
+ u8 tim_len, u16 aid, bool s1g)
+{
+ return s1g ? ieee80211_s1g_check_tim(tim, tim_len, aid) :
+ __ieee80211_check_tim(tim, tim_len, aid);
+}
+
/**
* ieee80211_get_tdls_action - get TDLS action code
* @skb: the skb containing the frame, length will not be checked
diff --git a/net/mac80211/mesh_ps.c b/net/mac80211/mesh_ps.c
index 20e022a03933e..ebab1f0a01388 100644
--- a/net/mac80211/mesh_ps.c
+++ b/net/mac80211/mesh_ps.c
@@ -586,7 +586,7 @@ void ieee80211_mps_frame_release(struct sta_info *sta,
if (sta->mesh->plink_state == NL80211_PLINK_ESTAB)
has_buffered = ieee80211_check_tim(elems->tim, elems->tim_len,
- sta->mesh->aid);
+ sta->mesh->aid, false);
if (has_buffered)
mps_dbg(sta->sdata, "%pM indicates buffered frames\n",
diff --git a/net/mac80211/mlme.c b/net/mac80211/mlme.c
index f38881b927d17..b0575604ce71c 100644
--- a/net/mac80211/mlme.c
+++ b/net/mac80211/mlme.c
@@ -7443,7 +7443,8 @@ static void ieee80211_rx_mgmt_beacon(struct ieee80211_link_data *link,
ncrc = elems->crc;
if (ieee80211_hw_check(&local->hw, PS_NULLFUNC_STACK) &&
- ieee80211_check_tim(elems->tim, elems->tim_len, vif_cfg->aid)) {
+ ieee80211_check_tim(elems->tim, elems->tim_len, vif_cfg->aid,
+ vif_cfg->s1g)) {
if (local->hw.conf.dynamic_ps_timeout > 0) {
if (local->hw.conf.flags & IEEE80211_CONF_PS) {
local->hw.conf.flags &= ~IEEE80211_CONF_PS;
--
2.51.0
next prev parent reply other threads:[~2025-10-25 16:14 UTC|newest]
Thread overview: 500+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-25 15:53 [PATCH AUTOSEL 6.17] serial: qcom-geni: Add DFS clock mode support to GENI UART driver Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] wifi: mt76: improve phy reset on hw restart Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.1] net: phy: fixed_phy: let fixed_phy_unregister free the phy_device Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] media: nxp: imx8-isi: Fix streaming cleanup on release Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.12] Bluetooth: btusb: Add new VID/PID 13d3/3633 for MT7922 Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] drm/panel-edp: Add SHP LQ134Z1 panel for Dell XPS 9345 Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17] drm/msm/a6xx: Switch to GMU AO counter Sasha Levin
2025-10-25 15:53 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Add AVI infoframe copy in copy_stream_update_to_stream Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Update tiled to tiled copy command Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] net: intel: fm10k: Fix parameter idx set but not used Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] dmaengine: idxd: Add a new IAA device ID for Wildcat Lake family platforms Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] ASoC: SOF: ipc4-pcm: Add fixup for channels Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: wait for otg update pending latch before clock optimization Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] iommu/vt-d: Remove LPIG from page group response descriptor Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: skip mgpu fan boost for multi-vf Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] fbcon: Use screen info to find primary device Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe/pcode: Initialize data0 for pcode read routine Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/msm/registers: Generate _HI/LO builders for reg64 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs: return ENOMEM if less than requested pages were pinned Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] ALSA: usb-audio: apply quirk for MOONDROP Quark2 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] allow finish_no_open(file, ERR_PTR(-E...)) Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] amd/amdkfd: enhance kfd process check in switch partition Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] scsi: lpfc: Define size of debugfs entry for xri rebalancing Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] iio: adc: ad7124: do not require mclk Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe: improve dma-resv handling for backup object Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] f2fs: fix infinite loop in __insert_extent_tree() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: fix nullptr err of vm_handle_moved Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.10] drm/bridge: display-connector: don't set OP_DETECT for DisplayPorts Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] wifi: iwlwifi: mld: trigger mlo scan only when not in EMLSR Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Keep PLL0 running on DCE 6.0 and 6.4 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] scsi: ufs: ufs-qcom: Disable lane clocks during phy hibern8 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: fix dmub access race condition Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.10] eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Fix pbn_div Calculation Error Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] ASoC: es8323: remove DAC enablement write from es8323_probe Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] usb: xhci-pci: add support for hosts with zero USB3 ports Sasha Levin
2025-10-25 16:47 ` Michal Pecio
2025-11-04 13:46 ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] ipv6: np->rxpmtu race annotation Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] selftests: pci_endpoint: Skip IRQ test if IRQ is out of range Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Correct info field of bad page threshold exceed CPER Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: don't enable SMU on cyan skillfish Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] extcon: axp288: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] net: stmmac: Correctly handle Rx checksum offload errors Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: Set def_wcid pointer in mt7996_mac_sta_init_link() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] rpmsg: char: Export alias for RPMSG ID rpmsg-raw from table Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu/atom: Check kcalloc() for WS buffer in amdgpu_atom_execute_table_locked() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] PCI/ERR: Update device error_state already after reset Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] PCI: imx6: Enable the Vaux supply if available Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] ASoC: ops: improve snd_soc_get_volsw Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/msm/dpu: Filter modes based on adjusted mode clock Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.1] selftests: net: replace sleeps in fcnal-test with waits Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] crypto: ccp - Fix incorrect payload size calculation in psp_poulate_hsti() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs/gaudi2: fix BMON disable configuration Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe: Extend wa_13012615864 to additional Xe2 and Xe3 platforms Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: danube: add missing device_type in pci node Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Only validate format in querystd Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] tty: serial: Modify the use of dev_err_probe() Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] powerpc/eeh: Use result of error_detected() in uevent Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amd/display: Cache streams targeting link when performing LT automation Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] selftests/net: Replace non-standard __WORDSIZE with sizeof(long) * 8 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.15] ALSA: seq: Fix KCSAN data-race warning at snd_seq_fifo_poll_wait() Sasha Levin
2025-11-06 8:49 ` Barry K. Nathan
2025-11-06 14:30 ` Sasha Levin
2025-11-06 23:57 ` Barry K. Nathan
2025-11-07 14:38 ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Update IPID value for bad page threshold CPER Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] ASoC: mediatek: Use SND_JACK_AVOUT for HDMI/DP jacks Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-5.4] net: macb: avoid dealing with endianness in macb_set_hwaddr() Sasha Levin
2025-11-01 9:01 ` Théo Lebrun
2025-11-01 19:18 ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] char: misc: Make misc_register() reentry for miscdevice who wants dynamic minor Sasha Levin
2025-10-26 20:20 ` Thadeu Lima de Souza Cascardo
2025-11-04 13:48 ` Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] selftests: drv-net: wait for carrier Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17] drm/xe/ptl: Apply Wa_16026007364 Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/amdgpu: Release xcp drm memory after unplug Sasha Levin
2025-10-25 15:54 ` [PATCH AUTOSEL 6.17-6.6] media: ov08x40: Fix the horizontal flip control Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] eth: fbnic: Reset hw stats upon PCI error Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] bnxt_en: Add Hyper-V VF ID Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] ASoC: pxa: add GPIOLIB_LEGACY dependency Sasha Levin
2025-10-27 9:23 ` Arnd Bergmann
2025-11-04 13:48 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] fuse: zero initialize inode private data Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe: Set GT as wedged before sending wedged uevent Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] vfio/nvgrace-gpu: Add GB300 SKU to the devid table Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] ksmbd: use sock_create_kern interface to create kernel socket Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs: support mapping cb with vmalloc-backed coherent memory Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] crypto: sun8i-ce - remove channel timeout field Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: fix dml ms order of operations Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] selftests/net: Ensure assert() triggers in psock_tpacket.c Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] Bluetooth: ISO: Don't initiate CIS connections if there are no buffers Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] wifi: mt76: mt7996: Temporarily disable EPCS Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] iio: adc: imx93_adc: load calibrated values even calibration failed Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] x86/vsyscall: Do not require X86_PF_INSTR to emulate vsyscall Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] crypto: caam - double the entropy delay interval for retry Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] platform/x86/intel-uncore-freq: Fix warning in partitioned system Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] PCI: Set up bridge resources earlier Sasha Levin
2025-10-27 12:39 ` Ilpo Järvinen
2025-11-04 13:51 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: Allow kfd CRIU with no buffer objects Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.10] wifi: ath10k: Fix connection after GTK rekeying Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: renew a completion for each H2C command waiting C2H event Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] docs: kernel-doc: avoid script crash on ancient Python Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe/i2c: Enable bus mastering Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] scsi: ufs: core: Change MCQ interrupt enable flow Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] orangefs: fix xattr related buffer overflow Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] net: When removing nexthops, don't call synchronize_net if it is not necessary Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] netlink: specs: fou: change local-v6/peer-v6 check Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/panel: ilitek-ili9881c: turn off power-supply when init fails Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] idpf: do not linearize big TSO packets Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] remoteproc: wkup_m3: Use devm_pm_runtime_enable() helper Sasha Levin
2025-10-25 15:55 ` Sasha Levin [this message]
2025-10-25 18:36 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: support parsing S1G TIM PVB Johannes Berg
2025-10-26 3:23 ` Lachlan Hodges
2025-11-04 13:52 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] wifi: ath12k: Increase DP_REO_CMD_RING_SIZE to 256 Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] smsc911x: add second read of EEPROM mac when possible corruption seen Sasha Levin
2025-10-28 12:53 ` Colin Foster
2025-11-04 13:55 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: Respect max pixel clock for HDMI and DVI-D (v2) Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] wifi: rtw89: disable RTW89_PHYSTS_IE09_FTR_0 for ppdu status Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: update dpp/disp clock from smu clock table Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.4] net: sh_eth: Disable WoL if system can not suspend Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Fix invalid access in vccqx handling Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: Add fast sync field in ultra sleep more for DMUB Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] bnxt_en: Add fw log trace support for 5731X/5741X chips Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: Fix 6 GHz Band capabilities element advertisement in lower bands Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amdgpu: refactor bad_page_work for corner case handling Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] ethernet: Extend device_get_mac_address() to use NVMEM Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] ASoC: tas2781: Add keyword "init" in profile section Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] can: rcar_canfd: Update bit rate constants for RZ/G3E and R-Car Gen4 Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] drm: panel-backlight-quirks: Make EDID match optional Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.1] s390/pci: Use pci_uevent_ers() in PCI recovery Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] media: em28xx: add special case for legacy gpiolib interface Sasha Levin
2025-10-27 9:24 ` Arnd Bergmann
2025-11-04 13:55 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/xe/configfs: Enforce canonical device names Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] wifi: rtw89: add dummy C2H handlers for BCN resend and update done Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-6.12] HID: pidff: PERMISSIVE_CONTROL quirk autodetection Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Release hive reference properly Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: Fix dmub_cmd header alignment Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/amd/display: dont wait for pipe update during medupdate/highirq Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] ntfs3: pretend $Extend records as regular files Sasha Levin
2025-10-26 8:12 ` Tetsuo Handa
2025-11-04 13:56 ` Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.10] udp_tunnel: use netdev_warn() instead of netdev_WARN() Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17-5.15] drm/msm: make sure to not queue up recovery more than once Sasha Levin
2025-10-25 15:55 ` [PATCH AUTOSEL 6.17] drm/st7571-i2c: add support for inverted pixel format Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/panthor: Serialize GPU cache flush operations Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] platform/x86: think-lmi: Add extra TC BIOS error messages Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] serdev: Drop dev_pm_domain_detach() call Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] crypto: hisilicon/qm - clear all VF configurations in the hardware Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] drm/msm/dsi/phy_7nm: Fix missing initial VCO rate Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftests: drv-net: devmem: add / correct the IPv6 support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Change reset sequence for improved stability Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] hwrng: timeriomem - Use us_to_ktime() where appropriate Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] tcp: Update bind bucket state on port release Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/xe: Extend Wa_22021007897 to Xe3 platforms Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] openrisc: Add R_OR1K_32_PCREL relocation type module support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/nouveau: always set RMDevidCheckIgnore for GSP-RM Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] net: ethernet: microchip: sparx5: make it selectable for ARCH_LAN969X Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] scsi: mpi3mr: Fix controller init failure on fault during queue creation Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] accel/habanalabs/gaudi2: read preboot status after recovering from dirty state Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/xe: Cancel pending TLB inval workers on teardown Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] drm/msm/dsi/phy: Toggle back buffer resync after preparing PLL Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] PCI: Disable MSI on RDC PCI to PCIe bridges Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Disable auto-hibern8 during power mode changes Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] PCI/PM: Skip resuming to D0 if device is disconnected Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Increase AUX Intra-Hop Done Max Wait Duration Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Do not write format to device in set_fmt Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] net: Call trace_sock_exceed_buf_limit() for memcg failure with SK_MEM_RECV Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Clean up allocated queues when queue setup mbox commands fail Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] Bluetooth: btintel_pcie: Define hdev->wakeup() callback Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] ALSA: usb-audio: add mono main switch to Presonus S1824c Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] tty/vt: Add missing return value for VT_RESIZE in vt_ioctl() Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] net: bridge: Install FDB for bridge MAC on VLAN 0 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] Fix access to video_is_primary_device() when compiled without CONFIG_VIDEO Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Support HW cursor 180 rot for any number of pipe splits Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Avoid jpeg v5.0.1 poison irq call trace on sriov guest Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] drm/amd/display: Set up pixel encoding for YCBCR422 Sasha Levin
2025-10-25 18:24 ` Mario Limonciello
2025-11-04 14:13 ` Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] char: misc: Does not request module for miscdevice with dynamic minor Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.10] drm/amd/pm: Use cached metrics data on arcturus Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] drm/nouveau: replace snprintf() with scnprintf() in nvkm_snprintbf() Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] char: Use list_del_init() in misc_deregister() to reinitialize list pointer Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftest: net: Fix error message if empty variable Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] media: imx-mipi-csis: Only set clock rate when specified in DT Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] scsi: ufs: ufs-qcom: Align programming sequence of Shared ICE for UFS controller v5 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: danube: add missing properties to cpu node Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] wifi: mt76: mt76_eeprom_override to int Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Effective health check before reset Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display/dml2: Guard dml21_map_dc_state_into_dml_display_cfg with DC_FP_START Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] HID: pidff: Use direction fix only for conditional effects Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] ASoC: es8323: add proper left/right mixer controls via DAPM Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] dm error: mark as DM_TARGET_PASSES_INTEGRITY Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add fenced regwrite support Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.6] ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] wifi: mac80211: Get the correct interface for non-netdev skb status Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix vcn v5.0.1 poison irq call trace Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_ncm: Fix MAC assignment NCM ethernet Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] net: phy: dp83640: improve phydev and driver removal handling Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] drm/tidss: Remove early fb Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.1] ice: Don't use %pK through printk or tracepoints Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: disable promiscuous mode by default Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: incorrect conditions for failing dto calculations Sasha Levin
2025-10-25 15:56 ` [PATCH AUTOSEL 6.17] selftests: ncdevmem: don't retry EFAULT Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amd/pm: refine amdgpu pm sysfs node error code Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] IB/ipoib: Ignore L3 master device Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] selftests: Disable dad for ipv6 in fcnal-test.sh Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Skip poison aca bank from UE channel Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Wait until OTG enable state is cleared Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] wifi: rtw89: coex: Limit Wi-Fi scan slot cost to avoid A2DP glitch Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] PCI: endpoint: pci-epf-test: Limit PCIe BAR size for fixed BARs Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] net: phy: clear link parameters on admin link down Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] ima: don't clear IMA_DIGSIG flag when setting or removing non-IMA xattr Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] net: call cond_resched() less often in __release_sock() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Increase GuC crash dump buffer size Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: iwlwifi: fw: Add ASUS to PPAG and TAS list Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Init dispclk from bootup clock for DCN314 Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] net: Prevent RPS table overwrite of active flows Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: set SIFCTR register Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] drm/amd/display: add more cyan skillfish devices Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: codecs: wsa883x: Handle shared reset GPIO for WSA883x speakers Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amdgpu/vpe: cancel delayed work in hw_fini Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Fix PWM mode switch issue Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] platform/x86/amd/pmf: Fix the custom bios input handling mechanism Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/wcl: Extend L3bank mask workaround Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Set upper limit of H2G retries over CTB Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: fix BSSID comparison for non-transmitted BSSID Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Increase minimum clock for TMDS 420 with pipe splitting Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] wifi: mac80211: Fix HE capabilities element check Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Enhance recovery on hibernation exit failure Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] bus: mhi: host: pci_generic: Add support for all Foxconn T99W696 SKU variants Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.10] iommu/amd: Skip enabling command/event buffers for kdump Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] remoteproc: qcom: q6v5: Avoid handling handover twice Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] netfilter: nf_tables: all transaction allocations can now sleep Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] media: qcom: camss: csiphy-3ph: Add CSIPHY 2ph DPHY v2.0.1 init sequence Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] wifi: mt76: mt7996: fix memory leak on mt7996_mcu_sta_key_tlv error Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] NFSv4.1: fix mount hang after CREATE_SESSION failure Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] extcon: fsa9480: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.10] r8169: set EEE speed down ratio to 1 Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: mv_xor: match alloc_wc and free_wc Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe: Make page size consistent in loop Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] rds: Fix endianness annotation for RDS_MPATH_HASH Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] jfs: fix uninitialized waitqueue in transaction manager Sasha Levin
2025-10-25 16:19 ` syzbot
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] crypto: hisilicon/qm - invalidate queues in use Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.15] drm/amd/pm: Use cached metrics data on aldebaran Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] virtio_fs: fix the hash table using in virtio_fs_enqueue_req() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: stmmac: est: Drop frames causing HLBS error Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: ipv4: allow directed broadcast routes to use dst hint Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/guc: Add devm release action to safely tear down CT Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] media: redrat3: use int type to store negative error codes Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] net: dsa: felix: support phy-mode = "10g-qxgmii" Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.6] phy: renesas: r8a779f0-ether-serdes: add new step added to latest datasheet Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] wifi: mac80211: count reg connection element in the size Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] idpf: link NAPIs to queues Sasha Levin
2025-10-27 15:19 ` Alexander Lobakin
2025-10-28 17:50 ` Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/xe/pf: Program LMTT directory pointer on all GTs within a tile Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] drm/panthor: check bo offset alignment in vm bind Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: use reset controller Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] sparc: Replace __ASSEMBLY__ with __ASSEMBLER__ in uapi headers Sasha Levin
2025-10-27 8:09 ` Andreas Larsson
2025-11-04 14:14 ` Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] jfs: Verify inode mode when loading from disk Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Add fallback to pipe reset if KCQ ring reset fails Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.4] net: ipv6: fix field-spanning memcpy warning in AH output Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-5.15] scsi: libfc: Fix potential buffer overflow in fc_ct_ms_fill() Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: exynos: fsd: Gate ref_clk and put UFS device in reset on suspend Sasha Levin
2025-10-25 15:57 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: reject gang submissions under SRIOV Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7925: add pci restore for hibernate Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: rtw89: Add USB ID 2001:3327 for D-Link AX18U rev. A1 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] iio: light: isl29125: Use iio_push_to_buffers_with_ts() to allow source size runtime check Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] net: mana: Reduce waiting time if HWC not responding Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] drm/amd: Avoid evicting resources at S5 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] drm/amdgpu/jpeg: Hold pg_lock before jpeg poweroff Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Check vcn sram load return value Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Indicate when custom brightness curves are in use Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: change dc stream color settings only in atomic commit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/sharp-memory: Do not access GEM-DMA vaddr directly Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] drm/bridge: cdns-dsi: Don't fail on MIPI_DSI_MODE_VIDEO_BURST Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] gpu: nova-core: register: allow fields named `offset` Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] selftests: drv-net: devmem: flip the direction of Tx tests Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] misc: pci_endpoint_test: Skip IRQ tests if irq is out of range Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ALSA: serial-generic: remove shared static buffer Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] fs: ext4: change GFP_KERNEL to GFP_NOFS to avoid deadlock Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] media: i2c: Kconfig: Ensure a dependency on HAVE_CLK for VIDEO_CAMERA_SENSOR Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] net: dsa: microchip: Set SPI as bus interface during reset for KSZ8463 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] drm/amdkfd: Handle lack of READ permissions in SVM mapping Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/xe/guc: Always add CT disable action during second init step Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] crypto: ccp: Skip SEV and SNP INIT for kdump boot Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] exfat: validate cluster allocation bits of the allocation bitmap Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.10] scsi: pm80xx: Fix race condition caused by static variables Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] media: pci: ivtv: Don't create fake v4l2_fh Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/bridge: write full Audio InfoFrame Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] scsi: ufs: host: mediatek: Fix adapt issue after PA_Init Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Add missing post flip calls Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] net/mlx5e: Prevent entering switchdev mode with inconsistent netns Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] wifi: rtw88: sdio: use indirect IO for device registers before power-on Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Remove check DPIA HPD status for BW Allocation Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: core: Disable timestamp functionality if not supported Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] usb: xhci: plat: Facilitate using autosuspend for xhci plat devices Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] microchip: lan865x: add ndo_eth_ioctl handler to enable PHY ioctl support Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amdgpu: validate userq input args Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/pm: Increase SMC timeout on SI and warn (v3) Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] x86/kexec: Disable kexec/kdump on platforms with TDX partial write erratum Sasha Levin
2025-10-26 22:24 ` Huang, Kai
2025-11-03 9:26 ` Huang, Kai
2025-11-04 14:46 ` Sasha Levin
2025-11-04 21:27 ` Huang, Kai
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] Octeontx2-af: Broadcast XON on all channels Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] media: imon: make send_packet() more robust Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] wifi: iwlwifi: pcie: remember when interrupts are disabled Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.15] thunderbolt: Use is_pciehp instead of is_hotplug_bridge Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Assign power mode userdata before FASTAUTO mode change Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amdgpu: add to custom amdgpu_drm_release drm_dev_enter/exit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Fix DMCUB loading sequence for DCN3.2 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] ixgbe: reduce number of reads when getting OROM data Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/amd/display: Don't use non-registered VUPDATE on DCE 6 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.15] media: adv7180: Add missing lock in suspend callback Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] drm/xe/pf: Don't resume device from restart worker Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] sparc64: fix prototypes of reads[bwl]() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17] hinic3: Queue pair endianness improvements Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] ext4: increase IO priority of fastcommit Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] tcp: use dst_dev_rcu() in tcp_fastopen_active_disable_ofo_check() Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.6] HID: i2c-hid: Resolve touchpad issues on Dell systems during S4 Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-5.4] Bluetooth: bcsp: receive data only if registered Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.1] mips: lantiq: danube: rename stp node on EASY50712 reference board Sasha Levin
2025-10-25 15:58 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Fix for test crash due to power gating Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] selftests: net: lib.sh: Don't defer failed commands Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ptp_ocp: make ptp_ocp driver compatible with PTP_EXTTS_REQUEST2 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_fs: Fix epfile null pointer access after ep enable Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] media: verisilicon: Explicitly disable selection api ioctls for decoders Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] accel/amdxdna: Unify pm and rpm suspend and resume callbacks Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: wow: remove notify during WoWLAN net-detect Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] f2fs: fix to detect potential corrupted nid in free_nid_list Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add speedbins for A663 GPU Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ovl: make sure that ovl_create_real() returns a hashed dentry Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: cfg80211: update the time stamps in hidden ssid Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] Bluetooth: btusb: Add new VID/PID 13d3/3627 for MT7925 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iommu/amd: Reuse device table for kdump Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] selftests: traceroute: Use require_command() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: add range check for RAS bad page address Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iio: imu: bmi270: Match PNP ID found on newer GPD firmware Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] drm/amdgpu: add support for cyan skillfish gpu_info Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] tty: serial: ip22zilog: Use platform device for probing Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] drm/amdgpu: Use memdup_array_user in amdgpu_cs_wait_fences_ioctl Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: print just once for unknown C2H events Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] x86/virt/tdx: Mark memory cache state incoherent when making SEAMCALL Sasha Levin
2025-10-26 22:25 ` Huang, Kai
2025-10-28 17:49 ` Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: es8323: enable DAPM power widgets for playback DAC and output Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] media: pci: mgb4: Fix timings comparison in VIDIOC_S_DV_TIMINGS Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] net: stmmac: Check stmmac_hw_setup() in stmmac_resume() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] PCI: cadence: Check for the existence of cdns_pcie::ops before using it Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Correct the counts of nr_banks and nr_errors Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] usb: gadget: f_hid: Fix zero length packet transfer Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Fix DVI-D/HDMI adapters Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] extcon: adc-jack: Fix wakeup source leaks on device unbind Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Avoid vcn v5.0.1 poison irq call trace on sriov guest Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] ipv6: Add sanity checks on ipv6_devconf.rpl_seg_enabled Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: rtw89: Add USB ID 2001:332a for D-Link AX9U rev. A1 Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Return an error code if the GuC load fails Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/xe: Ensure GT is in C0 during resumes Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Notify pmfw bad page threshold exceeded Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: add .symmetric_xxx on snd_soc_dai_driver Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/xe: rework PDE PAT index selection Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] iommu/vt-d: Replace snprintf with scnprintf in dmar_latency_snapshot() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] f2fs: fix wrong layout information on 16KB page Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] amd/amdkfd: resolve a race in amdgpu_amdkfd_device_fini_sw Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] crypto: qat - use kcalloc() in qat_uclo_map_objs_from_mof() Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] dt-bindings: display/msm/gmu: Update Adreno 623 bindings Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] net/mlx5e: Don't query FEC statistics when FEC is disabled Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: ensure committing streams is seamless Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] drm/amdgpu: Avoid rma causes GPU duplicate reset Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] RDMA/mana_ib: Drain send wrs of GSI QP Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/amdgpu: validate userq buffer virtual address and size Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] media: fix uninitialized symbol warnings Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: support writing MAC TXD for AddBA Request Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.10] drm/tidss: Use the crtc_* timings when programming the HW Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] watchdog: s3c2410_wdt: Fix max_timeout being calculated larger Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.15] drm/tidss: Set crtc modesetting parameters with adjusted mode Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] drm/msm: Use of_reserved_mem_region_to_resource() for "memory-region" Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.6] iommu/apple-dart: Clear stream error indicator bits for T8110 DARTs Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] vfio/pci: Fix INTx handling on legacy non-PCI 2.3 devices Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] media: ipu6: isys: Set embedded data type correctly for metadata formats Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.12] scsi: mpi3mr: Fix I/O failures during controller reset Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] iommu/amd: Add support to remap/unmap IOMMU buffers for kdump Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17] ASoC: renesas: msiof: tidyup DMAC stop timing Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-6.1] media: i2c: og01a1b: Specify monochrome media bus format instead of Bayer Sasha Levin
2025-10-25 15:59 ` [PATCH AUTOSEL 6.17-5.4] NFSv4: handle ERR_GRACE on delegation recalls Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] mei: make a local copy of client uuid in connect Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] media: amphion: Delete v4l2_fh synchronously in .release() Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amd/display: Consider sink max slice width limitation for dsc Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/panel: ilitek-ili9881c: move display_on/_off dcs calls to (un-)prepare Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] x86/virt/tdx: Use precalculated TDVPR page physical address Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] scsi: mpi3mr: Fix device loss during enclosure reboot due to zero link speed Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Ensure PLOGI_ACC is sent prior to PRLI in Point to Point topology Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] vfio: return -ENOTTY for unsupported device feature Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] iio: adc: spear_adc: mask SPEAR_ADC_STATUS channel and avg sample before setting register Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] mips: lantiq: danube: add model to EASY50712 dts Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] bng_en: make bnge_alloc_ring() self-unwind on failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ionic: use int type for err in ionic_get_module_eeprom_by_page Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] drm/amdkfd: return -ENOTTY for unsupported IOCTLs Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] page_pool: Clamp pool size to max 16K pages Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] selftests: drv-net: hds: restore hds settings Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: dw-edma: Set status for callback_result Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] ftrace: Fix softlockup in ftrace_module_enable Sasha Levin
2025-10-25 19:25 ` Steven Rostedt
2025-10-28 17:48 ` Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: traceroute: Return correct value on failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] bridge: Redirect to backup port when port is administratively down Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] scsi: ufs: host: mediatek: Fix auto-hibern8 timer configuration Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/msm: Fix 32b size truncation Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Fix unbalanced IRQ enable issue Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] net: devmem: expose tcp_recvmsg_locked errors Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] platform/x86/intel-uncore-freq: Present unique domain ID per package Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] ASoC: stm32: sai: manage context in set_sysclk callback Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: drv-net: rss_ctx: fix the queue count check Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] net: phy: clear EEE runtime state in PHY_HALTED/PHY_ERROR Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: mptcp: join: allow more time to send ADD_ADDR Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.15] RDMA/irdma: Update Kconfig Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Correct the loss of aca bank reg info Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] net: phy: mscc: report and configure in-band auto-negotiation for SGMII/QSGMII Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] scsi: ufs: host: mediatek: Enhance recovery on resume failure Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] ACPI: scan: Update honor list for RPMI System MSI Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] smb: client: transport: avoid reconnects triggered by pending task work Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] drm/amdkfd: fix vram allocation failure for a special case Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Initialize jpeg v5_0_1 ras function Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] wifi: rtw89: obtain RX path from ppdu status IE00 Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ASoC: Intel: avs: Do not share the name pointer between components Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] phy: cadence: cdns-dphy: Enable lower resolutions in dphy Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] drm/amdkfd: Tie UNMAP_LATENCY to queue_preemption Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.1] scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] wifi: mt76: use altx queue for offchannel tx on connac+ Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.6] drm/amd/display: Disable VRR on DCE 6 Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.10] exfat: limit log print for IO error Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: drv-net: rss_ctx: make the test pass with few queues Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix build error when CONFIG_SUSPEND is disabled Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] wifi: mac80211: Track NAN interface start/stop Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] scsi: lpfc: Decrement ndlp kref after FDISC retries exhausted Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] smb: client: update cfid->last_access_time in open_cached_dir_by_dentry() Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] bus: mhi: core: Improve mhi_sync_power_up handling for SYS_ERR state Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.10] net: phy: marvell: Fix 88e1510 downshift counter errata Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] selftests: forwarding: Reorder (ar)ping arguments to obey POSIX getopt Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-6.12] net: wangxun: limit tx_max_coalesced_frames_irq Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] selftests: net: make the dump test less sensitive to mem accounting Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] ALSA: usb-audio: don't apply interface quirk to Presonus S1824c Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.4] net: nfc: nci: Increase NCI_DATA_TIMEOUT to 3000 ms Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] hinic3: Fix missing napi->dev in netif_queue_set_napi Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] platform/x86: x86-android-tablets: Stop using EPROBE_DEFER Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17-5.15] drm/amd: add more cyan skillfish PCI ids Sasha Levin
2025-10-25 16:00 ` [PATCH AUTOSEL 6.17] PCI/AER: Fix NULL pointer access by aer_info Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] phy: rockchip: phy-rockchip-inno-csidphy: allow writes to grf register 0 Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/amdgpu: Fix fence signaling race condition in userqueue Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] selftests: Replace sleep with slowwait Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.10] ALSA: usb-audio: Add validation of UAC2/UAC3 effect units Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] scsi: pm8001: Use int instead of u32 to store error codes Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] PCI: dwc: Verify the single eDMA IRQ in dw_pcie_edma_irq_verify() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: fix condition for setting timing_adjust_pending Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] Bluetooth: btintel: Add support for BlazarIW core Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] wifi: mt76: mt7996: Fix mt7996_reverse_frag0_hdr_trans for MLO Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] netfilter: nf_reject: don't reply to icmp error messages Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/gpusvm: fix hmm_pfn_to_map_order() usage Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] Bluetooth: ISO: Use sk_sndtimeo as conn_timeout Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] dmaengine: sh: setup_xref error handling Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] drm/msm/adreno: Add speedbin data for A623 GPU Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] move_mount(2): take sanity checks in 'beneath' case into do_lock_mount() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] scsi: ufs: host: mediatek: Correct system PM flow Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/xe/guc: Add more GuC load error status codes Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] tools: ynl-gen: validate nested arrays Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] Bluetooth: SCO: Fix UAF on sco_conn_free Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.1] 6pack: drop redundant locking and refcounting Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Reset apply_eamless_boot_optimization when dpms_off Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] drm/bridge: cdns-dsi: Fix REG_WAKEUP_TIME value Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] mips: lantiq: xway: sysctrl: rename stp clock Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] eeprom: at25: support Cypress FRAMs without device ID Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] sparc/module: Add R_SPARC_UA64 relocation handling Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/xe: Fix oops in xe_gem_fault when running core_hotunplug test Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.6] HID: asus: add Z13 folio to generic group for multitouch to work Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] inet_diag: annotate data-races in inet_diag_bc_sk() Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17] wifi: rtw89: 8851b: rfk: update IQK TIA setting Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] page_pool: always add GFP_NOWARN for ATOMIC allocations Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.4] net/cls_cgroup: Fix task_get_classid() during qdisc run Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-5.15] ptp: Limit time setting of PTP clocks Sasha Levin
2025-10-25 16:01 ` [PATCH AUTOSEL 6.17-6.12] drm/amd/display: Move setup_stream_attribute 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=20251025160905.3857885-99-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=alexander.deucher@amd.com \
--cc=alexandre.f.demers@gmail.com \
--cc=arien.judge@morsemicro.com \
--cc=bhelgaas@google.com \
--cc=chunkeey@googlemail.com \
--cc=johannes.berg@intel.com \
--cc=johannes@sipsolutions.net \
--cc=lachlan.hodges@morsemicro.com \
--cc=linux-wireless@vger.kernel.org \
--cc=namcao@linutronix.de \
--cc=patches@lists.linux.dev \
--cc=pkshih@realtek.com \
--cc=stable@vger.kernel.org \
--cc=tglx@linutronix.de \
/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;
as well as URLs for NNTP newsgroup(s).