From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Chao Yu <chao@kernel.org>,
Jaegeuk Kim <jaegeuk@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.12 440/626] f2fs: introduce f2fs_base_attr for global sysfs entries
Date: Tue, 27 May 2025 18:25:33 +0200 [thread overview]
Message-ID: <20250527162502.879454769@linuxfoundation.org> (raw)
In-Reply-To: <20250527162445.028718347@linuxfoundation.org>
6.12-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jaegeuk Kim <jaegeuk@kernel.org>
[ Upstream commit 21925ede449e038ed6f9efdfe0e79f15bddc34bc ]
In /sys/fs/f2fs/features, there's no f2fs_sb_info, so let's avoid to get
the pointer.
Reviewed-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
fs/f2fs/sysfs.c | 74 ++++++++++++++++++++++++++++++++++---------------
1 file changed, 52 insertions(+), 22 deletions(-)
diff --git a/fs/f2fs/sysfs.c b/fs/f2fs/sysfs.c
index d9a44f03e558b..7df638f901a1f 100644
--- a/fs/f2fs/sysfs.c
+++ b/fs/f2fs/sysfs.c
@@ -61,6 +61,12 @@ struct f2fs_attr {
int id;
};
+struct f2fs_base_attr {
+ struct attribute attr;
+ ssize_t (*show)(struct f2fs_base_attr *a, char *buf);
+ ssize_t (*store)(struct f2fs_base_attr *a, const char *buf, size_t len);
+};
+
static ssize_t f2fs_sbi_show(struct f2fs_attr *a,
struct f2fs_sb_info *sbi, char *buf);
@@ -864,6 +870,25 @@ static void f2fs_sb_release(struct kobject *kobj)
complete(&sbi->s_kobj_unregister);
}
+static ssize_t f2fs_base_attr_show(struct kobject *kobj,
+ struct attribute *attr, char *buf)
+{
+ struct f2fs_base_attr *a = container_of(attr,
+ struct f2fs_base_attr, attr);
+
+ return a->show ? a->show(a, buf) : 0;
+}
+
+static ssize_t f2fs_base_attr_store(struct kobject *kobj,
+ struct attribute *attr,
+ const char *buf, size_t len)
+{
+ struct f2fs_base_attr *a = container_of(attr,
+ struct f2fs_base_attr, attr);
+
+ return a->store ? a->store(a, buf, len) : 0;
+}
+
/*
* Note that there are three feature list entries:
* 1) /sys/fs/f2fs/features
@@ -882,14 +907,13 @@ static void f2fs_sb_release(struct kobject *kobj)
* please add new on-disk feature in this list only.
* - ref. F2FS_SB_FEATURE_RO_ATTR()
*/
-static ssize_t f2fs_feature_show(struct f2fs_attr *a,
- struct f2fs_sb_info *sbi, char *buf)
+static ssize_t f2fs_feature_show(struct f2fs_base_attr *a, char *buf)
{
return sysfs_emit(buf, "supported\n");
}
#define F2FS_FEATURE_RO_ATTR(_name) \
-static struct f2fs_attr f2fs_attr_##_name = { \
+static struct f2fs_base_attr f2fs_base_attr_##_name = { \
.attr = {.name = __stringify(_name), .mode = 0444 }, \
.show = f2fs_feature_show, \
}
@@ -1258,37 +1282,38 @@ static struct attribute *f2fs_attrs[] = {
};
ATTRIBUTE_GROUPS(f2fs);
+#define BASE_ATTR_LIST(name) (&f2fs_base_attr_##name.attr)
static struct attribute *f2fs_feat_attrs[] = {
#ifdef CONFIG_FS_ENCRYPTION
- ATTR_LIST(encryption),
- ATTR_LIST(test_dummy_encryption_v2),
+ BASE_ATTR_LIST(encryption),
+ BASE_ATTR_LIST(test_dummy_encryption_v2),
#if IS_ENABLED(CONFIG_UNICODE)
- ATTR_LIST(encrypted_casefold),
+ BASE_ATTR_LIST(encrypted_casefold),
#endif
#endif /* CONFIG_FS_ENCRYPTION */
#ifdef CONFIG_BLK_DEV_ZONED
- ATTR_LIST(block_zoned),
+ BASE_ATTR_LIST(block_zoned),
#endif
- ATTR_LIST(atomic_write),
- ATTR_LIST(extra_attr),
- ATTR_LIST(project_quota),
- ATTR_LIST(inode_checksum),
- ATTR_LIST(flexible_inline_xattr),
- ATTR_LIST(quota_ino),
- ATTR_LIST(inode_crtime),
- ATTR_LIST(lost_found),
+ BASE_ATTR_LIST(atomic_write),
+ BASE_ATTR_LIST(extra_attr),
+ BASE_ATTR_LIST(project_quota),
+ BASE_ATTR_LIST(inode_checksum),
+ BASE_ATTR_LIST(flexible_inline_xattr),
+ BASE_ATTR_LIST(quota_ino),
+ BASE_ATTR_LIST(inode_crtime),
+ BASE_ATTR_LIST(lost_found),
#ifdef CONFIG_FS_VERITY
- ATTR_LIST(verity),
+ BASE_ATTR_LIST(verity),
#endif
- ATTR_LIST(sb_checksum),
+ BASE_ATTR_LIST(sb_checksum),
#if IS_ENABLED(CONFIG_UNICODE)
- ATTR_LIST(casefold),
+ BASE_ATTR_LIST(casefold),
#endif
- ATTR_LIST(readonly),
+ BASE_ATTR_LIST(readonly),
#ifdef CONFIG_F2FS_FS_COMPRESSION
- ATTR_LIST(compression),
+ BASE_ATTR_LIST(compression),
#endif
- ATTR_LIST(pin_file),
+ BASE_ATTR_LIST(pin_file),
NULL,
};
ATTRIBUTE_GROUPS(f2fs_feat);
@@ -1362,9 +1387,14 @@ static struct kset f2fs_kset = {
.kobj = {.ktype = &f2fs_ktype},
};
+static const struct sysfs_ops f2fs_feat_attr_ops = {
+ .show = f2fs_base_attr_show,
+ .store = f2fs_base_attr_store,
+};
+
static const struct kobj_type f2fs_feat_ktype = {
.default_groups = f2fs_feat_groups,
- .sysfs_ops = &f2fs_attr_ops,
+ .sysfs_ops = &f2fs_feat_attr_ops,
};
static struct kobject f2fs_feat = {
--
2.39.5
next prev parent reply other threads:[~2025-05-27 17:07 UTC|newest]
Thread overview: 654+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-27 16:18 [PATCH 6.12 000/626] 6.12.31-rc1 review Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 001/626] drm/amd/display: Configure DTBCLK_P with OPTC only for dcn401 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 002/626] drm/amd/display: Do not enable replay when vtotal update is pending Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 003/626] drm/amd/display: Correct timing_adjust_pending flag setting Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 004/626] drm/amd/display: Defer BW-optimization-blocked DRR adjustments Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 005/626] i2c: designware: Use temporary variable for struct device Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 006/626] i2c: designware: Fix an error handling path in i2c_dw_pci_probe() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 007/626] phy: renesas: rcar-gen3-usb2: Move IRQ request in probe Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 008/626] phy: renesas: rcar-gen3-usb2: Lock around hardware registers and driver data Greg Kroah-Hartman
2025-05-30 9:43 ` Pavel Machek
2025-05-27 16:18 ` [PATCH 6.12 009/626] phy: renesas: rcar-gen3-usb2: Assert PLL reset on PHY power off Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 010/626] cpufreq: Add SM8650 to cpufreq-dt-platdev blocklist Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 011/626] nvmem: rockchip-otp: Move read-offset into variant-data Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 012/626] nvmem: rockchip-otp: add rk3576 variant data Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 013/626] nvmem: core: fix bit offsets of more than one byte Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 014/626] nvmem: core: verify cells raw_len Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 015/626] nvmem: core: update raw_len if the bit reading is required Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 016/626] nvmem: qfprom: switch to 4-byte aligned reads Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 017/626] scsi: target: iscsi: Fix timeout on deleted connection Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 018/626] scsi: ufs: Introduce quirk to extend PA_HIBERN8TIME for UFS devices Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 019/626] virtio_ring: Fix data race by tagging event_triggered as racy for KCSAN Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 020/626] dma/mapping.c: dev_dbg support for dma_addressing_limited Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 021/626] intel_th: avoid using deprecated page->mapping, index fields Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 022/626] mei: vsc: Use struct vsc_tp_packet as vsc-tp tx_buf and rx_buf type Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 023/626] dma-mapping: avoid potential unused data compilation warning Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 024/626] cgroup: Fix compilation issue due to cgroup_mutex not being exported Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 025/626] vhost_task: fix vhost_task_create() documentation Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 026/626] vhost-scsi: protect vq->log_used with vq->mutex Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 027/626] scsi: mpi3mr: Add level check to control event logging Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 028/626] net: enetc: refactor bulk flipping of RX buffers to separate function Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 029/626] dma-mapping: Fix warning reported for missing prototype Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 030/626] ima: process_measurement() needlessly takes inode_lock() on MAY_READ Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 031/626] fs/buffer: split locking for pagecache lookups Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 032/626] fs/buffer: introduce sleeping flavors " Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 033/626] fs/buffer: use sleeping version of __find_get_block() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 034/626] fs/ocfs2: " Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 035/626] fs/jbd2: " Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 036/626] fs/ext4: use sleeping version of sb_find_get_block() Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 037/626] drm/amd/display: Enable urgent latency adjustment on DCN35 Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 038/626] drm/amdgpu: Allow P2P access through XGMI Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 039/626] selftests/bpf: Mitigate sockmap_ktls disconnect_after_delete failure Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 040/626] block: fix race between set_blocksize and read paths Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 041/626] io_uring: dont duplicate flushing in io_req_post_cqe Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 042/626] bpf: fix possible endless loop in BPF map iteration Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 043/626] samples/bpf: Fix compilation failure for samples/bpf on LoongArch Fedora Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 044/626] kconfig: merge_config: use an empty file as initfile Greg Kroah-Hartman
2025-05-30 9:44 ` Pavel Machek
2025-05-27 16:18 ` [PATCH 6.12 045/626] x86/fred: Fix system hang during S4 resume with FRED enabled Greg Kroah-Hartman
2025-05-27 16:18 ` [PATCH 6.12 046/626] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 047/626] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 048/626] cifs: Fix querying and creating MF symlinks over SMB1 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 049/626] cifs: Fix negotiate retry functionality Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 050/626] smb: client: Store original IO parameters and prevent zero IO sizes Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 051/626] fuse: Return EPERM rather than ENOSYS from link() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 052/626] exfat: call bh_read in get_block only when necessary Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 053/626] io_uring/msg: initialise msg request opcode Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 054/626] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 055/626] NFS: Dont allow waiting for exiting tasks Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 056/626] SUNRPC: " Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 057/626] arm64: Add support for HIP09 Spectre-BHB mitigation Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 058/626] iommufd: Extend IOMMU_GET_HW_INFO to report PASID capability Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 059/626] tracing: Mark binary printing functions with __printf() attribute Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 060/626] ACPI: PNP: Add Intel OC Watchdog IDs to non-PNP device list Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 061/626] tpm: Convert warn to dbg in tpm2_start_auth_session() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 062/626] mailbox: pcc: Use acpi_os_ioremap() instead of ioremap() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 063/626] mailbox: use error ret code of of_parse_phandle_with_args() Greg Kroah-Hartman
2025-05-30 9:45 ` Pavel Machek
2025-05-27 16:19 ` [PATCH 6.12 064/626] riscv: Allow NOMMU kernels to access all of RAM Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 065/626] fbdev: fsl-diu-fb: add missing device_remove_file() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 066/626] fbcon: Use correct erase colour for clearing in fbcon Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 067/626] fbdev: core: tileblit: Implement missing margin clearing for tileblit Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 068/626] cifs: Set default Netbios RFC1001 server name to hostname in UNC Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 069/626] cifs: add validation check for the fields in smb_aces Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 070/626] cifs: Fix establishing NetBIOS session for SMB2+ connection Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 071/626] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 072/626] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 073/626] SUNRPC: rpcbind should never reset the port to the value 0 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 074/626] spi-rockchip: Fix register out of bounds access Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 075/626] ASoC: codecs: wsa884x: Correct VI sense channel mask Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 076/626] ASoC: codecs: wsa883x: " Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 077/626] mctp: Fix incorrect tx flow invalidation condition in mctp-i2c Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 078/626] net: tn40xx: add pci-id of the aqr105-based Tehuti TN4010 cards Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 079/626] net: tn40xx: create swnode for mdio and aqr105 phy and add to mdiobus Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 080/626] thermal/drivers/mediatek/lvts: Start sensor interrupts disabled Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 081/626] thermal/drivers/qoriq: Power down TMU on system suspend Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 082/626] Bluetooth: btmtksdio: Prevent enabling interrupts after IRQ handler removal Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 083/626] Bluetooth: Disable SCO support if READ_VOICE_SETTING is unsupported/broken Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 084/626] dql: Fix dql->limit value when reset Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 085/626] lockdep: Fix wait context check on softirq for PREEMPT_RT Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 086/626] objtool: Properly disable uaccess validation Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 087/626] PCI: dwc: ep: Ensure proper iteration over outbound map windows Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 088/626] r8169: disable RTL8126 ZRX-DC timeout Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 089/626] tools/build: Dont pass test log files to linker Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 090/626] pNFS/flexfiles: Report ENETDOWN as a connection error Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 091/626] drm/amdgpu/discovery: check ip_discovery fw file available Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 092/626] drm/amdkfd: set precise mem ops caps to disabled for gfx 11 and 12 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 093/626] PCI: vmd: Disable MSI remapping bypass under Xen Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 094/626] xen/pci: Do not register devices with segments >= 0x10000 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 095/626] ext4: on a remount, only log the ro or r/w state when it has changed Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 096/626] libnvdimm/labels: Fix divide error in nd_label_data_init() Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 097/626] pidfs: improve multi-threaded exec and premature thread-group leader exit polling Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 098/626] staging: vchiq_arm: Create keep-alive thread during probe Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 099/626] mmc: host: Wait for Vdd to settle on card power off Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 100/626] drm/amdgpu: Skip pcie_replay_count sysfs creation for VF Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 101/626] cgroup/rstat: avoid disabling irqs for O(num_cpu) Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 102/626] wifi: mt76: only mark tx-status-failed frames as ACKed on mt76x0/2 Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 103/626] wifi: mt76: mt7996: fix SER reset trigger on WED reset Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 104/626] wifi: mt76: mt7996: revise TXS size Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 105/626] wifi: mt76: mt7925: load the appropriate CLC data based on hardware type Greg Kroah-Hartman
2025-05-27 16:19 ` [PATCH 6.12 106/626] wifi: mt76: mt7925: fix fails to enter low power mode in suspend state Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 107/626] x86/headers: Replace __ASSEMBLY__ with __ASSEMBLER__ in UAPI headers Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 108/626] x86/stackprotector/64: Only export __ref_stack_chk_guard on CONFIG_SMP Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 109/626] x86/smpboot: Fix INIT delay assignment for extended Intel Families Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 110/626] x86/microcode: Update the Intel processor flag scan check Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 111/626] x86/mm: Check return value from memblock_phys_alloc_range() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 112/626] i2c: qup: Vote for interconnect bandwidth to DRAM Greg Kroah-Hartman
2025-05-30 9:50 ` Pavel Machek
2025-05-27 16:20 ` [PATCH 6.12 113/626] i2c: pxa: fix call balance of i2c->clk handling routines Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 114/626] btrfs: make btrfs_discard_workfn() block_group ref explicit Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 115/626] btrfs: avoid linker error in btrfs_find_create_tree_block() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 116/626] btrfs: run btrfs_error_commit_super() early Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 117/626] btrfs: fix non-empty delayed iputs list on unmount due to async workers Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 118/626] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 119/626] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 120/626] blk-cgroup: improve policy registration error handling Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 121/626] drm/amdgpu: release xcp_mgr on exit Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 122/626] drm/amd/display: Guard against setting dispclk low for dcn31x Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 123/626] drm/amdgpu: adjust drm_firmware_drivers_only() handling Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 124/626] i3c: master: svc: Fix missing STOP for master request Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 125/626] s390/tlb: Use mm_has_pgste() instead of mm_alloc_pgste() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 126/626] dlm: make tcp still work in multi-link env Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 127/626] clocksource/drivers/timer-riscv: Stop stimecmp when cpu hotplug Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 128/626] um: Store full CSGSFS and SS register from mcontext Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 129/626] um: Update min_low_pfn to match changes in uml_reserved Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 130/626] wifi: mwifiex: Fix HT40 bandwidth issue Greg Kroah-Hartman
2025-06-03 20:33 ` Francesco Dolcini
2025-06-04 8:39 ` Greg Kroah-Hartman
2025-06-04 10:23 ` Francesco Dolcini
2025-06-04 10:36 ` Greg Kroah-Hartman
2025-06-04 13:17 ` Francesco Dolcini
2025-06-04 13:28 ` Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 131/626] bnxt_en: Query FW parameters when the CAPS_CHANGE bit is set Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 132/626] riscv: Call secondary mmu notifier when flushing the tlb Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 133/626] ext4: reorder capability check last Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 134/626] hypfs_create_cpu_files(): add missing check for hypfs_mkdir() failure Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 135/626] scsi: st: Tighten the page format heuristics with MODE SELECT Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 136/626] scsi: st: ERASE does not change tape location Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 137/626] vfio/pci: Handle INTx IRQ_NOTCONNECTED Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 138/626] bpf: Return prog btf_id without capable check Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 139/626] PCI: dwc: Use resource start as ioremap() input in dw_pcie_pme_turn_off() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 140/626] jbd2: do not try to recover wiped journal Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 141/626] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 142/626] rtc: rv3032: fix EERD location Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 143/626] objtool: Fix error handling inconsistencies in check() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 144/626] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 145/626] erofs: initialize decompression early Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 146/626] spi: spi-mux: Fix coverity issue, unchecked return value Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 147/626] ASoC: pcm6240: Drop bogus code handling IRQ as GPIO Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 148/626] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 149/626] bpf: Allow pre-ordering for bpf cgroup progs Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 150/626] kbuild: fix argument parsing in scripts/config Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 151/626] kconfig: do not clear SYMBOL_VALID when reading include/config/auto.conf Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 152/626] crypto: octeontx2 - suppress auth failure screaming due to negative tests Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 153/626] dm: restrict dm device size to 2^63-512 bytes Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 154/626] net/smc: use the correct ndev to find pnetid by pnetid table Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 155/626] xen: Add support for XenServer 6.1 platform device Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 156/626] pinctrl-tegra: Restore SFSEL bit when freeing pins Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 157/626] mfd: tps65219: Remove TPS65219_REG_TI_DEV_ID check Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 158/626] drm/amdgpu/gfx12: dont read registers in mqd init Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 159/626] drm/amdgpu/gfx11: " Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 160/626] drm/amdgpu: Update SRIOV video codec caps Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 161/626] ASoC: sun4i-codec: support hp-det-gpios property Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 162/626] clk: qcom: lpassaudiocc-sc7280: Add support for LPASS resets for QCM6490 Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 163/626] ext4: reject the data_err=abort option in nojournal mode Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 164/626] ext4: do not convert the unwritten extents if data writeback fails Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 165/626] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Greg Kroah-Hartman
2025-05-27 16:20 ` [PATCH 6.12 166/626] posix-timers: Add cond_resched() to posix_timer_add() search loop Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 167/626] posix-timers: Ensure that timer initialization is fully visible Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 168/626] net: stmmac: dwmac-rk: Validate GRF and peripheral GRF during probe Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 169/626] net: hsr: Fix PRP duplicate detection Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 170/626] timer_list: Dont use %pK through printk() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 171/626] wifi: rtw89: set force HE TB mode when connecting to 11ax AP Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 172/626] netfilter: conntrack: Bound nf_conntrack sysctl writes Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 173/626] PNP: Expand length of fixup id string Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 174/626] phy: rockchip: usbdp: Only verify link rates/lanes/voltage when the corresponding set flags are set Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 175/626] arm64/mm: Check pmd_table() in pmd_trans_huge() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 176/626] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 177/626] mmc: dw_mmc: add exynos7870 DW MMC support Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 178/626] mmc: sdhci: Disable SD card clock before changing parameters Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 179/626] usb: xhci: Dont change the status of stalled TDs on failed Stop EP Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 180/626] wifi: iwlwifi: mvm: fix setting the TK when associated Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 181/626] hwmon: (dell-smm) Increment the number of fans Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 182/626] iommu: Keep dev->iommu state consistent Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 183/626] printk: Check CON_SUSPEND when unblanking a console Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 184/626] wifi: iwlwifi: dont warn when if there is a FW error Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 185/626] wifi: iwlwifi: w/a FW SMPS mode selection Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 186/626] wifi: iwlwifi: fix debug actions order Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 187/626] wifi: iwlwifi: mark Br device not integrated Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 188/626] wifi: iwlwifi: fix the ECKV UEFI variable name Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 189/626] wifi: mac80211: fix warning on disconnect during failed ML reconf Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 190/626] wifi: mac80211_hwsim: Fix MLD address translation Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 191/626] wifi: cfg80211: allow IR in 20 MHz configurations Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 192/626] ipv6: save dontfrag in cork Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 193/626] drm/amd/display: remove minimum Dispclk and apply oem panel timing Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 194/626] drm/amd/display: calculate the remain segments for all pipes Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 195/626] drm/amd/display: not abort link train when bw is low Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 196/626] drm/amd/display: Fix incorrect DPCD configs while Replay/PSR switch Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 197/626] gfs2: Check for empty queue in run_queue Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 198/626] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 199/626] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 200/626] badblocks: Fix a nonsense WARN_ON() which checks whether a u64 variable < 0 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 201/626] coresight-etb10: change etb_drvdata spinlocks type to raw_spinlock_t Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 202/626] iommu/amd/pgtbl_v2: Improve error handling Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 203/626] cpufreq: tegra186: Share policy per cluster Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 204/626] watchdog: aspeed: Update bootstatus handling Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 205/626] PCI: endpoint: pci-epf-test: Fix double free that causes kernel to oops Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 206/626] misc: pci_endpoint_test: Give disabled BARs a distinct error code Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 207/626] crypto: lzo - Fix compression buffer overrun Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 208/626] crypto: mxs-dcp - Only set OTP_KEY bit for OTP key Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 209/626] drm/amdkfd: Set per-process flags only once for gfx9/10/11/12 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 210/626] drm/amdkfd: Set per-process flags only once cik/vi Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 211/626] drm/amdgpu: Fix missing drain retry fault the last entry Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 212/626] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 213/626] arm64: tegra: Resize aperture for the IGX PCIe C5 slot Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 214/626] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 215/626] ALSA: seq: Improve data consistency at polling Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 216/626] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 217/626] rtc: ds1307: stop disabling alarms on probe Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 218/626] ieee802154: ca8210: Use proper setters and getters for bitwise types Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 219/626] drm/xe: Nuke VMs mapping upon close Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 220/626] drm/xe: Retry BO allocation Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 221/626] soc: samsung: include linux/array_size.h where needed Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 222/626] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 223/626] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Greg Kroah-Hartman
2025-05-30 9:53 ` Pavel Machek
2025-05-27 16:21 ` [PATCH 6.12 224/626] usb: xhci: set page size to the xHCI-supported size Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 225/626] dm cache: prevent BUG_ON by blocking retries on failed device resumes Greg Kroah-Hartman
2025-05-27 16:21 ` [PATCH 6.12 226/626] soc: mediatek: mtk-mutex: Add DPI1 SOF/EOF to MT8188 mutex tables Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 227/626] orangefs: Do not truncate file size Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 228/626] drm/gem: Test for imported GEM buffers with helper Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 229/626] net: phylink: use pl->link_interface in phylink_expects_phy() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 230/626] blk-throttle: dont take carryover for prioritized processing of metadata Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 231/626] remoteproc: qcom_wcnss: Handle platforms with only single power domain Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 232/626] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 233/626] drm/amd/display: Ensure DMCUB idle before reset on DCN31/DCN35 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 234/626] drm/amd/display: Skip checking FRL_MODE bit for PCON BW determination Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 235/626] drm/amd/display: Fix DMUB reset sequence for DCN401 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 236/626] drm/amd/display: Fix p-state type when p-state is unsupported Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 237/626] drm/amd/display: Request HW cursor on DCN3.2 with SubVP Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 238/626] perf/core: Clean up perf_try_init_event() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 239/626] media: cx231xx: set device_caps for 417 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 240/626] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 241/626] rcu: Fix get_state_synchronize_rcu_full() GP-start detection Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 242/626] net: ethernet: ti: cpsw_new: populate netdev of_node Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 243/626] net: phy: nxp-c45-tja11xx: add match_phy_device to TJA1103/TJA1104 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 244/626] dpll: Add an assertion to check freq_supported_num Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 245/626] ublk: enforce ublks_max only for unprivileged devices Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 246/626] iommufd: Disallow allocating nested parent domain with fault ID Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 247/626] media: imx335: Set vblank immediately Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 248/626] net: pktgen: fix mpls maximum labels list parsing Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 249/626] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 250/626] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 251/626] scsi: logging: Fix scsi_logging_level bounds Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 252/626] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 253/626] drm/rockchip: vop2: Add uv swap for cluster window Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 254/626] block: mark bounce buffering as incompatible with integrity Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 255/626] ublk: complete command synchronously on error Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 256/626] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 257/626] media: uvcvideo: Handle uvc menu translation inside uvc_get_le_value Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 258/626] clk: imx8mp: inform CCF of maximum frequency of clocks Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 259/626] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 260/626] hwmon: (gpio-fan) Add missing mutex locks Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 261/626] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 262/626] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 263/626] fpga: altera-cvp: Increase credit timeout Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 264/626] perf: arm_pmuv3: Call kvm_vcpu_pmu_resync_el0() before enabling counters Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 265/626] soc: apple: rtkit: Use high prio work queue Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 266/626] soc: apple: rtkit: Implement OSLog buffers properly Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 267/626] wifi: ath12k: Report proper tx completion status to mac80211 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 268/626] PCI: brcmstb: Expand inbound window size up to 64GB Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 269/626] PCI: brcmstb: Add a softdep to MIP MSI-X driver Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 270/626] firmware: arm_ffa: Set dma_mask for ffa devices Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 271/626] drm/xe/vf: Retry sending MMIO request to GUC on timeout error Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 272/626] drm/xe/pf: Create a link between PF and VF devices Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 273/626] net/mlx5: Avoid report two health errors on same syndrome Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 274/626] selftests/net: have `gro.sh -t` return a correct exit code Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 275/626] pinctrl: sophgo: avoid to modify untouched bit when setting cv1800 pinconf Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 276/626] drm/amdkfd: KFD release_work possible circular locking Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 277/626] drm/xe: xe_gen_wa_oob: replace program_invocation_short_name Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 278/626] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 279/626] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 280/626] net: xgene-v2: remove incorrect ACPI_PTR annotation Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 281/626] bonding: report duplicate MAC address in all situations Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 282/626] wifi: ath12k: Improve BSS discovery with hidden SSID in 6 GHz band Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 283/626] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Greg Kroah-Hartman
2025-05-30 9:54 ` Pavel Machek
2025-05-27 16:22 ` [PATCH 6.12 284/626] bpf: Search and add kfuncs in struct_ops prologue and epilogue Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 285/626] Octeontx2-af: RPM: Register driver with PCI subsys IDs Greg Kroah-Hartman
2025-05-27 16:22 ` [PATCH 6.12 286/626] x86/build: Fix broken copy command in genimage.sh when making isoimage Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 287/626] drm/amd/display: handle max_downscale_src_width fail check Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 288/626] drm/amd/display: fix dcn4x init failed Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 289/626] drm/amd/display: Fix mismatch type comparison Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 290/626] ASoC: mediatek: mt8188: Treat DMIC_GAINx_CUR as non-volatile Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 291/626] ASoC: mediatek: mt8188: Add reference for dmic clocks Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 292/626] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 293/626] vhost-scsi: Return queue full for page alloc failures during copy Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 294/626] vdpa/mlx5: Fix mlx5_vdpa_get_config() endianness on big-endian machines Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 295/626] cpuidle: menu: Avoid discarding useful information Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 296/626] media: adv7180: Disable test-pattern control on adv7180 Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 297/626] media: tc358746: improve calculation of the D-PHY timing registers Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 298/626] net/mlx5e: Add correct match to check IPSec syndromes for switchdev mode Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 299/626] scsi: mpi3mr: Update timestamp only for supervisor IOCs Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 300/626] loop: check in LO_FLAGS_DIRECT_IO in loop_default_blocksize Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 301/626] libbpf: Fix out-of-bound read Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 302/626] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 303/626] scsi: scsi_debug: First fixes for tapes Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 304/626] net/mlx5: Change POOL_NEXT_SIZE define value and make it global Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 305/626] x86/kaslr: Reduce KASLR entropy on most x86 systems Greg Kroah-Hartman
2025-05-30 9:47 ` Pavel Machek
2025-05-27 16:23 ` [PATCH 6.12 306/626] crypto: ahash - Set default reqsize from ahash_alg Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 307/626] crypto: skcipher - Zap type in crypto_alloc_sync_skcipher Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 308/626] net: ipv6: Init tunnel link-netns before registering dev Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 309/626] drm/xe/oa: Ensure that polled read returns latest data Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 310/626] MIPS: Use arch specific syscall name match function Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 311/626] drm/amdgpu: remove all KFD fences from the BO on release Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 312/626] x86/locking: Use ALT_OUTPUT_SP() for percpu_{,try_}cmpxchg{64,128}_op() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 313/626] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 314/626] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 315/626] clocksource: mips-gic-timer: Enable counter when CPUs start Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 316/626] PCI: epf-mhi: Update device ID for SA8775P Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 317/626] scsi: mpt3sas: Send a diag reset if target reset fails Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 318/626] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 319/626] wifi: rtw88: Fix rtw_init_ht_cap() " Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 320/626] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 321/626] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 322/626] wifi: rtw89: fw: get sb_sel_ver via get_unaligned_le32() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 323/626] wifi: rtw89: fw: add blacklist to avoid obsolete secure firmware Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 324/626] wifi: rtw89: 8922a: fix incorrect STA-ID in EHT MU PPDU Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 325/626] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 326/626] power: supply: axp20x_battery: Update temp sensor for AXP717 from device tree Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 327/626] EDAC/ie31200: work around false positive build warning Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 328/626] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 329/626] mfd: axp20x: AXP717: Add AXP717_TS_PIN_CFG to writeable regs Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 330/626] eeprom: ee1004: Check chip before probing Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 331/626] irqchip/riscv-imsic: Separate next and previous pointers in IMSIC vector Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 332/626] drm/amd/pm: Fetch current power limit from PMFW Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 333/626] drm/amd/display: Add support for disconnected eDP streams Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 334/626] drm/amd/display: Guard against setting dispclk low when active Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 335/626] drm/amd/display: Fix BT2020 YCbCr limited/full range input Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 336/626] drm/amd/display: Read LTTPR ALPM caps during link cap retrieval Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 337/626] Revert "drm/amd/display: Request HW cursor on DCN3.2 with SubVP" Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 338/626] drm/amd/display: Dont treat wb connector as physical in create_validate_stream_for_sink Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 339/626] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 340/626] RDMA/core: Fix best page size finding when it can cross SG entries Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 341/626] pmdomain: imx: gpcv2: use proper helper for property detection Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 342/626] can: c_can: Use of_property_present() to test existence of DT property Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 343/626] bpf: dont do clean_live_states when state->loop_entry->branches > 0 Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 344/626] bpf: copy_verifier_state() should copy loop_entry field Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 345/626] eth: mlx4: dont try to complete XDP frames in netpoll Greg Kroah-Hartman
2025-05-27 16:23 ` [PATCH 6.12 346/626] PCI: Fix old_size lower bound in calculate_iosize() too Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 347/626] ACPI: HED: Always initialize before evged Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 348/626] vxlan: Join / leave MC group after remote changes Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 349/626] x86/boot: Disable stack protector for early boot code Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 350/626] hrtimers: Replace hrtimer_clock_to_base_table with switch-case Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 351/626] irqchip/riscv-imsic: Set irq_set_affinity() for IMSIC base Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 352/626] media: test-drivers: vivid: dont call schedule in loop Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 353/626] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 354/626] net/mlx5: Apply rate-limiting to high temperature warning Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 355/626] firmware: arm_ffa: Reject higher major version as incompatible Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 356/626] firmware: arm_ffa: Handle the presence of host partition in the partition info Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 357/626] firmware: xilinx: Dont send linux address to get fpga config get status Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 358/626] ASoC: ops: Enforce platform maximum on initial value Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 359/626] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 360/626] ASoC: tas2764: Mark SW_RESET as volatile Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 361/626] ASoC: tas2764: Power up/down amp on mute ops Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 362/626] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 363/626] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 364/626] smack: recognize ipv4 CIPSO w/o categories Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 365/626] smack: Revert "smackfs: Added check catlen" Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 366/626] kunit: tool: Use qboot on QEMU x86_64 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 367/626] media: i2c: imx219: Correct the minimum vblanking value Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 368/626] media: v4l: Memset argument to 0 before calling get_mbus_config pad op Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 369/626] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 370/626] drm/xe: Stop ignoring errors from xe_ttm_stolen_mgr_init() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 371/626] drm/xe: Fix xe_tile_init_noalloc() error propagation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 372/626] clk: qcom: ipq5018: allow it to be bulid on arm32 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 373/626] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 374/626] drm/xe/debugfs: fixed the return value of wedged_mode_set Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 375/626] drm/xe/debugfs: Add missing xe_pm_runtime_put in wedge_mode_set Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 376/626] x86/ibt: Handle FineIBT in handle_cfi_failure() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 377/626] x86/traps: Cleanup and robustify decode_bug() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 378/626] sched: Reduce the default slice to avoid tasks getting an extra tick Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 379/626] serial: sh-sci: Update the suspend/resume support Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 380/626] pinctrl: renesas: rzg2l: Add suspend/resume support for pull up/down Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 381/626] phy: phy-rockchip-samsung-hdptx: Swap the definitions of LCPLL_REF and ROPLL_REF Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 382/626] phy: core: dont require set_mode() callback for phy_get_mode() to work Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 383/626] phy: exynos5-usbdrd: fix EDS distribution tuning (gs101) Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 384/626] soundwire: amd: change the soundwire wake enable/disable sequence Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 385/626] soundwire: cadence_master: set frame shape and divider based on actual clk freq Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 386/626] net: stmmac: dwmac-loongson: Set correct {tx,rx}_fifo_size Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 387/626] drm/amdgpu/mes11: fix set_hw_resources_1 calculation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 388/626] drm/amdkfd: fix missing L2 cache info in topology Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 389/626] drm/amdgpu: Set snoop bit for SDMA for MI series Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 390/626] drm/amd/display: pass calculated dram_speed_mts to dml2 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 391/626] drm/amd/display: Dont try AUX transactions on disconnected link Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 392/626] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 393/626] drm/amd/pm: Skip P2S load for SMU v13.0.12 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 394/626] drm/amd/display: Support multiple options during psr entry Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 395/626] Revert "drm/amd/display: Exit idle optimizations before attempt to access PHY" Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 396/626] drm/amd/display: Update CR AUX RD interval interpretation Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 397/626] drm/amd/display: Initial psr_version with correct setting Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 398/626] drm/amd/display: Increase block_sequence array size Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 399/626] drm/amd/display: Use Nominal vBlank If Provided Instead Of Capping It Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 400/626] drm/amd/display: Populate register address for dentist for dcn401 Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 401/626] drm/amdgpu: Use active umc info from discovery Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 402/626] drm/amdgpu: enlarge the VBIOS binary size limit Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 403/626] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 404/626] scsi: target: spc: Fix loop traversal in spc_rsoc_get_descr() Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 405/626] net/mlx5: XDP, Enable TX side XDP multi-buffer support Greg Kroah-Hartman
2025-05-27 16:24 ` [PATCH 6.12 406/626] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 407/626] net/mlx5e: set the tx_queue_len for pfifo_fast Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 408/626] net/mlx5e: reduce rep rxq depth to 256 for ECPF Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 409/626] net/mlx5e: reduce the max log mpwrq sz for ECPF and reps Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 410/626] drm/v3d: Add clock handling Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 411/626] xfrm: prevent high SEQ input in non-ESN mode Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 412/626] wifi: ath12k: fix the ampdu id fetch in the HAL_RX_MPDU_START TLV Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 413/626] mptcp: pm: userspace: flags: clearer msg if no remote addr Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 414/626] wifi: iwlwifi: use correct IMR dump variable Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 415/626] wifi: iwlwifi: dont warn during reprobe Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 416/626] wifi: mac80211: dont unconditionally call drv_mgd_complete_tx() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 417/626] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 418/626] wifi: mac80211: set ieee80211_prep_tx_info::link_id upon Auth Rx Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 419/626] net: fec: Refactor MAC reset to function Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 420/626] powerpc/pseries/iommu: memory notifier incorrectly adds TCEs for pmemory Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 421/626] powerpc/pseries/iommu: create DDW for devices with DMA mask less than 64-bits Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 422/626] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 423/626] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Greg Kroah-Hartman
2025-05-30 9:55 ` Pavel Machek
2025-05-27 16:25 ` [PATCH 6.12 424/626] r8152: add vendor/device ID pair for Dell Alienware AW1022z Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 425/626] iio: adc: ad7944: dont use storagebits for sizing Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 426/626] pstore: Change kmsg_bytes storage size to u32 Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 427/626] leds: trigger: netdev: Configure LED blink interval for HW offload Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 428/626] ext4: dont write back data before punch hole in nojournal mode Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 429/626] ext4: remove writable userspace mappings before truncating page cache Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 430/626] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 431/626] wifi: rtw88: Fix __rtw_download_firmware() " Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 432/626] wifi: rtw89: coex: Assign value over than 0 to avoid firmware timer hang Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 433/626] wifi: rtw89: fw: validate multi-firmware header before getting its size Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 434/626] wifi: rtw89: fw: validate multi-firmware header before accessing Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 435/626] wifi: rtw89: call power_on ahead before selecting firmware Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 436/626] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 437/626] net: page_pool: avoid false positive warning if NAPI was never added Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 438/626] tools/power turbostat: Clustered Uncore MHz counters should honor show/hide options Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 439/626] hwmon: (xgene-hwmon) use appropriate type for the latency value Greg Kroah-Hartman
2025-05-27 16:25 ` Greg Kroah-Hartman [this message]
2025-05-27 16:25 ` [PATCH 6.12 441/626] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 442/626] media: qcom: camss: Add default case in vfe_src_pad_code Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 443/626] drm/rockchip: vop2: Improve display modes handling on RK3588 HDMI0 Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 444/626] eth: fbnic: set IFF_UNICAST_FLT to avoid enabling promiscuous mode when adding unicast addrs Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 445/626] tools: ynl-gen: dont output external constants Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 446/626] net/mlx5e: Avoid WARN_ON when configuring MQPRIO with HTB offload enabled Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 447/626] cpufreq: amd-pstate: Remove unnecessary driver_lock in set_boost Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 448/626] vxlan: Annotate FDB data races Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 449/626] ipv4: ip_gre: Fix set but not used warning in ipgre_err() if IPv4-only Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 450/626] r8169: dont scan PHY addresses > 0 Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 451/626] net: flush_backlog() small changes Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 452/626] bridge: mdb: Allow replace of a host-joined group Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 453/626] ice: init flow director before RDMA Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 454/626] ice: treat dyn_allowed only as suggestion Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 455/626] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 456/626] rcu: handle unstable rdp in rcu_read_unlock_strict() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 457/626] rcu: fix header guard for rcu_all_qs() Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 458/626] perf: Avoid the read if the count is already updated Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 459/626] ice: count combined queues using Rx/Tx count Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 460/626] drm/xe/relay: Dont use GFP_KERNEL for new transactions Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 461/626] net/mana: fix warning in the writer of client oob Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 462/626] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 463/626] scsi: lpfc: Ignore ndlp rport mismatch in dev_loss_tmo callbk Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 464/626] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 465/626] scsi: st: Restore some drive settings after reset Greg Kroah-Hartman
2025-05-27 16:25 ` [PATCH 6.12 466/626] wifi: ath12k: Avoid napi_sync() before napi_enable() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 467/626] HID: usbkbd: Fix the bit shift number for LED_KANA Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 468/626] arm64: zynqmp: add clock-output-names property in clock nodes Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 469/626] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 470/626] ASoC: rt722-sdca: Add some missing readable registers Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 471/626] irqchip/riscv-aplic: Add support for hart indexes Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 472/626] dm vdo vio-pool: allow variable-sized metadata vios Greg Kroah-Hartman
2025-05-27 17:27 ` Matthew Sakai
2025-05-27 16:26 ` [PATCH 6.12 473/626] dm vdo indexer: prevent unterminated string warning Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 474/626] dm vdo: use a short static string for thread name prefix Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 475/626] drm/ast: Find VBIOS mode from regular display size Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 476/626] bpf: Use kallsyms to find the function name of a struct_opss stub function Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 477/626] bpftool: Fix readlink usage in get_fd_type Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 478/626] firmware: arm_scmi: Relax duplicate name constraint across protocol ids Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 479/626] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 480/626] perf/amd/ibs: Fix ->config to sample period calculation for OP PMU Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 481/626] clk: renesas: rzg2l-cpg: Refactor Runtime PM clock validation Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 482/626] wifi: rtl8xxxu: retry firmware download on error Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 483/626] wifi: rtw88: Dont use static local variable in rtw8822b_set_tx_power_index_by_rate Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 484/626] wifi: rtw89: add wiphy_lock() to work that isnt held wiphy_lock() yet Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 485/626] spi: zynqmp-gqspi: Always acknowledge interrupts Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 486/626] regulator: ad5398: Add device tree support Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 487/626] wifi: ath12k: fix ath12k_hal_tx_cmd_ext_desc_setup() info1 override Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 488/626] accel/qaic: Mask out SR-IOV PCI resources Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 489/626] drm/xe/pf: Reset GuC VF config when unprovisioning critical resource Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 490/626] wifi: ath9k: return by of_get_mac_address Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 491/626] wifi: ath12k: Fetch regdb.bin file from board-2.bin Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 492/626] wifi: ath12k: Fix end offset bit definition in monitor ring descriptor Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 493/626] drm: bridge: adv7511: fill stream capabilities Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 494/626] drm/nouveau: fix the broken marco GSP_MSG_MAX_SIZE Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 495/626] wifi: ath11k: Use dma_alloc_noncoherent for rx_tid buffer allocation Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 496/626] drm/xe: Move suballocator init to after display init Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 497/626] drm/xe: Do not attempt to bootstrap VF in execlists mode Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 498/626] wifi: rtw89: coex: Separated Wi-Fi connecting event from Wi-Fi scan event Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 499/626] drm/xe/sa: Always call drm_suballoc_manager_fini() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 500/626] drm/xe: Reject BO eviction if BO is bound to current VM Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 501/626] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 502/626] drm/buddy: fix issue that force_merge cannot free all roots Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 503/626] drm/panel-edp: Add Starry 116KHD024006 Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 504/626] drm: Add valid clones check Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 505/626] ASoC: imx-card: Adjust over allocation of memory in imx_card_parse_of() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 506/626] book3s64/radix: Fix compile errors when CONFIG_ARCH_WANT_OPTIMIZE_DAX_VMEMMAP=n Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 507/626] pinctrl: meson: define the pull up/down resistor value as 60 kOhm Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 508/626] smb: server: smb2pdu: check return value of xa_store() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 509/626] platform/x86/intel: hid: Add Pantherlake support Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 510/626] platform/x86: asus-wmi: Disable OOBE state after resume from hibernation Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 511/626] platform/x86: ideapad-laptop: add support for some new buttons Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 512/626] ASoC: cs42l43: Disable headphone clamps during type detection Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 513/626] ASoC: Intel: bytcr_rt5640: Add DMI quirk for Acer Aspire SW3-013 Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 514/626] ALSA: hda/realtek: Add quirk for HP Spectre x360 15-df1xxx Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 515/626] nvme-pci: add quirks for device 126f:1001 Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 516/626] nvme-pci: add quirks for WDC Blue SN550 15b7:5009 Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 517/626] ALSA: usb-audio: Fix duplicated name in MIDI substream names Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 518/626] nvmet-tcp: dont restore null sk_state_change Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 519/626] io_uring/fdinfo: annotate racy sq/cq head/tail reads Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 520/626] cifs: Fix and improve cifs_query_path_info() and cifs_query_file_info() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 521/626] cifs: Fix changing times and read-only attr over SMB1 smb_set_file_info() function Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 522/626] ASoC: intel/sdw_utils: Add volume limit to cs42l43 speakers Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 523/626] btrfs: compression: adjust cb->compressed_folios allocation type Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 524/626] btrfs: correct the order of prelim_ref arguments in btrfs__prelim_ref Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 525/626] btrfs: handle empty eb->folios in num_extent_folios() Greg Kroah-Hartman
2025-05-27 16:26 ` [PATCH 6.12 526/626] btrfs: avoid NULL pointer dereference if no valid csum tree Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 527/626] tools: ynl-gen: validate 0 len strings from kernel Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 528/626] block: only update request sector if needed Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 529/626] wifi: iwlwifi: add support for Killer on MTL Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 530/626] x86/Kconfig: make CFI_AUTO_DEFAULT depend on !RUST or Rust >= 1.88 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 531/626] xenbus: Allow PVH dom0 a non-local xenstore Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 532/626] drm/amd/display: Call FP Protect Before Mode Programming/Mode Support Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 533/626] __legitimize_mnt(): check for MNT_SYNC_UMOUNT should be under mount_lock Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 534/626] soundwire: bus: Fix race on the creation of the IRQ domain Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 535/626] espintcp: fix skb leaks Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 536/626] espintcp: remove encap socket caching to avoid reference leak Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 537/626] xfrm: Fix UDP GRO handling for some corner cases Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 538/626] dmaengine: idxd: Fix allowing write() from different address spaces Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 539/626] x86/sev: Fix operator precedence in GHCB_MSR_VMPL_REQ_LEVEL macro Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 540/626] kernel/fork: only call untrack_pfn_clear() on VMAs duplicated for fork() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 541/626] remoteproc: qcom_wcnss: Fix on platforms without fallback regulators Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 542/626] clk: sunxi-ng: d1: Add missing divider for MMC mod clocks Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 543/626] xfrm: Sanitize marks before insert Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 544/626] dmaengine: idxd: Fix ->poll() return value Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 545/626] dmaengine: fsl-edma: Fix return code for unhandled interrupts Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 546/626] driver core: Split devres APIs to device/devres.h Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 547/626] devres: Introduce devm_kmemdup_array() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 548/626] ASoC: SOF: Intel: hda: Fix UAF when reloading module Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 549/626] irqchip/riscv-imsic: Start local sync timer on correct CPU Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 550/626] perf/x86/intel: Fix segfault with PEBS-via-PT with sample_freq Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 551/626] Bluetooth: L2CAP: Fix not checking l2cap_chan security level Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 552/626] Bluetooth: btusb: use skb_pull to avoid unsafe access in QCA dump handling Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 553/626] ptp: ocp: Limit signal/freq counts in summary output functions Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 554/626] bridge: netfilter: Fix forwarding of fragmented packets Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 555/626] ice: fix vf->num_mac count with port representors Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 556/626] ice: Fix LACP bonds without SRIOV environment Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 557/626] idpf: fix null-ptr-deref in idpf_features_check Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 558/626] loop: dont require ->write_iter for writable files in loop_configure Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 559/626] pinctrl: qcom: switch to devm_register_sys_off_handler() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 560/626] net: dwmac-sun8i: Use parsed internal PHY address instead of 1 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 561/626] net: lan743x: Restore SGMII CTRL register on resume Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 562/626] io_uring: fix overflow resched cqe reordering Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 563/626] idpf: fix idpf_vport_splitq_napi_poll() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 564/626] sch_hfsc: Fix qlen accounting bug when using peek in hfsc_enqueue() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 565/626] octeontx2-pf: Add AF_XDP non-zero copy support Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 566/626] net/tipc: fix slab-use-after-free Read in tipc_aead_encrypt_done Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 567/626] octeontx2-af: Set LMT_ENA bit for APR table entries Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 568/626] octeontx2-af: Fix APR entry mapping based on APR_LMT_CFG Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 569/626] clk: s2mps11: initialise clk_hw_onecell_data::num before accessing ::hws[] in probe() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 570/626] crypto: algif_hash - fix double free in hash_accept Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 571/626] padata: do not leak refcount in reorder_work Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 572/626] can: slcan: allow reception of short error messages Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 573/626] can: bcm: add locking for bcm_op runtime updates Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 574/626] can: bcm: add missing rcu read protection for procfs content Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 575/626] ASoC: SOF: ipc4-control: Use SOF_CTRL_CMD_BINARY as numid for bytes_ext Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 576/626] ASoC: SOF: Intel: hda-bus: Use PIO mode on ACE2+ platforms Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 577/626] ASoc: SOF: topology: connect DAI to a single DAI link Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 578/626] ASoC: SOF: ipc4-pcm: Delay reporting is only supported for playback direction Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 579/626] ALSA: pcm: Fix race of buffer access at PCM OSS layer Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 580/626] ALSA: hda/realtek: Add quirk for Lenovo Yoga Pro 7 14ASP10 Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 581/626] llc: fix data loss when reading from a socket in llc_ui_recvmsg() Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 582/626] can: kvaser_pciefd: Continue parsing DMA buf after dropped RX Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 583/626] can: kvaser_pciefd: Fix echo_skb race Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 584/626] net: dsa: microchip: linearize skb for tail-tagging switches Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 585/626] vmxnet3: update MTU after device quiesce Greg Kroah-Hartman
2025-05-27 16:27 ` [PATCH 6.12 586/626] pmdomain: renesas: rcar: Remove obsolete nullify checks Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 587/626] pmdomain: core: Fix error checking in genpd_dev_pm_attach_by_id() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 588/626] platform/x86: dell-wmi-sysman: Avoid buffer overflow in current_password_store() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 589/626] thermal: intel: x86_pkg_temp_thermal: Fix bogus trip temperature Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 590/626] drm/edid: fixed the bug that hdr metadata was not reset Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 591/626] smb: client: Fix use-after-free in cifs_fill_dirent Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 592/626] arm64: dts: marvell: uDPU: define pinctrl state for alarm LEDs Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 593/626] smb: client: Reset all search buffer pointers when releasing buffer Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 594/626] Revert "drm/amd: Keep display off while going into S4" Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 595/626] Input: xpad - add more controllers Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 596/626] Input: synaptics-rmi - fix crash with unsupported versions of F34 Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 597/626] highmem: add folio_test_partial_kmap() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 598/626] memcg: always call cond_resched() after fn() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 599/626] mm/page_alloc.c: avoid infinite retries caused by cpuset race Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 600/626] mm: mmap: map MAP_STACK to VM_NOHUGEPAGE only if THP is enabled Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 601/626] mm: vmalloc: actually use the in-place vrealloc region Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 602/626] mm: vmalloc: only zero-init on vrealloc shrink Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 603/626] nilfs2: fix deadlock warnings caused by lock dependency in init_nilfs() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 604/626] Bluetooth: btmtksdio: Check function enabled before doing close Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 605/626] Bluetooth: btmtksdio: Do close if SDIO card removed without close Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 606/626] Revert "arm64: dts: allwinner: h6: Use RSB for AXP805 PMIC connection" Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 607/626] ksmbd: fix stream write failure Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 608/626] platform/x86: think-lmi: Fix attribute name usage for non-compliant items Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 609/626] spi: use container_of_cont() for to_spi_device() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 610/626] spi: spi-fsl-dspi: restrict register range for regmap access Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 611/626] spi: spi-fsl-dspi: Halt the module after a new message transfer Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 612/626] spi: spi-fsl-dspi: Reset SR flags before sending a new message Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 613/626] err.h: move IOMEM_ERR_PTR() to err.h Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 614/626] gcc-15: make unterminated string initialization just a warning Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 615/626] gcc-15: disable -Wunterminated-string-initialization entirely for now Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 616/626] Fix mis-uses of cc-option for warning disablement Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 617/626] kbuild: Properly disable -Wunterminated-string-initialization for clang Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 618/626] drm/amd/display: Exit idle optimizations before accessing PHY Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 619/626] bpf: abort verification if env->cur_state->loop_entry != NULL Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 620/626] serial: sh-sci: Save and restore more registers Greg Kroah-Hartman
2025-05-30 9:56 ` Pavel Machek
2025-05-27 16:28 ` [PATCH 6.12 621/626] drm/amdkfd: Correct F8_MODE for gfx950 Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 622/626] watchdog: aspeed: fix 64-bit division Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 623/626] pinctrl: tegra: Fix off by one in tegra_pinctrl_get_group() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 624/626] i3c: master: svc: Fix implicit fallthrough in svc_i3c_master_ibi_work() Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 625/626] x86/mm/init: Handle the special case of device private pages in add_pages(), to not increase max_pfn and trigger dma_addressing_limited() bounce buffers bounce buffers Greg Kroah-Hartman
2025-05-27 16:28 ` [PATCH 6.12 626/626] drm/gem: Internally test import_attach for imported objects Greg Kroah-Hartman
2025-05-27 18:43 ` [PATCH 6.12 000/626] 6.12.31-rc1 review Florian Fainelli
2025-05-27 22:15 ` Shuah Khan
2025-05-28 0:07 ` Peter Schneider
2025-05-28 0:18 ` Miguel Ojeda
2025-05-28 4:01 ` Harshit Mogalapalli
2025-05-28 6:36 ` Pavel Machek
2025-05-28 9:05 ` Ron Economos
2025-05-28 10:22 ` Naresh Kamboju
2025-05-28 10:51 ` Mark Brown
2025-05-28 13:01 ` Brett Mastbergen
2025-05-29 16:29 ` Hardik Garg
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=20250527162502.879454769@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=chao@kernel.org \
--cc=jaegeuk@kernel.org \
--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).