From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, John Garry <john.garry@huawei.com>,
"Martin K. Petersen" <martin.petersen@oracle.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 026/168] scsi: mvsas: Use sas_task_find_rq() for tagging
Date: Fri, 17 Oct 2025 16:51:45 +0200 [thread overview]
Message-ID: <20251017145129.983413703@linuxfoundation.org> (raw)
In-Reply-To: <20251017145129.000176255@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: John Garry <john.garry@huawei.com>
[ Upstream commit 2acf97f199f9eba8321390325519e9b6bff60108 ]
The request associated with a SCSI command coming from the block layer has
a unique tag, so use that when possible for getting a slot.
Unfortunately we don't support reserved commands in the SCSI midlayer yet.
As such, SMP tasks - as an example - will not have a request associated, so
in the interim continue to manage those tags for that type of sas_task
internally.
We reserve an arbitrary 4 tags for these internal tags. Indeed, we already
decrement MVS_RSVD_SLOTS by 2 for the shost can_queue when flag
MVF_FLAG_SOC is set. This change was made in commit 20b09c2992fe ("[SCSI]
mvsas: add support for 94xx; layout change; bug fixes"), but what those 2
slots are used for is not obvious.
Also make the tag management functions static, where possible.
Signed-off-by: John Garry <john.garry@huawei.com>
Link: https://lore.kernel.org/r/1666091763-11023-8-git-send-email-john.garry@huawei.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Stable-dep-of: 60cd16a3b743 ("scsi: mvsas: Fix use-after-free bugs in mvs_work_queue")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/scsi/mvsas/mv_defs.h | 1 +
drivers/scsi/mvsas/mv_init.c | 9 +++++----
drivers/scsi/mvsas/mv_sas.c | 35 ++++++++++++++++++++++-------------
drivers/scsi/mvsas/mv_sas.h | 7 +------
4 files changed, 29 insertions(+), 23 deletions(-)
diff --git a/drivers/scsi/mvsas/mv_defs.h b/drivers/scsi/mvsas/mv_defs.h
index 7123a2efbf583..8ef174cd4d374 100644
--- a/drivers/scsi/mvsas/mv_defs.h
+++ b/drivers/scsi/mvsas/mv_defs.h
@@ -40,6 +40,7 @@ enum driver_configuration {
MVS_ATA_CMD_SZ = 96, /* SATA command table buffer size */
MVS_OAF_SZ = 64, /* Open address frame buffer size */
MVS_QUEUE_SIZE = 64, /* Support Queue depth */
+ MVS_RSVD_SLOTS = 4,
MVS_SOC_CAN_QUEUE = MVS_SOC_SLOTS - 2,
};
diff --git a/drivers/scsi/mvsas/mv_init.c b/drivers/scsi/mvsas/mv_init.c
index c85fb812ad437..cfe84473a5153 100644
--- a/drivers/scsi/mvsas/mv_init.c
+++ b/drivers/scsi/mvsas/mv_init.c
@@ -142,7 +142,7 @@ static void mvs_free(struct mvs_info *mvi)
scsi_host_put(mvi->shost);
list_for_each_entry(mwq, &mvi->wq_list, entry)
cancel_delayed_work(&mwq->work_q);
- kfree(mvi->tags);
+ kfree(mvi->rsvd_tags);
kfree(mvi);
}
@@ -284,7 +284,6 @@ static int mvs_alloc(struct mvs_info *mvi, struct Scsi_Host *shost)
printk(KERN_DEBUG "failed to create dma pool %s.\n", pool_name);
goto err_out;
}
- mvi->tags_num = slot_nr;
return 0;
err_out:
@@ -367,8 +366,8 @@ static struct mvs_info *mvs_pci_alloc(struct pci_dev *pdev,
mvi->sas = sha;
mvi->shost = shost;
- mvi->tags = kzalloc(MVS_CHIP_SLOT_SZ>>3, GFP_KERNEL);
- if (!mvi->tags)
+ mvi->rsvd_tags = bitmap_zalloc(MVS_RSVD_SLOTS, GFP_KERNEL);
+ if (!mvi->rsvd_tags)
goto err_out;
if (MVS_CHIP_DISP->chip_ioremap(mvi))
@@ -469,6 +468,8 @@ static void mvs_post_sas_ha_init(struct Scsi_Host *shost,
else
can_queue = MVS_CHIP_SLOT_SZ;
+ can_queue -= MVS_RSVD_SLOTS;
+
shost->sg_tablesize = min_t(u16, SG_ALL, MVS_MAX_SG);
shost->can_queue = can_queue;
mvi->shost->cmd_per_lun = MVS_QUEUE_SIZE;
diff --git a/drivers/scsi/mvsas/mv_sas.c b/drivers/scsi/mvsas/mv_sas.c
index 82a308840b117..fd73fcf71bd1d 100644
--- a/drivers/scsi/mvsas/mv_sas.c
+++ b/drivers/scsi/mvsas/mv_sas.c
@@ -20,31 +20,34 @@ static int mvs_find_tag(struct mvs_info *mvi, struct sas_task *task, u32 *tag)
return 0;
}
-void mvs_tag_clear(struct mvs_info *mvi, u32 tag)
+static void mvs_tag_clear(struct mvs_info *mvi, u32 tag)
{
- void *bitmap = mvi->tags;
+ void *bitmap = mvi->rsvd_tags;
clear_bit(tag, bitmap);
}
-void mvs_tag_free(struct mvs_info *mvi, u32 tag)
+static void mvs_tag_free(struct mvs_info *mvi, u32 tag)
{
+ if (tag >= MVS_RSVD_SLOTS)
+ return;
+
mvs_tag_clear(mvi, tag);
}
-void mvs_tag_set(struct mvs_info *mvi, unsigned int tag)
+static void mvs_tag_set(struct mvs_info *mvi, unsigned int tag)
{
- void *bitmap = mvi->tags;
+ void *bitmap = mvi->rsvd_tags;
set_bit(tag, bitmap);
}
-inline int mvs_tag_alloc(struct mvs_info *mvi, u32 *tag_out)
+static int mvs_tag_alloc(struct mvs_info *mvi, u32 *tag_out)
{
unsigned int index, tag;
- void *bitmap = mvi->tags;
+ void *bitmap = mvi->rsvd_tags;
- index = find_first_zero_bit(bitmap, mvi->tags_num);
+ index = find_first_zero_bit(bitmap, MVS_RSVD_SLOTS);
tag = index;
- if (tag >= mvi->tags_num)
+ if (tag >= MVS_RSVD_SLOTS)
return -SAS_QUEUE_FULL;
mvs_tag_set(mvi, tag);
*tag_out = tag;
@@ -696,6 +699,7 @@ static int mvs_task_prep(struct sas_task *task, struct mvs_info *mvi, int is_tmf
struct mvs_task_exec_info tei;
struct mvs_slot_info *slot;
u32 tag = 0xdeadbeef, n_elem = 0;
+ struct request *rq;
int rc = 0;
if (!dev->port) {
@@ -760,9 +764,14 @@ static int mvs_task_prep(struct sas_task *task, struct mvs_info *mvi, int is_tmf
n_elem = task->num_scatter;
}
- rc = mvs_tag_alloc(mvi, &tag);
- if (rc)
- goto err_out;
+ rq = sas_task_find_rq(task);
+ if (rq) {
+ tag = rq->tag + MVS_RSVD_SLOTS;
+ } else {
+ rc = mvs_tag_alloc(mvi, &tag);
+ if (rc)
+ goto err_out;
+ }
slot = &mvi->slot_info[tag];
@@ -857,7 +866,7 @@ int mvs_queue_command(struct sas_task *task, gfp_t gfp_flags)
static void mvs_slot_free(struct mvs_info *mvi, u32 rx_desc)
{
u32 slot_idx = rx_desc & RXQ_SLOT_MASK;
- mvs_tag_clear(mvi, slot_idx);
+ mvs_tag_free(mvi, slot_idx);
}
static void mvs_slot_task_free(struct mvs_info *mvi, struct sas_task *task,
diff --git a/drivers/scsi/mvsas/mv_sas.h b/drivers/scsi/mvsas/mv_sas.h
index fe57665bdb505..68df771e29759 100644
--- a/drivers/scsi/mvsas/mv_sas.h
+++ b/drivers/scsi/mvsas/mv_sas.h
@@ -370,8 +370,7 @@ struct mvs_info {
u32 chip_id;
const struct mvs_chip_info *chip;
- int tags_num;
- unsigned long *tags;
+ unsigned long *rsvd_tags;
/* further per-slot information */
struct mvs_phy phy[MVS_MAX_PHYS];
struct mvs_port port[MVS_MAX_PHYS];
@@ -424,10 +423,6 @@ struct mvs_task_exec_info {
/******************** function prototype *********************/
void mvs_get_sas_addr(void *buf, u32 buflen);
-void mvs_tag_clear(struct mvs_info *mvi, u32 tag);
-void mvs_tag_free(struct mvs_info *mvi, u32 tag);
-void mvs_tag_set(struct mvs_info *mvi, unsigned int tag);
-int mvs_tag_alloc(struct mvs_info *mvi, u32 *tag_out);
void mvs_iounmap(void __iomem *regs);
int mvs_ioremap(struct mvs_info *mvi, int bar, int bar_ex);
void mvs_phys_reset(struct mvs_info *mvi, u32 phy_mask, int hard);
--
2.51.0
next prev parent reply other threads:[~2025-10-17 14:57 UTC|newest]
Thread overview: 180+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-17 14:51 [PATCH 6.1 000/168] 6.1.157-rc1 review Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 001/168] fs: always return zero on success from replace_fd() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 002/168] fscontext: do not consume log entries when returning -EMSGSIZE Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 003/168] clocksource/drivers/clps711x: Fix resource leaks in error paths Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 004/168] iio: frequency: adf4350: Fix ADF4350_REG3_12BIT_CLKDIV_MODE Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 005/168] media: v4l2-subdev: Fix alloc failure check in v4l2_subdev_call_state_try() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 006/168] perf evsel: Avoid container_of on a NULL leader Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 007/168] libperf event: Ensure tracing data is multiple of 8 sized Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 008/168] clk: at91: peripheral: fix return value Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 009/168] perf util: Fix compression checks returning -1 as bool Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 010/168] rtc: x1205: Fix Xicor X1205 vendor prefix Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 011/168] rtc: optee: fix memory leak on driver removal Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 012/168] perf arm_spe: Correct setting remote access Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 013/168] perf arm-spe: Refactor arm-spe to support operation packet type Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 014/168] perf arm-spe: Rename the common data source encoding Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 015/168] perf arm_spe: Correct memory level for remote access Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 016/168] perf session: Fix handling when buffer exceeds 2 GiB Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 017/168] perf test: Dont leak workload gopipe in PERF_RECORD_* Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 018/168] clk: mediatek: mt8195-infra_ao: Fix parent for infra_ao_hdmi_26m Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 019/168] clk: mediatek: clk-mux: Do not pass flags to clk_mux_determine_rate_flags() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 020/168] clk: nxp: lpc18xx-cgu: convert from round_rate() to determine_rate() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 021/168] clk: nxp: Fix pll0 rate check condition in LPC18xx CGU driver Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 022/168] clk: tegra: do not overallocate memory for bpmp clocks Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 023/168] cpufreq: tegra186: Set target frequency for all cpus in policy Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 024/168] scsi: libsas: Add sas_task_find_rq() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 025/168] scsi: mvsas: Delete mvs_tag_init() Greg Kroah-Hartman
2025-10-17 14:51 ` Greg Kroah-Hartman [this message]
2025-10-17 14:51 ` [PATCH 6.1 027/168] scsi: mvsas: Fix use-after-free bugs in mvs_work_queue Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 028/168] LoongArch: Remove CONFIG_ACPI_TABLE_UPGRADE in platform_init() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 029/168] LoongArch: Init acpi_gbl_use_global_lock to false Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 030/168] net/mlx4: prevent potential use after free in mlx4_en_do_uc_filter() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 031/168] s390/cio: Update purge function to unregister the unused subchannels Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 032/168] drm/vmwgfx: Fix Use-after-free in validation Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 033/168] drm/vmwgfx: Fix copy-paste typo " Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 034/168] net/sctp: fix a null dereference in sctp_disposition sctp_sf_do_5_1D_ce() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 035/168] tcp: Dont call reqsk_fastopen_remove() in tcp_conn_request() Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 036/168] net: fsl_pq_mdio: Fix device node reference leak in fsl_pq_mdio_probe Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 037/168] tools build: Align warning options with perf Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 038/168] mailbox: zynqmp-ipi: Remove redundant mbox_controller_unregister() call Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 039/168] mailbox: zynqmp-ipi: Remove dev.parent check in zynqmp_ipi_free_mboxes Greg Kroah-Hartman
2025-10-17 14:51 ` [PATCH 6.1 040/168] bpf: Fix metadata_dst leak __bpf_redirect_neigh_v{4,6} Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 041/168] drm/amdgpu: Add additional DCE6 SCL registers Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 042/168] drm/amd/display: Add missing DCE6 SCL_HORZ_FILTER_INIT* SRIs Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 043/168] drm/amd/display: Properly clear SCL_*_FILTER_CONTROL on DCE6 Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 044/168] drm/amd/display: Properly disable scaling " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 045/168] bridge: br_vlan_fill_forward_path_pvid: use br_vlan_group_rcu() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 046/168] crypto: essiv - Check ssize for decryption and in-place encryption Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 047/168] tpm_tis: Fix incorrect arguments in tpm_tis_probe_irq_single Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 048/168] gpio: wcd934x: Remove duplicate assignment of of_gpio_n_cells Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 049/168] gpio: wcd934x: mark the GPIO controller as sleeping Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 050/168] bpf: Avoid RCU context warning when unpinning htab with internal structs Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 051/168] ACPI: property: Fix buffer properties extraction for subnodes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 052/168] ACPI: TAD: Add missing sysfs_remove_group() for ACPI_TAD_RT Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 053/168] ACPI: debug: fix signedness issues in read/write helpers Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 054/168] arm64: dts: qcom: msm8916: Add missing MDSS reset Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 055/168] arm64: dts: qcom: sdm845: Fix slimbam num-channels/ees Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 056/168] arm64: dts: ti: k3-am62a-main: Fix main padcfg length Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 057/168] ARM: OMAP2+: pm33xx-core: ix device node reference leaks in amx3_idle_init Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 058/168] cpuidle: governors: menu: Avoid using invalid recent intervals data Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 059/168] dt-bindings: phy: rockchip-inno-csi-dphy: make power-domains non-required Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 060/168] xen/events: Cleanup find_virq() return codes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 061/168] xen/manage: Fix suspend error path Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 062/168] firmware: meson_sm: fix device leak at probe Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 063/168] media: cx18: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 064/168] media: i2c: mt9v111: fix incorrect type for ret Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 065/168] media: mc: Fix MUST_CONNECT handling for pads with no links Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 066/168] media: pci: ivtv: Add missing check after DMA map Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 067/168] media: lirc: Fix error handling in lirc_register() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 068/168] drm/nouveau: fix bad ret code in nouveau_bo_move_prep Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 069/168] blk-crypto: fix missing blktrace bio split events Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 070/168] btrfs: avoid potential out-of-bounds in btrfs_encode_fh() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 071/168] bus: mhi: host: Do not use uninitialized dev pointer in mhi_init_irq_setup() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 072/168] copy_sighand: Handle architectures where sizeof(unsigned long) < sizeof(u64) Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 073/168] cpufreq: intel_pstate: Fix object lifecycle issue in update_qos_request() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 074/168] crypto: aspeed - Fix dma_unmap_sg() direction Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 075/168] crypto: atmel " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 076/168] fs/ntfs3: Fix a resource leak bug in wnd_extend() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 077/168] iio: dac: ad5360: use int type to store negative error codes Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 078/168] iio: dac: ad5421: " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 079/168] iio: frequency: adf4350: Fix prescaler usage Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 080/168] iio: xilinx-ams: Fix AMS_ALARM_THR_DIRECT_MASK Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 081/168] iio: xilinx-ams: Unmask interrupts after updating alarms Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 082/168] init: handle bootloader identifier in kernel parameters Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 083/168] iio: imu: inv_icm42600: Drop redundant pm_runtime reinitialization in resume Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 084/168] iommu/vt-d: PRS isnt usable if PDS isnt supported Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 085/168] kernel/sys.c: fix the racy usage of task_lock(tsk->group_leader) in sys_prlimit64() paths Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 086/168] KEYS: trusted_tpm1: Compare HMAC values in constant time Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 087/168] lib/genalloc: fix device leak in of_gen_pool_get() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 088/168] openat2: dont trigger automounts with RESOLVE_NO_XDEV Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 089/168] parisc: dont reference obsolete termio struct for TC* constants Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 090/168] parisc: Remove spurious if statement from raw_copy_from_user() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 091/168] nvme-pci: Add TUXEDO IBS Gen8 to Samsung sleep quirk Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 092/168] power: supply: max77976_charger: fix constant current reporting Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 093/168] powerpc/powernv/pci: Fix underflow and leak issue Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 094/168] powerpc/pseries/msi: Fix potential " Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 095/168] pwm: berlin: Fix wrong register in suspend/resume Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 096/168] sched/deadline: Fix race in push_dl_task() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 097/168] scsi: hpsa: Fix potential memory leak in hpsa_big_passthru_ioctl() Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 098/168] sctp: Fix MAC comparison to be constant-time Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 099/168] sparc64: fix hugetlb for sun4u Greg Kroah-Hartman
2025-10-17 14:52 ` [PATCH 6.1 100/168] sparc: fix error handling in scan_one_device() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 101/168] xtensa: simdisk: add input size check in proc_write_simdisk Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 102/168] mtd: rawnand: fsmc: Default to autodetect buswidth Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 103/168] mmc: core: SPI mode remove cmd7 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 104/168] memory: samsung: exynos-srom: Fix of_iomap leak in exynos_srom_probe Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 105/168] rtc: interface: Ensure alarm irq is enabled when UIE is enabled Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 106/168] rtc: interface: Fix long-standing race when setting alarm Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 107/168] rseq/selftests: Use weak symbol reference, not definition, to link with glibc Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 108/168] PCI: tegra: Convert struct tegra_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 109/168] PCI/sysfs: Ensure devices are powered for config reads Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 110/168] PCI/IOV: Add PCI rescan-remove locking when enabling/disabling SR-IOV Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 111/168] PCI/ERR: Fix uevent on failure to recover Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 112/168] PCI/AER: Fix missing uevent on recovery when a reset is requested Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 113/168] PCI/AER: Support errors introduced by PCIe r6.0 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 114/168] PCI: keystone: Use devm_request_irq() to free "ks-pcie-error-irq" on exit Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 115/168] PCI: rcar-host: Drop PMSR spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 116/168] PCI: rcar-host: Convert struct rcar_msi mask_lock into raw spinlock Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 117/168] PCI: tegra194: Fix broken tegra_pcie_ep_raise_msi_irq() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 118/168] PCI: tegra194: Handle errors in BPMP response Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 119/168] spi: cadence-quadspi: Flush posted register writes before INDAC access Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 120/168] spi: cadence-quadspi: Flush posted register writes before DAC access Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 121/168] x86/umip: Check that the instruction opcode is at least two bytes Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 122/168] x86/umip: Fix decoding of register forms of 0F 01 (SGDT and SIDT aliases) Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 123/168] selftests: mptcp: join: validate C-flag + def limit Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 124/168] wifi: ath11k: HAL SRNG: dont deinitialize and re-initialize again Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 125/168] mm/page_alloc: only set ALLOC_HIGHATOMIC for __GPF_HIGH allocations Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 126/168] mm/hugetlb: early exit from hugetlb_pages_alloc_boot() when max_huge_pages=0 Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 127/168] NFSD: Fix destination buffer size in nfsd4_ssc_setup_dul() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 128/168] nfsd: nfserr_jukebox in nlm_fopen should lead to a retry Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 129/168] ext4: verify orphan file size is not too big Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 130/168] ext4: increase i_disksize to offset + len in ext4_update_disksize_before_punch() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 131/168] ext4: correctly handle queries for metadata mappings Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 132/168] ext4: guard against EA inode refcount underflow in xattr update Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 133/168] ACPICA: Allow to skip Global Lock initialization Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 134/168] ext4: free orphan info with kvfree Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 135/168] lib/crypto/curve25519-hacl64: Disable KASAN with clang-17 and older Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 136/168] ASoC: codecs: wcd934x: Simplify with dev_err_probe Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 137/168] ASoC: wcd934x: fix error handling in wcd934x_codec_parse_data() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 138/168] KVM: x86: Dont (re)check L1 intercepts when completing userspace I/O Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 139/168] media: mc: Clear minor number before put device Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 140/168] Squashfs: add additional inode sanity checking Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 141/168] Squashfs: reject negative file sizes in squashfs_read_inode() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 142/168] tracing: Fix race condition in kprobe initialization causing NULL pointer dereference Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 143/168] ksmbd: add max ip connections parameter Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 144/168] PCI: endpoint: Remove surplus return statement from pci_epf_test_clean_dma_chan() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 145/168] PCI: endpoint: pci-epf-test: Add NULL check for DMA channels before release Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 146/168] mfd: intel_soc_pmic_chtdc_ti: Fix invalid regmap-config max_register value Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 147/168] mfd: intel_soc_pmic_chtdc_ti: Drop unneeded assignment for cache_type Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 148/168] mfd: intel_soc_pmic_chtdc_ti: Set use_single_read regmap_config flag Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 149/168] btrfs: fix the incorrect max_bytes value for find_lock_delalloc_range() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 150/168] rseq: Protect event mask against membarrier IPI Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 151/168] ipmi: Rework user message limit handling Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 152/168] ipmi: Fix handling of messages with provided receive message pointer Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 153/168] ACPI: property: Disregard references in data-only subnode lists Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 154/168] ACPI: property: Add code comments explaining what is going on Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 155/168] ACPI: property: Do not pass NULL handles to acpi_attach_data() Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 156/168] selftests/mm: skip soft-dirty tests when CONFIG_MEM_SOFT_DIRTY is disabled Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 157/168] asm-generic/io: Add _RET_IP_ to MMIO trace for more accurate debug info Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 158/168] asm-generic/io.h: suppress endianness warnings for relaxed accessors Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 159/168] asm-generic/io.h: Skip trace helpers if rwmmio events are disabled Greg Kroah-Hartman
2025-10-17 14:53 ` [PATCH 6.1 160/168] mptcp: pm: in-kernel: usable client side with C-flag Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 161/168] minixfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 162/168] pid: Add a judgment for ns null in pid_nr_ns Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 163/168] pid: make __task_pid_nr_ns(ns => NULL) safe for zombie callers Greg Kroah-Hartman
2025-10-17 15:31 ` Oleg Nesterov
2025-10-19 12:05 ` Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 164/168] fs: Add initramfs_options to set initramfs mount options Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 165/168] cramfs: Verify inode mode when loading from disk Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 166/168] writeback: Avoid softlockup when switching many inodes Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 167/168] writeback: Avoid excessively long inode switching times Greg Kroah-Hartman
2025-10-17 14:54 ` [PATCH 6.1 168/168] xen/events: Update virq_to_irq on migration Greg Kroah-Hartman
2025-10-17 18:16 ` [PATCH 6.1 000/168] 6.1.157-rc1 review Jon Hunter
2025-10-17 19:24 ` Pavel Machek
2025-10-17 21:43 ` Hardik Garg
2025-10-18 0:38 ` Shuah Khan
2025-10-18 2:03 ` Peter Schneider
2025-10-18 3:10 ` Florian Fainelli
2025-10-18 8:30 ` Brett A C Sheffield
2025-10-18 10:51 ` Naresh Kamboju
2025-10-18 16:06 ` Miguel Ojeda
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=20251017145129.983413703@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=john.garry@huawei.com \
--cc=martin.petersen@oracle.com \
--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).