From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Jerome Brunet <jbrunet@baylibre.com>,
Jon Mason <jdmason@kudzu.us>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 314/529] NTB: epf: Allow arbitrary BAR mapping
Date: Fri, 21 Nov 2025 14:10:13 +0100 [thread overview]
Message-ID: <20251121130242.198000281@linuxfoundation.org> (raw)
In-Reply-To: <20251121130230.985163914@linuxfoundation.org>
6.6-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jerome Brunet <jbrunet@baylibre.com>
[ Upstream commit 5ad865862a0fd349163243e1834ed98ba9b81905 ]
The NTB epf host driver assumes the BAR number associated with a memory
window is just incremented from the BAR number associated with MW1. This
seems to have been enough so far but this is not really how the endpoint
side work and the two could easily become mis-aligned.
ntb_epf_mw_to_bar() even assumes that the BAR number is the memory window
index + 2, which means the function only returns a proper result if BAR_2
is associated with MW1.
Instead, fully describe and allow arbitrary NTB BAR mapping.
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
Signed-off-by: Jon Mason <jdmason@kudzu.us>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/ntb/hw/epf/ntb_hw_epf.c | 103 ++++++++++++++++----------------
1 file changed, 53 insertions(+), 50 deletions(-)
diff --git a/drivers/ntb/hw/epf/ntb_hw_epf.c b/drivers/ntb/hw/epf/ntb_hw_epf.c
index b640aa0bf45e6..5e79cfce8649c 100644
--- a/drivers/ntb/hw/epf/ntb_hw_epf.c
+++ b/drivers/ntb/hw/epf/ntb_hw_epf.c
@@ -49,6 +49,7 @@
#define NTB_EPF_COMMAND_TIMEOUT 1000 /* 1 Sec */
enum pci_barno {
+ NO_BAR = -1,
BAR_0,
BAR_1,
BAR_2,
@@ -57,16 +58,26 @@ enum pci_barno {
BAR_5,
};
+enum epf_ntb_bar {
+ BAR_CONFIG,
+ BAR_PEER_SPAD,
+ BAR_DB,
+ BAR_MW1,
+ BAR_MW2,
+ BAR_MW3,
+ BAR_MW4,
+ NTB_BAR_NUM,
+};
+
+#define NTB_EPF_MAX_MW_COUNT (NTB_BAR_NUM - BAR_MW1)
+
struct ntb_epf_dev {
struct ntb_dev ntb;
struct device *dev;
/* Mutex to protect providing commands to NTB EPF */
struct mutex cmd_lock;
- enum pci_barno ctrl_reg_bar;
- enum pci_barno peer_spad_reg_bar;
- enum pci_barno db_reg_bar;
- enum pci_barno mw_bar;
+ const enum pci_barno *barno_map;
unsigned int mw_count;
unsigned int spad_count;
@@ -85,17 +96,6 @@ struct ntb_epf_dev {
#define ntb_ndev(__ntb) container_of(__ntb, struct ntb_epf_dev, ntb)
-struct ntb_epf_data {
- /* BAR that contains both control region and self spad region */
- enum pci_barno ctrl_reg_bar;
- /* BAR that contains peer spad region */
- enum pci_barno peer_spad_reg_bar;
- /* BAR that contains Doorbell region and Memory window '1' */
- enum pci_barno db_reg_bar;
- /* BAR that contains memory windows*/
- enum pci_barno mw_bar;
-};
-
static int ntb_epf_send_command(struct ntb_epf_dev *ndev, u32 command,
u32 argument)
{
@@ -144,7 +144,7 @@ static int ntb_epf_mw_to_bar(struct ntb_epf_dev *ndev, int idx)
return -EINVAL;
}
- return idx + 2;
+ return ndev->barno_map[BAR_MW1 + idx];
}
static int ntb_epf_mw_count(struct ntb_dev *ntb, int pidx)
@@ -413,7 +413,9 @@ static int ntb_epf_mw_set_trans(struct ntb_dev *ntb, int pidx, int idx,
return -EINVAL;
}
- bar = idx + ndev->mw_bar;
+ bar = ntb_epf_mw_to_bar(ndev, idx);
+ if (bar < 0)
+ return bar;
mw_size = pci_resource_len(ntb->pdev, bar);
@@ -455,7 +457,9 @@ static int ntb_epf_peer_mw_get_addr(struct ntb_dev *ntb, int idx,
if (idx == 0)
offset = readl(ndev->ctrl_reg + NTB_EPF_MW1_OFFSET);
- bar = idx + ndev->mw_bar;
+ bar = ntb_epf_mw_to_bar(ndev, idx);
+ if (bar < 0)
+ return bar;
if (base)
*base = pci_resource_start(ndev->ntb.pdev, bar) + offset;
@@ -560,6 +564,11 @@ static int ntb_epf_init_dev(struct ntb_epf_dev *ndev)
ndev->mw_count = readl(ndev->ctrl_reg + NTB_EPF_MW_COUNT);
ndev->spad_count = readl(ndev->ctrl_reg + NTB_EPF_SPAD_COUNT);
+ if (ndev->mw_count > NTB_EPF_MAX_MW_COUNT) {
+ dev_err(dev, "Unsupported MW count: %u\n", ndev->mw_count);
+ return -EINVAL;
+ }
+
return 0;
}
@@ -596,14 +605,15 @@ static int ntb_epf_init_pci(struct ntb_epf_dev *ndev,
dev_warn(&pdev->dev, "Cannot DMA highmem\n");
}
- ndev->ctrl_reg = pci_iomap(pdev, ndev->ctrl_reg_bar, 0);
+ ndev->ctrl_reg = pci_iomap(pdev, ndev->barno_map[BAR_CONFIG], 0);
if (!ndev->ctrl_reg) {
ret = -EIO;
goto err_pci_regions;
}
- if (ndev->peer_spad_reg_bar) {
- ndev->peer_spad_reg = pci_iomap(pdev, ndev->peer_spad_reg_bar, 0);
+ if (ndev->barno_map[BAR_PEER_SPAD] != ndev->barno_map[BAR_CONFIG]) {
+ ndev->peer_spad_reg = pci_iomap(pdev,
+ ndev->barno_map[BAR_PEER_SPAD], 0);
if (!ndev->peer_spad_reg) {
ret = -EIO;
goto err_pci_regions;
@@ -614,7 +624,7 @@ static int ntb_epf_init_pci(struct ntb_epf_dev *ndev,
ndev->peer_spad_reg = ndev->ctrl_reg + spad_off + spad_sz;
}
- ndev->db_reg = pci_iomap(pdev, ndev->db_reg_bar, 0);
+ ndev->db_reg = pci_iomap(pdev, ndev->barno_map[BAR_DB], 0);
if (!ndev->db_reg) {
ret = -EIO;
goto err_pci_regions;
@@ -659,12 +669,7 @@ static void ntb_epf_cleanup_isr(struct ntb_epf_dev *ndev)
static int ntb_epf_pci_probe(struct pci_dev *pdev,
const struct pci_device_id *id)
{
- enum pci_barno peer_spad_reg_bar = BAR_1;
- enum pci_barno ctrl_reg_bar = BAR_0;
- enum pci_barno db_reg_bar = BAR_2;
- enum pci_barno mw_bar = BAR_2;
struct device *dev = &pdev->dev;
- struct ntb_epf_data *data;
struct ntb_epf_dev *ndev;
int ret;
@@ -675,18 +680,10 @@ static int ntb_epf_pci_probe(struct pci_dev *pdev,
if (!ndev)
return -ENOMEM;
- data = (struct ntb_epf_data *)id->driver_data;
- if (data) {
- peer_spad_reg_bar = data->peer_spad_reg_bar;
- ctrl_reg_bar = data->ctrl_reg_bar;
- db_reg_bar = data->db_reg_bar;
- mw_bar = data->mw_bar;
- }
+ ndev->barno_map = (const enum pci_barno *)id->driver_data;
+ if (!ndev->barno_map)
+ return -EINVAL;
- ndev->peer_spad_reg_bar = peer_spad_reg_bar;
- ndev->ctrl_reg_bar = ctrl_reg_bar;
- ndev->db_reg_bar = db_reg_bar;
- ndev->mw_bar = mw_bar;
ndev->dev = dev;
ntb_epf_init_struct(ndev, pdev);
@@ -730,30 +727,36 @@ static void ntb_epf_pci_remove(struct pci_dev *pdev)
ntb_epf_deinit_pci(ndev);
}
-static const struct ntb_epf_data j721e_data = {
- .ctrl_reg_bar = BAR_0,
- .peer_spad_reg_bar = BAR_1,
- .db_reg_bar = BAR_2,
- .mw_bar = BAR_2,
+static const enum pci_barno j721e_map[NTB_BAR_NUM] = {
+ [BAR_CONFIG] = BAR_0,
+ [BAR_PEER_SPAD] = BAR_1,
+ [BAR_DB] = BAR_2,
+ [BAR_MW1] = BAR_2,
+ [BAR_MW2] = BAR_3,
+ [BAR_MW3] = BAR_4,
+ [BAR_MW4] = BAR_5
};
-static const struct ntb_epf_data mx8_data = {
- .ctrl_reg_bar = BAR_0,
- .peer_spad_reg_bar = BAR_0,
- .db_reg_bar = BAR_2,
- .mw_bar = BAR_4,
+static const enum pci_barno mx8_map[NTB_BAR_NUM] = {
+ [BAR_CONFIG] = BAR_0,
+ [BAR_PEER_SPAD] = BAR_0,
+ [BAR_DB] = BAR_2,
+ [BAR_MW1] = BAR_4,
+ [BAR_MW2] = BAR_5,
+ [BAR_MW3] = NO_BAR,
+ [BAR_MW4] = NO_BAR
};
static const struct pci_device_id ntb_epf_pci_tbl[] = {
{
PCI_DEVICE(PCI_VENDOR_ID_TI, PCI_DEVICE_ID_TI_J721E),
.class = PCI_CLASS_MEMORY_RAM << 8, .class_mask = 0xffff00,
- .driver_data = (kernel_ulong_t)&j721e_data,
+ .driver_data = (kernel_ulong_t)j721e_map,
},
{
PCI_DEVICE(PCI_VENDOR_ID_FREESCALE, 0x0809),
.class = PCI_CLASS_MEMORY_RAM << 8, .class_mask = 0xffff00,
- .driver_data = (kernel_ulong_t)&mx8_data,
+ .driver_data = (kernel_ulong_t)mx8_map,
},
{ },
};
--
2.51.0
next prev parent reply other threads:[~2025-11-21 13:51 UTC|newest]
Thread overview: 544+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-11-21 13:04 [PATCH 6.6 000/529] 6.6.117-rc1 review Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 001/529] NFSD: Fix crash in nfsd4_read_release() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 002/529] net: usb: asix_devices: Check return value of usbnet_get_endpoints Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 003/529] fbcon: Set fb_display[i]->mode to NULL when the mode is released Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 004/529] fbdev: atyfb: Check if pll_ops->init_pll failed Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 005/529] ACPI: video: Fix use-after-free in acpi_video_switch_brightness() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 006/529] ACPI: button: Call input_free_device() on failing input device registration Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 007/529] fbdev: bitblit: bound-check glyph index in bit_putcs* Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 008/529] Bluetooth: rfcomm: fix modem control handling Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 009/529] wifi: brcmfmac: fix crash while sending Action Frames in standalone AP Mode Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 010/529] fbdev: pvr2fb: Fix leftover reference to ONCHIP_NR_DMA_CHANNELS Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 011/529] fbdev: valkyriefb: Fix reference count leak in valkyriefb_init Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 012/529] mptcp: drop bogus optimization in __mptcp_check_push() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 013/529] mptcp: restore window probe Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 014/529] ASoC: qdsp6: q6asm: do not sleep while atomic Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 015/529] smb: client: fix potential cfid UAF in smb2_query_info_compound Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 016/529] x86/fpu: Ensure XFD state on signal delivery Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 017/529] wifi: ath10k: Fix memory leak on unsupported WMI command Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 018/529] wifi: ath11k: Add missing platform IDs for quirk table Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 019/529] wifi: ath12k: free skb during idr cleanup callback Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 020/529] drm/msm/a6xx: Fix GMU firmware parser Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 021/529] ALSA: usb-audio: fix control pipe direction Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 022/529] bpf: Sync pending IRQ work before freeing ring buffer Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 023/529] scsi: ufs: core: Initialize value of an attribute returned by uic cmd Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 024/529] bpf: Do not audit capability check in do_jit() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 025/529] crypto: aspeed-acry - Convert to platform remove callback returning void Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 026/529] crypto: aspeed - fix double free caused by devm Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 027/529] ASoC: Intel: avs: Unprepare a stream when XRUN occurs Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 028/529] ASoC: fsl_sai: fix bit order for DSD format Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 029/529] libbpf: Fix powerpcs stack register definition in bpf_tracing.h Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 030/529] usbnet: Prevents free active kevent Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 031/529] Bluetooth: hci_sync: fix race in hci_cmd_sync_dequeue_once Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 032/529] Bluetooth: btmtksdio: Add pmctrl handling for BT closed state during reset Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 033/529] Bluetooth: HCI: Fix tracking of advertisement set/instance 0x00 Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 034/529] Bluetooth: ISO: Fix another instance of dst_type handling Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 035/529] Bluetooth: hci_core: Fix tracking of periodic advertisement Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 036/529] drm/etnaviv: fix flush sequence logic Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 037/529] net: hns3: return error code when function fails Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 038/529] sfc: fix potential memory leak in efx_mae_process_mport() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 039/529] drm/amd/pm: fix smu table id bound check issue in smu_cmn_update_table() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 040/529] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Fiji Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 041/529] drm/amd/pm/powerplay/smumgr: Fix PCIeBootLinkLevel value on Iceland Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 042/529] block: fix op_is_zone_mgmt() to handle REQ_OP_ZONE_RESET_ALL Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 043/529] block: make REQ_OP_ZONE_OPEN a write operation Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 044/529] regmap: slimbus: fix bus_context pointer in regmap init calls Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 045/529] drm/mediatek: Fix device use-after-free on unbind Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 046/529] mptcp: fix MSG_PEEK stream corruption Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 047/529] s390/pci: Restore IRQ unconditionally for the zPCI device Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 048/529] cpuidle: governors: menu: Rearrange main loop in menu_select() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 049/529] cpuidle: governors: menu: Select polling state in some more cases Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 050/529] net: phy: dp83867: Disable EEE support as not implemented Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 051/529] sched/pelt: Avoid underestimation of task utilization Greg Kroah-Hartman
2025-11-26 16:57 ` Lukasz Luba
2025-11-21 13:05 ` [PATCH 6.6 052/529] sched/fair: Use all little CPUs for CPU-bound workloads Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 053/529] s390: Disable ARCH_WANT_OPTIMIZE_HUGETLB_VMEMMAP Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 054/529] drm/sched: Fix race in drm_sched_entity_select_rq() Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 055/529] drm/sysfb: Do not dereference NULL pointer in plane reset Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 056/529] s390/pci: Avoid deadlock between PCI error recovery and mlx5 crdump Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 057/529] usb: gadget: f_fs: Fix epfile null pointer access after ep enable Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 058/529] soc: aspeed: socinfo: Add AST27xx silicon IDs Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 059/529] soc: qcom: smem: Fix endian-unaware access of num_entries Greg Kroah-Hartman
2025-11-21 13:05 ` [PATCH 6.6 060/529] spi: loopback-test: Dont use %pK through printk Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 061/529] bpf: " Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 062/529] pinctrl: single: fix bias pull up/down handling in pin_config_set Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 063/529] mmc: host: renesas_sdhi: Fix the actual clock Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 064/529] memstick: Add timeout to prevent indefinite waiting Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 065/529] irqchip/sifive-plic: Respect mask state when setting affinity Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 066/529] selftests/bpf: Fix bpf_prog_detach2 usage in test_lirc_mode2 Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 067/529] cpufreq/longhaul: handle NULL policy in longhaul_exit Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 068/529] arc: Fix __fls() const-foldability via __builtin_clzl() Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 069/529] selftests/bpf: Upon failures, exit with code 1 in test_xsk.sh Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 070/529] irqchip/gic-v2m: Handle Multiple MSI base IRQ Alignment Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 071/529] ACPI: PRM: Skip handlers with NULL handler_address or NULL VA Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 072/529] ACPI: scan: Add Intel CVS ACPI HIDs to acpi_ignore_dep_ids[] Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 073/529] power: supply: qcom_battmgr: add OOI chemistry Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 074/529] hwmon: (k10temp) Add thermal support for AMD Family 1Ah-based models Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 075/529] hwmon: (k10temp) Add device ID for Strix Halo Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 076/529] hwmon: (sbtsi_temp) AMD CPU extended temperature range support Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 077/529] pinctrl: keembay: release allocated memory in detach path Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 078/529] power: supply: sbs-charger: Support multiple devices Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 079/529] hwmon: sy7636a: add alias Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 080/529] irqchip/loongson-pch-lpc: Use legacy domain for PCH-LPC IRQ controller Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 081/529] arm64: zynqmp: Revert usb node drive strength and slew rate for zcu106 Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 082/529] soc/tegra: fuse: Add Tegra114 nvmem cells and fuse lookups Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 083/529] ARM: tegra: transformer-20: add missing magnetometer interrupt Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 084/529] ARM: tegra: transformer-20: fix audio-codec interrupt Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 085/529] mmc: sdhci-msm: Enable tuning for SDR50 mode for SD card Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 086/529] ACPICA: dispatcher: Use acpi_ds_clear_operands() in acpi_ds_call_control_method() Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 087/529] tee: allow a driver to allocate a tee_device without a pool Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 088/529] nvmet-fc: avoid scheduling association deletion twice Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 089/529] nvme-fc: use lock accessing port_state and rport state Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 090/529] bpf: Do not limit bpf_cgroup_from_id to currents namespace Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 091/529] video: backlight: lp855x_bl: Set correct EPROM start for LP8556 Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 092/529] tools/cpupower: fix error return value in cpupower_write_sysfs() Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 093/529] pmdomain: apple: Add "apple,t8103-pmgr-pwrstate" Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 094/529] power: supply: qcom_battmgr: handle charging state change notifications Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 095/529] bpftool: Fix -Wuninitialized-const-pointer warnings with clang >= 21 Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 096/529] cpuidle: Fail cpuidle device registration if there is one already Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 097/529] futex: Dont leak robust_list pointer on exec race Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 098/529] spi: rpc-if: Add resume support for RZ/G3E Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 099/529] clocksource/drivers/vf-pit: Replace raw_readl/writel to readl/writel Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 100/529] blk-cgroup: fix possible deadlock while configuring policy Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 101/529] riscv: bpf: Fix uninitialized symbol retval_off Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 102/529] bpf: Clear pfmemalloc flag when freeing all fragments Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 103/529] nvme: Use non zero KATO for persistent discovery connections Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 104/529] uprobe: Do not emulate/sstep original instruction when ip is changed Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 105/529] hwmon: (asus-ec-sensors) increase timeout for locking ACPI mutex Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 106/529] hwmon: (dell-smm) Add support for Dell OptiPlex 7040 Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 107/529] tools/cpupower: Fix incorrect size in cpuidle_state_disable() Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 108/529] tools/power x86_energy_perf_policy: Fix incorrect fopen mode usage Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 109/529] tools/power x86_energy_perf_policy: Enhance HWP enable Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 110/529] tools/power x86_energy_perf_policy: Prefer driver HWP limits Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 111/529] mfd: stmpe: Remove IRQ domain upon removal Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 112/529] mfd: stmpe-i2c: Add missing MODULE_LICENSE Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 113/529] mfd: madera: Work around false-positive -Wininitialized warning Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 114/529] mfd: da9063: Split chip variant reading in two bus transactions Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 115/529] drm/amd/display: ensure committing streams is seamless Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 116/529] drm/amd/display: Increase AUX Intra-Hop Done Max Wait Duration Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 117/529] drm/amd/display: add more cyan skillfish devices Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 118/529] drm/amd/display: update dpp/disp clock from smu clock table Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 119/529] drm/amd/pm: Use cached metrics data on aldebaran Greg Kroah-Hartman
2025-11-21 13:06 ` [PATCH 6.6 120/529] drm/amd/pm: Use cached metrics data on arcturus Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 121/529] drm/amdgpu/jpeg: Hold pg_lock before jpeg poweroff Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 122/529] drm/nouveau: replace snprintf() with scnprintf() in nvkm_snprintbf() Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 123/529] PCI: Disable MSI on RDC PCI to PCIe bridges Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 124/529] selftests/net: Replace non-standard __WORDSIZE with sizeof(long) * 8 Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 125/529] selftests/net: Ensure assert() triggers in psock_tpacket.c Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 126/529] wifi: rtw88: sdio: use indirect IO for device registers before power-on Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 127/529] drm/amdkfd: return -ENOTTY for unsupported IOCTLs Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 128/529] media: pci: ivtv: Dont create fake v4l2_fh Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 129/529] media: amphion: Delete v4l2_fh synchronously in .release() Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 130/529] drm/tidss: Use the crtc_* timings when programming the HW Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 131/529] drm/bridge: cdns-dsi: Fix REG_WAKEUP_TIME value Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 132/529] drm/bridge: cdns-dsi: Dont fail on MIPI_DSI_MODE_VIDEO_BURST Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 133/529] drm/tidss: Set crtc modesetting parameters with adjusted mode Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 134/529] media: i2c: Kconfig: Ensure a dependency on HAVE_CLK for VIDEO_CAMERA_SENSOR Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 135/529] x86/vsyscall: Do not require X86_PF_INSTR to emulate vsyscall Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 136/529] net: stmmac: Check stmmac_hw_setup() in stmmac_resume() Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 137/529] ice: Dont use %pK through printk or tracepoints Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 138/529] thunderbolt: Use is_pciehp instead of is_hotplug_bridge Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 139/529] powerpc/eeh: Use result of error_detected() in uevent Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 140/529] s390/pci: Use pci_uevent_ers() in PCI recovery Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 141/529] bridge: Redirect to backup port when port is administratively down Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 142/529] scsi: ufs: host: mediatek: Fix auto-hibern8 timer configuration Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 143/529] scsi: ufs: host: mediatek: Assign power mode userdata before FASTAUTO mode change Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 144/529] scsi: ufs: host: mediatek: Change reset sequence for improved stability Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 145/529] scsi: ufs: host: mediatek: Fix invalid access in vccqx handling Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 146/529] net: ipv6: fix field-spanning memcpy warning in AH output Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 147/529] media: imon: make send_packet() more robust Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 148/529] drm/bridge: display-connector: dont set OP_DETECT for DisplayPorts Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 149/529] drm/amdkfd: Handle lack of READ permissions in SVM mapping Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 150/529] iio: adc: spear_adc: mask SPEAR_ADC_STATUS channel and avg sample before setting register Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 151/529] iio: adc: imx93_adc: load calibrated values even calibration failed Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 152/529] usb: gadget: f_ncm: Fix MAC assignment NCM ethernet Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 153/529] char: misc: Make misc_register() reentry for miscdevice who wants dynamic minor Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 154/529] char: misc: Does not request module for miscdevice with " Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 155/529] net: When removing nexthops, dont call synchronize_net if it is not necessary Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 156/529] net: stmmac: Correctly handle Rx checksum offload errors Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 157/529] net: Call trace_sock_exceed_buf_limit() for memcg failure with SK_MEM_RECV Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 158/529] PCI/P2PDMA: Fix incorrect pointer usage in devm_kfree() call Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 159/529] ALSA: usb-audio: Add validation of UAC2/UAC3 effect units Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 160/529] rds: Fix endianness annotation for RDS_MPATH_HASH Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 161/529] scsi: mpi3mr: Fix controller init failure on fault during queue creation Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 162/529] scsi: pm80xx: Fix race condition caused by static variables Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 163/529] extcon: adc-jack: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 164/529] remoteproc: wkup_m3: Use devm_pm_runtime_enable() helper Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 165/529] net: phy: fixed_phy: let fixed_phy_unregister free the phy_device Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 166/529] fuse: zero initialize inode private data Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 167/529] drm/amdkfd: fix vram allocation failure for a special case Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 168/529] drm/amdkfd: Tie UNMAP_LATENCY to queue_preemption Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 169/529] media: fix uninitialized symbol warnings Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 170/529] drm/amdgpu: Respect max pixel clock for HDMI and DVI-D (v2) Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 171/529] mips: lantiq: danube: add missing properties to cpu node Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 172/529] mips: lantiq: danube: add model to EASY50712 dts Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 173/529] mips: lantiq: danube: add missing device_type in pci node Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 174/529] mips: lantiq: xway: sysctrl: rename stp clock Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 175/529] mips: lantiq: danube: rename stp node on EASY50712 reference board Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 176/529] crypto: qat - use kcalloc() in qat_uclo_map_objs_from_mof() Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 177/529] scsi: pm8001: Use int instead of u32 to store error codes Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 178/529] ptp: Limit time setting of PTP clocks Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 179/529] dmaengine: sh: setup_xref error handling Greg Kroah-Hartman
2025-11-21 13:07 ` [PATCH 6.6 180/529] dmaengine: mv_xor: match alloc_wc and free_wc Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 181/529] dmaengine: dw-edma: Set status for callback_result Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 182/529] drm/msm/dsi/phy: Toggle back buffer resync after preparing PLL Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 183/529] drm/msm/dsi/phy_7nm: Fix missing initial VCO rate Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 184/529] drm/amdgpu: Allow kfd CRIU with no buffer objects Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 185/529] ipv6: Add sanity checks on ipv6_devconf.rpl_seg_enabled Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 186/529] net: nfc: nci: Increase NCI_DATA_TIMEOUT to 3000 ms Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 187/529] media: adv7180: Add missing lock in suspend callback Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 188/529] media: adv7180: Do not write format to device in set_fmt Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 189/529] media: adv7180: Only validate format in querystd Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 190/529] media: verisilicon: Explicitly disable selection api ioctls for decoders Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 191/529] ALSA: usb-audio: apply quirk for MOONDROP Quark2 Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 192/529] net: call cond_resched() less often in __release_sock() Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 193/529] smsc911x: add second read of EEPROM mac when possible corruption seen Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 194/529] iommu/amd: Skip enabling command/event buffers for kdump Greg Kroah-Hartman
2025-12-16 4:15 ` Jinliang Zheng
2025-11-21 13:08 ` [PATCH 6.6 195/529] iommu/apple-dart: Clear stream error indicator bits for T8110 DARTs Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 196/529] drm/amd: add more cyan skillfish PCI ids Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 197/529] drm/amdgpu: dont enable SMU on cyan skillfish Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 198/529] drm/amdgpu: add support for cyan skillfish gpu_info Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 199/529] usb: gadget: f_hid: Fix zero length packet transfer Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 200/529] usb: cdns3: gadget: Use-after-free during failed initialization and exit of cdnsp gadget Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 201/529] drm/msm: make sure to not queue up recovery more than once Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 202/529] char: Use list_del_init() in misc_deregister() to reinitialize list pointer Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 203/529] media: ov08x40: Fix the horizontal flip control Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 204/529] media: i2c: og01a1b: Specify monochrome media bus format instead of Bayer Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 205/529] scsi: ufs: host: mediatek: Enhance recovery on resume failure Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 206/529] scsi: ufs: host: mediatek: Enhance recovery on hibernation exit failure Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 207/529] net: phy: marvell: Fix 88e1510 downshift counter errata Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 208/529] scsi: ufs: host: mediatek: Disable auto-hibern8 during power mode changes Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 209/529] ntfs3: pretend $Extend records as regular files Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 210/529] wifi: mac80211: Fix HE capabilities element check Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 211/529] phy: cadence: cdns-dphy: Enable lower resolutions in dphy Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 212/529] phy: renesas: r8a779f0-ether-serdes: add new step added to latest datasheet Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 213/529] phy: rockchip: phy-rockchip-inno-csidphy: allow writes to grf register 0 Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 214/529] net: sh_eth: Disable WoL if system can not suspend Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 215/529] selftests: net: replace sleeps in fcnal-test with waits Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 216/529] media: redrat3: use int type to store negative error codes Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 217/529] selftests: traceroute: Use require_command() Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 218/529] netfilter: nf_reject: dont reply to icmp error messages Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 219/529] x86/kvm: Prefer native qspinlock for dedicated vCPUs irrespective of PV_UNHALT Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 220/529] selftests: Disable dad for ipv6 in fcnal-test.sh Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 221/529] eth: 8139too: Make 8139TOO_PIO depend on !NO_IOPORT_MAP Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 222/529] selftests: Replace sleep with slowwait Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 223/529] udp_tunnel: use netdev_warn() instead of netdev_WARN() Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 224/529] HID: asus: add Z13 folio to generic group for multitouch to work Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 225/529] watchdog: s3c2410_wdt: Fix max_timeout being calculated larger Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 226/529] crypto: sun8i-ce - remove channel timeout field Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 227/529] PCI: dwc: Verify the single eDMA IRQ in dw_pcie_edma_irq_verify() Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 228/529] crypto: caam - double the entropy delay interval for retry Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 229/529] net/cls_cgroup: Fix task_get_classid() during qdisc run Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 230/529] wifi: mt76: mt7921: Add 160MHz beamformee capability for mt7922 device Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 231/529] wifi: mt76: mt7996: Temporarily disable EPCS Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 232/529] ALSA: serial-generic: remove shared static buffer Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 233/529] drm/amdgpu: Use memdup_array_user in amdgpu_cs_wait_fences_ioctl Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 234/529] drm/amd: Avoid evicting resources at S5 Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 235/529] drm/amd/display: Fix DVI-D/HDMI adapters Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 236/529] drm/amd/display: Disable VRR on DCE 6 Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 237/529] page_pool: always add GFP_NOWARN for ATOMIC allocations Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 238/529] ethernet: Extend device_get_mac_address() to use NVMEM Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 239/529] HID: i2c-hid: Resolve touchpad issues on Dell systems during S4 Greg Kroah-Hartman
2025-11-21 13:08 ` [PATCH 6.6 240/529] drm/amdgpu: reject gang submissions under SRIOV Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 241/529] selftests/Makefile: include $(INSTALL_DEP_TARGETS) in clean target to clean net/lib dependency Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 242/529] scsi: ufs: core: Disable timestamp functionality if not supported Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 243/529] scsi: lpfc: Check return status of lpfc_reset_flush_io_context during TGT_RESET Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 244/529] scsi: lpfc: Remove ndlp kref decrement clause for F_Port_Ctrl in lpfc_cleanup Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 245/529] scsi: lpfc: Define size of debugfs entry for xri rebalancing Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 246/529] allow finish_no_open(file, ERR_PTR(-E...)) Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 247/529] usb: mon: Increase BUFF_MAX to 64 MiB to support multi-MB URBs Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 248/529] usb: xhci: plat: Facilitate using autosuspend for xhci plat devices Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 249/529] f2fs: fix infinite loop in __insert_extent_tree() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 250/529] ipv6: np->rxpmtu race annotation Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 251/529] RDMA/irdma: Update Kconfig Greg Kroah-Hartman
2025-11-21 17:40 ` Nikolova, Tatyana E
2025-11-21 18:12 ` Sasha Levin
2025-11-21 13:09 ` [PATCH 6.6 252/529] jfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 253/529] jfs: fix uninitialized waitqueue in transaction manager Greg Kroah-Hartman
2025-11-21 13:46 ` syzbot
2025-11-21 13:09 ` [PATCH 6.6 254/529] ASoC: qcom: sc8280xp: explicitly set S16LE format in sc8280xp_be_hw_params_fixup() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 255/529] net: phy: clear link parameters on admin link down Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 256/529] net: ethernet: microchip: sparx5: make it selectable for ARCH_LAN969X Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 257/529] iommu/vt-d: Replace snprintf with scnprintf in dmar_latency_snapshot() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 258/529] wifi: ath10k: Fix connection after GTK rekeying Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 259/529] net: intel: fm10k: Fix parameter idx set but not used Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 260/529] r8169: set EEE speed down ratio to 1 Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 261/529] PCI: cadence: Check for the existence of cdns_pcie::ops before using it Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 262/529] sparc/module: Add R_SPARC_UA64 relocation handling Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 263/529] sparc64: fix prototypes of reads[bwl]() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 264/529] vfio: return -ENOTTY for unsupported device feature Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 265/529] PCI/PM: Skip resuming to D0 if device is disconnected Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 266/529] remoteproc: qcom: q6v5: Avoid handling handover twice Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 267/529] wifi: ath12k: Increase DP_REO_CMD_RING_SIZE to 256 Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 268/529] drm/amd/display: Add AVI infoframe copy in copy_stream_update_to_stream Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 269/529] NFSv4: handle ERR_GRACE on delegation recalls Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 270/529] NFSv4.1: fix mount hang after CREATE_SESSION failure Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 271/529] nfs4_setup_readdir(): insufficient locking for ->d_parent->d_inode dereferencing Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 272/529] net: bridge: Install FDB for bridge MAC on VLAN 0 Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 273/529] scsi: libfc: Fix potential buffer overflow in fc_ct_ms_fill() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 274/529] accel/habanalabs/gaudi2: fix BMON disable configuration Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 275/529] scsi: mpt3sas: Add support for 22.5 Gbps SAS link rate Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 276/529] accel/habanalabs: return ENOMEM if less than requested pages were pinned Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 277/529] accel/habanalabs/gaudi2: read preboot status after recovering from dirty state Greg Kroah-Hartman
2025-11-23 8:02 ` Sinyuk, Konstantin
2025-11-21 13:09 ` [PATCH 6.6 278/529] accel/habanalabs: support mapping cb with vmalloc-backed coherent memory Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 279/529] fs: ext4: change GFP_KERNEL to GFP_NOFS to avoid deadlock Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 280/529] ext4: increase IO priority of fastcommit Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 281/529] amd/amdkfd: resolve a race in amdgpu_amdkfd_device_fini_sw Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 282/529] ASoC: stm32: sai: manage context in set_sysclk callback Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 283/529] ASoC: tlv320aic3x: Fix class-D initialization for tlv320aic3007 Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 284/529] net/mlx5e: Dont query FEC statistics when FEC is disabled Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 285/529] net: macb: avoid dealing with endianness in macb_set_hwaddr() Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 286/529] Bluetooth: btusb: Check for unexpected bytes when defragmenting HCI frames Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 287/529] Bluetooth: SCO: Fix UAF on sco_conn_free Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 288/529] Bluetooth: bcsp: receive data only if registered Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 289/529] ALSA: usb-audio: add mono main switch to Presonus S1824c Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 290/529] exfat: limit log print for IO error Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 291/529] 6pack: drop redundant locking and refcounting Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 292/529] page_pool: Clamp pool size to max 16K pages Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 293/529] orangefs: fix xattr related buffer overflow Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 294/529] ftrace: Fix softlockup in ftrace_module_enable Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 295/529] ksmbd: use sock_create_kern interface to create kernel socket Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 296/529] smb: client: transport: avoid reconnects triggered by pending task work Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 297/529] ima: dont clear IMA_DIGSIG flag when setting or removing non-IMA xattr Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 298/529] char: misc: restrict the dynamic range to exclude reserved minors Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 299/529] ACPICA: Update dsmethod.c to get rid of unused variable warning Greg Kroah-Hartman
2025-11-21 13:09 ` [PATCH 6.6 300/529] RDMA/irdma: Fix SD index calculation Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 301/529] RDMA/irdma: Remove unused struct irdma_cq fields Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 302/529] RDMA/irdma: Set irdma_cq cq_num field during CQ create Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 303/529] RDMA/hns: Fix the modification of max_send_sge Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 304/529] RDMA/hns: Fix wrong WQE data when QP wraps around Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 305/529] btrfs: mark dirty extent range for out of bound prealloc extents Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 306/529] fs/hpfs: Fix error code for new_inode() failure in mkdir/create/mknod/symlink Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 307/529] um: Fix help message for ssl-non-raw Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 308/529] clk: sunxi-ng: sun6i-rtc: Add A523 specifics Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 309/529] rtc: pcf2127: clear minute/second interrupt Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 310/529] ARM: at91: pm: save and restore ACR during PLL disable/enable Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 311/529] clk: at91: clk-master: Add check for divide by 3 Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 312/529] clk: at91: clk-sam9x60-pll: force write to PLL_UPDT register Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 313/529] clk: ti: am33xx: keep WKUP_DEBUGSS_CLKCTRL enabled Greg Kroah-Hartman
2025-11-21 13:10 ` Greg Kroah-Hartman [this message]
2025-11-21 13:10 ` [PATCH 6.6 315/529] 9p: fix /sys/fs/9p/caches overwriting itself Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 316/529] cpufreq: tegra186: Initialize all cores to max frequencies Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 317/529] 9p: sysfs_init: dont hardcode error to ENOMEM Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 318/529] scsi: ufs: core: Include UTP error in INT_FATAL_ERRORS Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 319/529] ACPI: property: Return present device nodes only on fwnode interface Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 320/529] tools bitmap: Add missing asm-generic/bitsperlong.h include Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 321/529] tools: lib: thermal: dont preserve owner in install Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 322/529] tools: lib: thermal: use pkg-config to locate libnl3 Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 323/529] fbdev: Add bounds checking in bit_putcs to fix vmalloc-out-of-bounds Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 324/529] rtc: pcf2127: fix watchdog interrupt mask on pcf2131 Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 325/529] kbuild: uapi: Strip comments before size type check Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 326/529] ASoC: meson: aiu-encoder-i2s: fix bit clock polarity Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 327/529] ceph: add checking of wait_for_completion_killable() return value Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 328/529] ceph: refactor wake_up_bit() pattern of calling Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 329/529] ALSA: hda/realtek: Audio disappears on HP 15-fc000 after warm boot again Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 330/529] media: uvcvideo: Use heuristic to find stream entity Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 331/529] Revert "wifi: ath10k: avoid unnecessary wait for service ready message" Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 332/529] net: libwx: fix device bus LAN ID Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 333/529] riscv: Improve exception and system call latency Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 334/529] riscv: stacktrace: Disable KASAN checks for non-current tasks Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 335/529] riscv: ptdump: use seq_puts() in pt_dump_seq_puts() macro Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 336/529] Bluetooth: hci_event: validate skb length for unknown CC opcode Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 337/529] Bluetooth: btrtl: Fix memory leak in rtlbt_parse_firmware_v2() Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 338/529] net: dsa: tag_brcm: legacy: fix untagged rx on unbridged ports for bcm63xx Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 339/529] selftests/net: fix out-of-order delivery of FIN in gro:tcp test Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 340/529] selftests/net: fix GRO coalesce test and add ext header coalesce tests Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 341/529] selftests/net: use destination options instead of hop-by-hop Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 342/529] netdevsim: add Makefile for selftests Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 343/529] selftests: netdevsim: Fix ethtool-coalesce.sh fail by installing ethtool-common.sh Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 344/529] net: vlan: sync VLAN features with lower device Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 345/529] net: dsa: b53: fix resetting speed and pause on forced link Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 346/529] net: dsa: b53: fix enabling ip multicast Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 347/529] net: dsa: b53: stop reading ARL entries if search is done Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 348/529] sctp: Hold RCU read lock while iterating over address list Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 349/529] sctp: Prevent TOCTOU out-of-bounds write Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 350/529] sctp: Hold sock lock while iterating over address list Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 351/529] net: usb: qmi_wwan: initialize MAC header offset in qmimux_rx_fixup Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 352/529] bnxt_en: Fix a possible memory leak in bnxt_ptp_init Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 353/529] wifi: mac80211_hwsim: Limit destroy_on_close radio removal to netgroup Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 354/529] net/mlx5e: Use extack in get module eeprom by page callback Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 355/529] net/mlx5e: Fix return value in case of module EEPROM read error Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 356/529] net/mlx5e: SHAMPO, Fix skb size check for 64K pages Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 357/529] net: dsa: microchip: Fix reserved multicast address table programming Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 358/529] lan966x: Fix sleeping in atomic context Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 359/529] net: bridge: fix use-after-free due to MST port state bypass Greg Kroah-Hartman
2025-11-21 13:10 ` [PATCH 6.6 360/529] net: bridge: fix MST static key usage Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 361/529] tracing: Fix memory leaks in create_field_var() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 362/529] drm/amd/display: Enable mst when its detected but yet to be initialized Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 363/529] drm/sched: Fix deadlock in drm_sched_entity_kill_jobs_cb Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 364/529] Bluetooth: MGMT: Fix OOB access in parse_adv_monitor_pattern() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 365/529] rtc: rx8025: fix incorrect register reference Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 366/529] x86/microcode/AMD: Add more known models to entry sign checking Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 367/529] smb: client: validate change notify buffer before copy Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 368/529] smb: client: fix potential UAF in smb2_close_cached_fid() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 369/529] virtio-net: fix received length check in big packets Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 370/529] lib/crypto: curve25519-hacl64: Fix older clang KASAN workaround for GCC Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 371/529] scsi: ufs: ufs-pci: Fix S0ix/S3 for Intel controllers Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 372/529] extcon: adc-jack: Cleanup wakeup source only if it was enabled Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 373/529] drm/amdgpu: Fix function header names in amdgpu_connectors.c Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 374/529] drm/amd/display: Fix black screen with HDMI outputs Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 375/529] riscv: stacktrace: fix backtracing through exceptions Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 376/529] selftests: netdevsim: set test timeout to 10 minutes Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 377/529] drm/i915: Avoid lock inversion when pinning to GGTT on CHV/BXT+VTD Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 378/529] drm/i915: Fix conversion between clock ticks and nanoseconds Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 379/529] smb: client: fix refcount leak in smb2_set_path_attr Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 380/529] iommufd: Make vfio_compats unmap succeed if the range is already empty Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 381/529] drm/amd: Fix suspend failure with secure display TA Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 382/529] compiler_types: Move unused static inline functions warning to W=2 Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 383/529] RISC-V: clear hot-unplugged cores from all task mm_cpumasks to avoid rfence errors Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 384/529] riscv: acpi: avoid errors caused by probing DT devices when ACPI is used Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 385/529] drm/amd/pm: Disable MCLK switching on SI at high pixel clocks Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 386/529] drm/amdgpu: Fix NULL pointer dereference in VRAM logic for APU devices Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 387/529] NFS4: Fix state renewals missing after boot Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 388/529] HID: quirks: avoid Cooler Master MM712 dongle wakeup bug Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 389/529] NFS: check if suid/sgid was cleared after a write as needed Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 390/529] HID: quirks: Add ALWAYS_POLL quirk for VRS R295 steering wheel Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 391/529] smb/server: fix possible memory leak in smb2_read() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 392/529] smb/server: fix possible refcount leak in smb2_sess_setup() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 393/529] ASoC: max98090/91: fixed max98091 ALSA widget powering up/down Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 394/529] wifi: ath11k: zero init info->status in wmi_process_mgmt_tx_comp() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 395/529] selftests: net: local_termination: Wait for interfaces to come up Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 396/529] net: fec: correct rx_bytes statistic for the case SHIFT16 is set Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 397/529] Bluetooth: MGMT: cancel mesh send timer when hdev removed Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 398/529] Bluetooth: btusb: reorder cleanup in btusb_disconnect to avoid UAF Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 399/529] Bluetooth: 6lowpan: reset link-local header on ipv6 recv path Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 400/529] Bluetooth: 6lowpan: fix BDADDR_LE vs ADDR_LE_DEV address type confusion Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 401/529] Bluetooth: 6lowpan: Dont hold spin lock over sleeping functions Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 402/529] sctp: prevent possible shift-out-of-bounds in sctp_transport_update_rto Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 403/529] net/smc: fix mismatch between CLC header and proposal Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 404/529] net/handshake: Fix memory leak in tls_handshake_accept() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 405/529] tipc: Fix use-after-free in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 406/529] net: mdio: fix resource leak in mdiobus_register_device() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 407/529] wifi: mac80211: skip rate verification for not captured PSDUs Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 408/529] af_unix: Initialise scc_index in unix_add_edge() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 409/529] net_sched: act_connmark: use RCU in tcf_connmark_dump() Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 410/529] net: sched: act_connmark: initialize struct tc_ife to fix kernel leak Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 411/529] net: sched: act_ife: initialize struct tc_ife to fix KMSAN kernel-infoleak Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 412/529] net/mlx5e: Fix maxrate wraparound in threshold between units Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 413/529] net/mlx5e: Fix wraparound in rate limiting for values above 255 Gbps Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 414/529] net/mlx5e: Fix potentially misleading debug message Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 415/529] net_sched: limit try_bulk_dequeue_skb() batches Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 416/529] virtio-net: fix incorrect flags recording in big mode Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 417/529] hsr: Fix supervision frame sending on HSRv0 Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 418/529] ACPI: CPPC: Check _CPC validity for only the online CPUs Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 419/529] ACPI: CPPC: Perform fast check switch only for " Greg Kroah-Hartman
2025-11-21 13:11 ` [PATCH 6.6 420/529] ACPI: CPPC: Limit perf ctrs in PCC check only to " Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 421/529] Bluetooth: L2CAP: export l2cap_chan_hold for modules Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 422/529] cifs: stop writeback extension when change of size is detected Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 423/529] cifs: Fix uncached read into ITER_KVEC iterator Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 424/529] acpi,srat: Fix incorrect device handle check for Generic Initiator Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 425/529] regulator: fixed: fix GPIO descriptor leak on register failure Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 426/529] ASoC: cs4271: Fix regulator leak on probe failure Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 427/529] ASoC: codecs: va-macro: fix resource leak in probe error path Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 428/529] drm/vmwgfx: Validate command header size against SVGA_CMD_MAX_DATASIZE Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 429/529] ASoC: tas2781: fix getting the wrong device number Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 430/529] pnfs: Fix TLS logic in _nfs4_pnfs_v4_ds_connect() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 431/529] NFS: enable nconnect for RDMA Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 432/529] pnfs: Set transport security policy to RPC_XPRTSEC_NONE unless using TLS Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 433/529] NFS: sysfs: fix leak when nfs_client kobject add fails Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 434/529] NFSv4: Fix an incorrect parameter when calling nfs4_call_sync() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 435/529] ALSA: usb-audio: Fix NULL pointer dereference in snd_usb_mixer_controls_badd Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 436/529] memory tiering: add abstract distance calculation algorithms management Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 437/529] acpi, hmat: refactor hmat_register_target_initiators() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 438/529] acpi, hmat: calculate abstract distance with HMAT Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 439/529] base/node / acpi: Change node_hmem_attrs to access_coordinates Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 440/529] acpi: numa: Create enum for memory_target access coordinates indexing Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 441/529] acpi: numa: Add genport target allocation to the HMAT parsing Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 442/529] acpi: Break out nesting for hmat_parse_locality() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 443/529] acpi: numa: Add setting of generic port system locality attributes Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 444/529] base/node / ACPI: Enumerate node access class for struct access_coordinate Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 445/529] acpi/hmat: Fix lockdep warning for hmem_register_resource() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 446/529] bpf: Add bpf_prog_run_data_pointers() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 447/529] bpf: account for current allocated stack depth in widen_imprecise_scalars() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 448/529] irqchip/riscv-intc: Add missing free() callback in riscv_intc_domain_ops Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 449/529] net: fix NULL pointer dereference in l3mdev_l3_rcv Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 450/529] net: allow small head cache usage with large MAX_SKB_FRAGS values Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 451/529] net: dsa: improve shutdown sequence Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 452/529] espintcp: fix skb leaks Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 453/529] lib/crypto: arm/curve25519: Disable on CPU_BIG_ENDIAN Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 454/529] Bluetooth: hci_sync: fix double free in hci_discovery_filter_clear() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 455/529] mtd: onenand: Pass correct pointer to IRQ handler Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 456/529] netfilter: nf_tables: reject duplicate device on updates Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 457/529] arm64: dts: rockchip: Set correct pinctrl for I2S1 8ch TX on odroid-m1 Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 458/529] ARM: dts: imx51-zii-rdu1: Fix audmux node names Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 459/529] HID: hid-ntrig: Prevent memory leak in ntrig_report_version() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 460/529] ARM: dts: BCM53573: Fix address of Luxul XAP-1440s Ethernet PHY Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 461/529] HID: uclogic: Fix potential memory leak in error path Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 462/529] KVM: SVM: Mark VMCB_LBR dirty when MSR_IA32_DEBUGCTLMSR is updated Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 463/529] NFSD: free copynotify stateid in nfs4_free_ol_stateid() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 464/529] gcov: add support for GCC 15 Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 465/529] ksmbd: close accepted socket when per-IP limit rejects connection Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 466/529] strparser: Fix signed/unsigned mismatch bug Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 467/529] dma-mapping: benchmark: Restore padding to ensure uABI remained consistent Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 468/529] LoongArch: Use correct accessor to read FWPC/MWPC Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 469/529] LoongArch: Let {pte,pmd}_modify() record the status of _PAGE_DIRTY Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 470/529] ipv4: route: Prevent rt_bind_exception() from rebinding stale fnhe Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 471/529] selftests/tracing: Run sample events to clear page cache events Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 472/529] wifi: mac80211: reject address change while connecting Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 473/529] fs/proc: fix uaf in proc_readdir_de() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 474/529] mm/mm_init: fix hash table order logging in alloc_large_system_hash() Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 475/529] mmc: sdhci-of-dwcmshc: Change DLL_STRBIN_TAPNUM_DEFAULT to 0x4 Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 476/529] ALSA: usb-audio: Fix potential overflow of PCM transfer buffer Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 477/529] cifs: client: fix memory leak in smb3_fs_context_parse_param Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 478/529] crypto: hisilicon/qm - Fix device reference leak in qm_get_qos_value Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 479/529] smb: client: fix cifs_pick_channel when channel needs reconnect Greg Kroah-Hartman
2025-11-21 13:12 ` [PATCH 6.6 480/529] spi: Try to get ACPI GPIO IRQ earlier Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 481/529] x86/microcode/AMD: Add Zen5 model 0x44, stepping 0x1 minrev Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 482/529] selftests/user_events: fix type cast for write_index packed member in perf_test Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 483/529] LoongArch: Use physical addresses for CSR_MERRENTRY/CSR_TLBRENTRY Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 484/529] EDAC/altera: Handle OCRAM ECC enable after warm reset Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 485/529] EDAC/altera: Use INTTEST register for Ethernet and USB SBE injection Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 486/529] btrfs: scrub: put bio after errors in scrub_raid56_parity_stripe() Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 487/529] btrfs: do not update last_log_commit when logging inode due to a new name Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 488/529] pmdomain: samsung: plug potential memleak during probe Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 489/529] selftests: mptcp: connect: fix fallback note due to OoO Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 490/529] selftests: mptcp: join: rm: set backup flag Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 491/529] selftests: mptcp: connect: trunc: read all recv data Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 492/529] Revert "perf dso: Add missed dso__put to dso__load_kcore" Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 493/529] drm/mediatek: Disable AFBC support on Mediatek DRM driver Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 494/529] btrfs: ensure no dirty metadata is written back for an fs with errors Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 495/529] iommufd: Dont overflow during division for dirty tracking Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 496/529] mm, percpu: do not consider sleepable allocations atomic Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 497/529] netpoll: remove netpoll_srcu Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 498/529] net: netpoll: Individualize the skb pool Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 499/529] net: netpoll: flush skb pool during cleanup Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 500/529] net: netpoll: fix incorrect refcount handling causing incorrect cleanup Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 501/529] f2fs: fix to avoid overflow while left shift operation Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 502/529] net: stmmac: Fix accessing freed irq affinity_hint Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 503/529] scsi: ufs: core: Add UFSHCD_QUIRK_CUSTOM_CRYPTO_PROFILE Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 504/529] scsi: ufs: core: fold ufshcd_clear_keyslot() into its caller Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 505/529] scsi: ufs: core: Add UFSHCD_QUIRK_BROKEN_CRYPTO_ENABLE Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 506/529] scsi: ufs: core: Add fill_crypto_prdt variant op Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 507/529] scsi: ufs: core: Add UFSHCD_QUIRK_KEYS_IN_PRDT Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 508/529] scsi: ufs: core: Add a quirk for handling broken LSDBS field in controller capabilities register Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 509/529] scsi: ufs: core: Add a quirk to suppress link_startup_again Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 510/529] scsi: ufs: ufs-pci: Set UFSHCD_QUIRK_PERFORM_LINK_STARTUP_ONCE for Intel ADL Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 511/529] mm: memcg: add THP swap out info for anonymous reclaim Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 512/529] mm: memcg: add per-memcg zswap writeback stat Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 513/529] mm: memcg: change flush_next_time to flush_last_time Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 514/529] mm: memcg: move vmstats structs definition above flushing code Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 515/529] mm: memcg: make stats flushing threshold per-memcg Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 516/529] mm: workingset: move the stats flush into workingset_test_recent() Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 517/529] mm: memcg: restore subtree stats flushing Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 518/529] filemap: cap PTE range to be created to allowed zero fill in folio_map_range() Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 519/529] mm/memory: do not populate page table entries beyond i_size Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 520/529] mm/truncate: unmap large folio on split failure Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 521/529] mm/secretmem: fix use-after-free race in fault handler Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 522/529] isdn: mISDN: hfcsusb: fix memory leak in hfcsusb_probe() Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 523/529] net: netpoll: ensure skb_pool list is always initialized Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 524/529] cachestat: do not flush stats in recency check Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 525/529] memory tiers: use default_dram_perf_ref_source in log message Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 526/529] mm/memory-tier: fix abstract distance calculation overflow Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 527/529] mm: memcg: optimize parent iteration in memcg_rstat_updated() Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 528/529] ACPI: HMAT: Remove register of memory node for generic target Greg Kroah-Hartman
2025-11-21 13:13 ` [PATCH 6.6 529/529] memcg: fix data-race KCSAN bug in rstats Greg Kroah-Hartman
2025-11-21 16:28 ` [PATCH 6.6 000/529] 6.6.117-rc1 review Jon Hunter
2025-11-21 18:12 ` Florian Fainelli
2025-11-22 4:51 ` Naresh Kamboju
2025-11-22 5:53 ` Brett A C Sheffield
2025-11-22 7:12 ` Peter Schneider
2025-11-22 11:17 ` Ron Economos
2025-11-22 23:31 ` Miguel Ojeda
2025-11-23 11:54 ` Mark Brown
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=20251121130242.198000281@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jbrunet@baylibre.com \
--cc=jdmason@kudzu.us \
--cc=patches@lists.linux.dev \
--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;
as well as URLs for NNTP newsgroup(s).