From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Ping-Ke Shih <pkshih@realtek.com>,
Kalle Valo <kvalo@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.8 008/143] wifi: rtw89: pci: validate RX tag for RXQ and RPQ
Date: Thu, 11 Apr 2024 11:54:36 +0200 [thread overview]
Message-ID: <20240411095421.160393990@linuxfoundation.org> (raw)
In-Reply-To: <20240411095420.903937140@linuxfoundation.org>
6.8-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ping-Ke Shih <pkshih@realtek.com>
[ Upstream commit 0bc7d1d4e63cf31ff1b4396b0e2f0e3c76828d26 ]
PCI RX ring is a kind of read/write index ring, and DMA and ring index are
asynchronous, so suddenly driver gets newer index ahead before DMA. To
resolve this rare situation, we use a RX tag as helpers to make sure DMA
is done.
The RX tag is a 13-bit value, and range is from 1 ~ 0x1FFF, but 0 isn't
used so should be skipped.
Only enable this validation to coming WiFi 7 chips, because existing
chips use different design and don't really meet this situation.
Add missed rx_ring_eq_is_full for 8851BE by the way.
Signed-off-by: Ping-Ke Shih <pkshih@realtek.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://msgid.link/20240121071826.10159-4-pkshih@realtek.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/net/wireless/realtek/rtw89/pci.c | 60 +++++++++++++++++--
drivers/net/wireless/realtek/rtw89/pci.h | 4 +-
.../net/wireless/realtek/rtw89/rtw8851be.c | 2 +
.../net/wireless/realtek/rtw89/rtw8852ae.c | 1 +
.../net/wireless/realtek/rtw89/rtw8852be.c | 1 +
.../net/wireless/realtek/rtw89/rtw8852ce.c | 1 +
.../net/wireless/realtek/rtw89/rtw8922ae.c | 1 +
7 files changed, 63 insertions(+), 7 deletions(-)
diff --git a/drivers/net/wireless/realtek/rtw89/pci.c b/drivers/net/wireless/realtek/rtw89/pci.c
index 769f1ce62ebcc..cb03474f81552 100644
--- a/drivers/net/wireless/realtek/rtw89/pci.c
+++ b/drivers/net/wireless/realtek/rtw89/pci.c
@@ -155,8 +155,8 @@ static void rtw89_pci_sync_skb_for_device(struct rtw89_dev *rtwdev,
DMA_FROM_DEVICE);
}
-static int rtw89_pci_rxbd_info_update(struct rtw89_dev *rtwdev,
- struct sk_buff *skb)
+static void rtw89_pci_rxbd_info_update(struct rtw89_dev *rtwdev,
+ struct sk_buff *skb)
{
struct rtw89_pci_rxbd_info *rxbd_info;
struct rtw89_pci_rx_info *rx_info = RTW89_PCI_RX_SKB_CB(skb);
@@ -166,10 +166,58 @@ static int rtw89_pci_rxbd_info_update(struct rtw89_dev *rtwdev,
rx_info->ls = le32_get_bits(rxbd_info->dword, RTW89_PCI_RXBD_LS);
rx_info->len = le32_get_bits(rxbd_info->dword, RTW89_PCI_RXBD_WRITE_SIZE);
rx_info->tag = le32_get_bits(rxbd_info->dword, RTW89_PCI_RXBD_TAG);
+}
+
+static int rtw89_pci_validate_rx_tag(struct rtw89_dev *rtwdev,
+ struct rtw89_pci_rx_ring *rx_ring,
+ struct sk_buff *skb)
+{
+ struct rtw89_pci_rx_info *rx_info = RTW89_PCI_RX_SKB_CB(skb);
+ const struct rtw89_pci_info *info = rtwdev->pci_info;
+ u32 target_rx_tag;
+
+ if (!info->check_rx_tag)
+ return 0;
+
+ /* valid range is 1 ~ 0x1FFF */
+ if (rx_ring->target_rx_tag == 0)
+ target_rx_tag = 1;
+ else
+ target_rx_tag = rx_ring->target_rx_tag;
+
+ if (rx_info->tag != target_rx_tag) {
+ rtw89_debug(rtwdev, RTW89_DBG_UNEXP, "mismatch RX tag 0x%x 0x%x\n",
+ rx_info->tag, target_rx_tag);
+ return -EAGAIN;
+ }
return 0;
}
+static
+int rtw89_pci_sync_skb_for_device_and_validate_rx_info(struct rtw89_dev *rtwdev,
+ struct rtw89_pci_rx_ring *rx_ring,
+ struct sk_buff *skb)
+{
+ struct rtw89_pci_rx_info *rx_info = RTW89_PCI_RX_SKB_CB(skb);
+ int rx_tag_retry = 100;
+ int ret;
+
+ do {
+ rtw89_pci_sync_skb_for_cpu(rtwdev, skb);
+ rtw89_pci_rxbd_info_update(rtwdev, skb);
+
+ ret = rtw89_pci_validate_rx_tag(rtwdev, rx_ring, skb);
+ if (ret != -EAGAIN)
+ break;
+ } while (rx_tag_retry--);
+
+ /* update target rx_tag for next RX */
+ rx_ring->target_rx_tag = rx_info->tag + 1;
+
+ return ret;
+}
+
static void rtw89_pci_ctrl_txdma_ch_pcie(struct rtw89_dev *rtwdev, bool enable)
{
const struct rtw89_pci_info *info = rtwdev->pci_info;
@@ -259,9 +307,8 @@ static u32 rtw89_pci_rxbd_deliver_skbs(struct rtw89_dev *rtwdev,
skb_idx = rtw89_pci_get_rx_skb_idx(rtwdev, bd_ring);
skb = rx_ring->buf[skb_idx];
- rtw89_pci_sync_skb_for_cpu(rtwdev, skb);
- ret = rtw89_pci_rxbd_info_update(rtwdev, skb);
+ ret = rtw89_pci_sync_skb_for_device_and_validate_rx_info(rtwdev, rx_ring, skb);
if (ret) {
rtw89_err(rtwdev, "failed to update %d RXBD info: %d\n",
bd_ring->wp, ret);
@@ -549,9 +596,8 @@ static u32 rtw89_pci_release_tx_skbs(struct rtw89_dev *rtwdev,
skb_idx = rtw89_pci_get_rx_skb_idx(rtwdev, bd_ring);
skb = rx_ring->buf[skb_idx];
- rtw89_pci_sync_skb_for_cpu(rtwdev, skb);
- ret = rtw89_pci_rxbd_info_update(rtwdev, skb);
+ ret = rtw89_pci_sync_skb_for_device_and_validate_rx_info(rtwdev, rx_ring, skb);
if (ret) {
rtw89_err(rtwdev, "failed to update %d RXBD info: %d\n",
bd_ring->wp, ret);
@@ -1550,6 +1596,7 @@ static void rtw89_pci_reset_trx_rings(struct rtw89_dev *rtwdev)
bd_ring->rp = 0;
rx_ring->diliver_skb = NULL;
rx_ring->diliver_desc.ready = false;
+ rx_ring->target_rx_tag = 0;
rtw89_write16(rtwdev, addr_num, bd_ring->len);
rtw89_write32(rtwdev, addr_desa_l, bd_ring->dma);
@@ -3148,6 +3195,7 @@ static int rtw89_pci_alloc_rx_ring(struct rtw89_dev *rtwdev,
rx_ring->buf_sz = buf_sz;
rx_ring->diliver_skb = NULL;
rx_ring->diliver_desc.ready = false;
+ rx_ring->target_rx_tag = 0;
for (i = 0; i < len; i++) {
skb = dev_alloc_skb(buf_sz);
diff --git a/drivers/net/wireless/realtek/rtw89/pci.h b/drivers/net/wireless/realtek/rtw89/pci.h
index ca5de77fee90a..83a36358504f4 100644
--- a/drivers/net/wireless/realtek/rtw89/pci.h
+++ b/drivers/net/wireless/realtek/rtw89/pci.h
@@ -1234,6 +1234,7 @@ struct rtw89_pci_info {
enum mac_ax_pcie_func_ctrl io_rcy_en;
enum mac_ax_io_rcy_tmr io_rcy_tmr;
bool rx_ring_eq_is_full;
+ bool check_rx_tag;
u32 init_cfg_reg;
u32 txhci_en_bit;
@@ -1276,7 +1277,7 @@ struct rtw89_pci_tx_data {
struct rtw89_pci_rx_info {
dma_addr_t dma;
- u32 fs:1, ls:1, tag:11, len:14;
+ u32 fs:1, ls:1, tag:13, len:14;
};
#define RTW89_PCI_TXBD_OPTION_LS BIT(14)
@@ -1405,6 +1406,7 @@ struct rtw89_pci_rx_ring {
u32 buf_sz;
struct sk_buff *diliver_skb;
struct rtw89_rx_desc_info diliver_desc;
+ u32 target_rx_tag:13;
};
struct rtw89_pci_isrs {
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8851be.c b/drivers/net/wireless/realtek/rtw89/rtw8851be.c
index ade69bd30fc86..ca1374a717272 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8851be.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8851be.c
@@ -25,6 +25,8 @@ static const struct rtw89_pci_info rtw8851b_pci_info = {
.autok_en = MAC_AX_PCIE_DISABLE,
.io_rcy_en = MAC_AX_PCIE_DISABLE,
.io_rcy_tmr = MAC_AX_IO_RCY_ANA_TMR_6MS,
+ .rx_ring_eq_is_full = false,
+ .check_rx_tag = false,
.init_cfg_reg = R_AX_PCIE_INIT_CFG1,
.txhci_en_bit = B_AX_TXHCI_EN,
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852ae.c b/drivers/net/wireless/realtek/rtw89/rtw8852ae.c
index f1e890bde0499..7c6ffedb77e27 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852ae.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852ae.c
@@ -26,6 +26,7 @@ static const struct rtw89_pci_info rtw8852a_pci_info = {
.io_rcy_en = MAC_AX_PCIE_DISABLE,
.io_rcy_tmr = MAC_AX_IO_RCY_ANA_TMR_6MS,
.rx_ring_eq_is_full = false,
+ .check_rx_tag = false,
.init_cfg_reg = R_AX_PCIE_INIT_CFG1,
.txhci_en_bit = B_AX_TXHCI_EN,
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852be.c b/drivers/net/wireless/realtek/rtw89/rtw8852be.c
index 920b20bbcfb73..ed71364e6437b 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852be.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852be.c
@@ -26,6 +26,7 @@ static const struct rtw89_pci_info rtw8852b_pci_info = {
.io_rcy_en = MAC_AX_PCIE_DISABLE,
.io_rcy_tmr = MAC_AX_IO_RCY_ANA_TMR_6MS,
.rx_ring_eq_is_full = false,
+ .check_rx_tag = false,
.init_cfg_reg = R_AX_PCIE_INIT_CFG1,
.txhci_en_bit = B_AX_TXHCI_EN,
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8852ce.c b/drivers/net/wireless/realtek/rtw89/rtw8852ce.c
index 4592de3dbd942..583ea673a4f54 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8852ce.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8852ce.c
@@ -35,6 +35,7 @@ static const struct rtw89_pci_info rtw8852c_pci_info = {
.io_rcy_en = MAC_AX_PCIE_ENABLE,
.io_rcy_tmr = MAC_AX_IO_RCY_ANA_TMR_6MS,
.rx_ring_eq_is_full = false,
+ .check_rx_tag = false,
.init_cfg_reg = R_AX_HAXI_INIT_CFG1,
.txhci_en_bit = B_AX_TXHCI_EN_V1,
diff --git a/drivers/net/wireless/realtek/rtw89/rtw8922ae.c b/drivers/net/wireless/realtek/rtw89/rtw8922ae.c
index 7b3d98d2c402c..9f46fb1661055 100644
--- a/drivers/net/wireless/realtek/rtw89/rtw8922ae.c
+++ b/drivers/net/wireless/realtek/rtw89/rtw8922ae.c
@@ -26,6 +26,7 @@ static const struct rtw89_pci_info rtw8922a_pci_info = {
.io_rcy_en = MAC_AX_PCIE_ENABLE,
.io_rcy_tmr = MAC_AX_IO_RCY_ANA_TMR_DEF,
.rx_ring_eq_is_full = true,
+ .check_rx_tag = true,
.init_cfg_reg = R_BE_HAXI_INIT_CFG1,
.txhci_en_bit = B_BE_TXDMA_EN,
--
2.43.0
next prev parent reply other threads:[~2024-04-11 10:07 UTC|newest]
Thread overview: 155+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-11 9:54 [PATCH 6.8 000/143] 6.8.6-rc1 review Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 001/143] wifi: ath9k: fix LNA selection in ath_ant_try_scan() Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 002/143] wifi: rtw89: fix null pointer access when abort scan Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 003/143] bnx2x: Fix firmware version string character counts Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 004/143] batman-adv: Return directly after a failed batadv_dat_select_candidates() in batadv_dat_forward_data() Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 005/143] batman-adv: Improve exception handling in batadv_throw_uevent() Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 006/143] net: stmmac: dwmac-starfive: Add support for JH7100 SoC Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 007/143] net: phy: phy_device: Prevent nullptr exceptions on ISR Greg Kroah-Hartman
2024-04-11 9:54 ` Greg Kroah-Hartman [this message]
2024-04-11 9:54 ` [PATCH 6.8 009/143] wifi: rtw89: pci: enlarge RX DMA buffer to consider size of RX descriptor Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 010/143] VMCI: Fix memcpy() run-time warning in dg_dispatch_as_host() Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 011/143] wifi: iwlwifi: pcie: Add the PCI device id for new hardware Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 012/143] arm64: dts: qcom: qcm6490-idp: Add definition for three LEDs Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 013/143] net: dsa: qca8k: put MDIO controller OF node if unavailable Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 014/143] arm64: dts: qcom: qrb2210-rb1: disable cluster power domains Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 015/143] printk: For @suppress_panic_printk check for other CPU in panic Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 016/143] panic: Flush kernel log buffer at the end Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 017/143] dump_stack: Do not get cpu_sync for panic CPU Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 018/143] wifi: iwlwifi: pcie: Add new PCI device id and CNVI Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 019/143] cpuidle: Avoid potential overflow in integer multiplication Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 020/143] ARM: dts: rockchip: fix rk3288 hdmi ports node Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 021/143] ARM: dts: rockchip: fix rk322x " Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 022/143] arm64: dts: rockchip: fix rk3328 " Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 023/143] arm64: dts: rockchip: fix rk3399 " Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 024/143] net: add netdev_lockdep_set_classes() to virtual drivers Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 025/143] arm64: dts: qcom: qcs6490-rb3gen2: Declare GCC clocks protected Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 026/143] pmdomain: ti: Add a null pointer check to the omap_prm_domain_init Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 027/143] pmdomain: imx8mp-blk-ctrl: imx8mp_blk: Add fdcc clock to hdmimix domain Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 028/143] ACPI: resource: Add IRQ override quirk for ASUS ExpertBook B2502FBA Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 029/143] ionic: set adminq irq affinity Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 030/143] net: skbuff: add overflow debug check to pull/push helpers Greg Kroah-Hartman
2024-04-11 9:54 ` [PATCH 6.8 031/143] firmware: tegra: bpmp: Return directly after a failed kzalloc() in get_filename() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 032/143] wifi: brcmfmac: Add DMI nvram filename quirk for ACEPC W5 Pro Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 033/143] wifi: mt76: mt7915: add locking for accessing mapped registers Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 034/143] wifi: mt76: mt7996: disable AMSDU for non-data frames Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 035/143] wifi: mt76: mt7996: add locking for accessing mapped registers Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 036/143] ACPI: x86: Move acpi_quirk_skip_serdev_enumeration() out of CONFIG_X86_ANDROID_TABLETS Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 037/143] ACPI: x86: Add DELL0501 handling to acpi_quirk_skip_serdev_enumeration() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 038/143] pstore/zone: Add a null pointer check to the psz_kmsg_read Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 039/143] tools/power x86_energy_perf_policy: Fix file leak in get_pkg_num() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 040/143] net: pcs: xpcs: Return EINVAL in the internal methods Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 041/143] dma-direct: Leak pages on dma_set_decrypted() failure Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 042/143] wifi: ath11k: decrease MHI channel buffer length to 8KB Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 043/143] iommu/arm-smmu-v3: Hold arm_smmu_asid_lock during all of attach_dev Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 044/143] cpufreq: Dont unregister cpufreq cooling on CPU hotplug Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 045/143] overflow: Allow non-type arg to type_max() and type_min() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 046/143] wifi: iwlwifi: Add missing MODULE_FIRMWARE() for *.pnvm Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 047/143] wifi: cfg80211: check A-MSDU format more carefully Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 048/143] btrfs: handle chunk tree lookup error in btrfs_relocate_sys_chunks() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 049/143] btrfs: export: handle invalid inode or root reference in btrfs_get_parent() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 050/143] btrfs: send: handle path ref underflow in header iterate_inode_ref() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 051/143] ice: use relative VSI index for VFs instead of PF VSI number Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 052/143] net/smc: reduce rtnl pressure in smc_pnet_create_pnetids_list() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 053/143] netdev: let netlink core handle -EMSGSIZE errors Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 054/143] Bluetooth: btintel: Fix null ptr deref in btintel_read_version Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 055/143] Bluetooth: btmtk: Add MODULE_FIRMWARE() for MT7922 Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 056/143] Bluetooth: Add new quirk for broken read key length on ATS2851 Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 057/143] drm/vc4: dont check if plane->state->fb == state->fb Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 058/143] drm/ci: uprev mesa version: fix kdl commit fetch Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 059/143] drm/amdgpu: Skip do PCI error slot reset during RAS recovery Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 060/143] Input: synaptics-rmi4 - fail probing if memory allocation for "phys" fails Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 061/143] drm: panel-orientation-quirks: Add quirk for GPD Win Mini Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 062/143] ASoC: SOF: amd: Optimize quirk for Valve Galileo Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 063/143] drm/ttm: return ENOSPC from ttm_bo_mem_space v3 Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 064/143] scsi: ufs: qcom: Avoid re-init quirk when gears match Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 065/143] drm/amd/display: increased min_dcfclk_mhz and min_fclk_mhz Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 066/143] pinctrl: renesas: checker: Limit cfg reg enum checks to provided IDs Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 067/143] sysv: dont call sb_bread() with pointers_lock held Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 068/143] scsi: lpfc: Fix possible memory leak in lpfc_rcv_padisc() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 069/143] drm/amd/display: Disable idle reallow as part of command/gpint execution Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 070/143] isofs: handle CDs with bad root inode but good Joliet root directory Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 071/143] ASoC: Intel: sof_rt5682: dmi quirk cleanup for mtl boards Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 072/143] ASoC: Intel: common: DMI remap for rebranded Intel NUC M15 (LAPRC710) laptops Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 073/143] rcu/nocb: Fix WARN_ON_ONCE() in the rcu_nocb_bypass_lock() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 074/143] rcu-tasks: Repair RCU Tasks Trace quiescence check Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 075/143] Julia Lawall reported this null pointer dereference, this should fix it Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 076/143] media: sta2x11: fix irq handler cast Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 077/143] ALSA: firewire-lib: handle quirk to calculate payload quadlets as data block counter Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 078/143] drm/panel: simple: Add BOE BP082WX1-100 8.2" panel Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 079/143] x86/vdso: Fix rethunk patching for vdso-image-{32,64}.o Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 080/143] ASoC: Intel: avs: Populate board selection with new I2S entries Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 081/143] ext4: add a hint for block bitmap corrupt state in mb_groups Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 082/143] ext4: forbid commit inconsistent quota data when errors=remount-ro Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 083/143] drm/amd/display: Fix nanosec stat overflow Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 084/143] accel/habanalabs: increase HL_MAX_STR to 64 bytes to avoid warnings Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 085/143] i2c: designware: Fix RX FIFO depth define on Wangxun 10Gb NIC Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 086/143] HID: input: avoid polling stylus battery on Chromebook Pompom Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 087/143] drm/amd/amdgpu: Fix potential ioremap() memory leaks in amdgpu_device_init() Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 088/143] drm: Check output polling initialized before disabling Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 089/143] SUNRPC: increase size of rpc_wait_queue.qlen from unsigned short to unsigned int Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 090/143] PCI: Disable D3cold on Asus B1400 PCI-NVMe bridge Greg Kroah-Hartman
2024-04-11 9:55 ` [PATCH 6.8 091/143] Revert "ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default" Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 092/143] libperf evlist: Avoid out-of-bounds access Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 093/143] crypto: iaa - Fix async_disable descriptor leak Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 094/143] input/touchscreen: imagis: Correct the maximum touch area value Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 095/143] drivers/perf: hisi: Enable HiSilicon Erratum 162700402 quirk for HIP09 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 096/143] block: prevent division by zero in blk_rq_stat_sum() Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 097/143] RDMA/cm: add timeout to cm_destroy_id wait Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 098/143] Input: imagis - use FIELD_GET where applicable Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 099/143] Input: allocate keycode for Display refresh rate toggle Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 100/143] platform/x86: acer-wmi: Add support for Acer PH16-71 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 101/143] platform/x86: acer-wmi: Add predator_v4 module parameter Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 102/143] platform/x86: touchscreen_dmi: Add an extra entry for a variant of the Chuwi Vi8 tablet Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 103/143] perf/x86/amd/lbr: Discard erroneous branch entries Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 104/143] ALSA: hda/realtek: Add quirk for Lenovo Yoga 9 14IMH9 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 105/143] ktest: force $buildonly = 1 for make_warnings_file test type Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 106/143] Input: xpad - add support for Snakebyte GAMEPADs Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 107/143] ring-buffer: use READ_ONCE() to read cpu_buffer->commit_page in concurrent environment Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 108/143] tools: iio: replace seekdir() in iio_generic_buffer Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 109/143] bus: mhi: host: Add MHI_PM_SYS_ERR_FAIL state Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 110/143] kernfs: RCU protect kernfs_nodes and avoid kernfs_idr_lock in kernfs_find_and_get_node_by_id() Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 111/143] usb: typec: ucsi: Add qcm6490-pmic-glink as needing PDOS quirk Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 112/143] thunderbolt: Calculate DisplayPort tunnel bandwidth after DPRX capabilities read Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 113/143] usb: gadget: uvc: refactor the check for a valid buffer in the pump worker Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 114/143] usb: gadget: uvc: mark incomplete frames with UVC_STREAM_ERR Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 115/143] usb: typec: ucsi: Limit read size on v1.2 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 116/143] serial: 8250_of: Drop quirk fot NPCM from 8250_port Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 117/143] thunderbolt: Keep the domain powered when USB4 port is in redrive mode Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 118/143] usb: typec: tcpci: add generic tcpci fallback compatible Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 119/143] usb: sl811-hcd: only defined function checkdone if QUIRK2 is defined Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 120/143] ASoC: amd: yc: Fix non-functional mic on ASUS M7600RE Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 121/143] thermal/of: Assume polling-delay(-passive) 0 when absent Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 122/143] ASoC: soc-core.c: Skip dummy codec when adding platforms Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 123/143] x86/xen: attempt to inflate the memory balloon on PVH Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 124/143] fbdev: viafb: fix typo in hw_bitblt_1 and hw_bitblt_2 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 125/143] io_uring: clear opcode specific data for an early failure Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 126/143] modpost: fix null pointer dereference Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 127/143] drivers/nvme: Add quirks for device 126f:2262 Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 128/143] fbmon: prevent division by zero in fb_videomode_from_videomode() Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 129/143] ALSA: hda/realtek: Add quirks for some Clevo laptops Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 130/143] drm/amdgpu: Init zone device and drm client after mode-1 reset on reload Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 131/143] gcc-plugins/stackleak: Avoid .head.text section Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 132/143] media: mediatek: vcodec: Fix oops when HEVC init fails Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 133/143] media: mediatek: vcodec: adding lock to protect decoder context list Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 134/143] media: mediatek: vcodec: adding lock to protect encoder " Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 135/143] randomize_kstack: Improve entropy diffusion Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 136/143] platform/x86/intel/hid: Dont wake on 5-button releases Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 137/143] platform/x86: intel-vbtn: Update tablet mode switch at end of probe Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 138/143] nouveau: fix devinit paths to only handle display on GSP Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 139/143] Bluetooth: btintel: Fixe build regression Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 140/143] net: mpls: error out if inner headers are not set Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 141/143] VMCI: Fix possible memcpy() run-time warning in vmci_datagram_invoke_guest_handler() Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 142/143] x86/vdso: Fix rethunk patching for vdso-image-x32.o too Greg Kroah-Hartman
2024-04-11 9:56 ` [PATCH 6.8 143/143] Revert "drm/amd/amdgpu: Fix potential ioremap() memory leaks in amdgpu_device_init()" Greg Kroah-Hartman
2024-04-11 15:38 ` [PATCH 6.8 000/143] 6.8.6-rc1 review Justin Forbes
2024-04-11 18:17 ` SeongJae Park
2024-04-11 19:34 ` Holger Hoffstätte
2024-04-12 8:26 ` Greg Kroah-Hartman
2024-04-11 20:36 ` Ronald Warsow
2024-04-11 22:07 ` Florian Fainelli
2024-04-11 23:38 ` Shuah Khan
2024-04-12 1:32 ` Bagas Sanjaya
2024-04-12 7:19 ` Ron Economos
2024-04-12 8:08 ` Jon Hunter
2024-04-12 18:21 ` Naresh Kamboju
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=20240411095421.160393990@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=kvalo@kernel.org \
--cc=patches@lists.linux.dev \
--cc=pkshih@realtek.com \
--cc=sashal@kernel.org \
--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