From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev,
Jarred White <jarredwhite@linux.microsoft.com>,
Easwar Hariharan <eahariha@linux.microsoft.com>,
"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.7 099/432] ACPI: CPPC: Use access_width over bit_width for system memory accesses
Date: Mon, 1 Apr 2024 17:41:26 +0200 [thread overview]
Message-ID: <20240401152556.076540867@linuxfoundation.org> (raw)
In-Reply-To: <20240401152553.125349965@linuxfoundation.org>
6.7-stable review patch. If anyone has any objections, please let me know.
------------------
From: Jarred White <jarredwhite@linux.microsoft.com>
[ Upstream commit 2f4a4d63a193be6fd530d180bb13c3592052904c ]
To align with ACPI 6.3+, since bit_width can be any 8-bit value, it
cannot be depended on to be always on a clean 8b boundary. This was
uncovered on the Cobalt 100 platform.
SError Interrupt on CPU26, code 0xbe000011 -- SError
CPU: 26 PID: 1510 Comm: systemd-udevd Not tainted 5.15.2.1-13 #1
Hardware name: MICROSOFT CORPORATION, BIOS MICROSOFT CORPORATION
pstate: 62400009 (nZCv daif +PAN -UAO +TCO -DIT -SSBS BTYPE=--)
pc : cppc_get_perf_caps+0xec/0x410
lr : cppc_get_perf_caps+0xe8/0x410
sp : ffff8000155ab730
x29: ffff8000155ab730 x28: ffff0080139d0038 x27: ffff0080139d0078
x26: 0000000000000000 x25: ffff0080139d0058 x24: 00000000ffffffff
x23: ffff0080139d0298 x22: ffff0080139d0278 x21: 0000000000000000
x20: ffff00802b251910 x19: ffff0080139d0000 x18: ffffffffffffffff
x17: 0000000000000000 x16: ffffdc7e111bad04 x15: ffff00802b251008
x14: ffffffffffffffff x13: ffff013f1fd63300 x12: 0000000000000006
x11: ffffdc7e128f4420 x10: 0000000000000000 x9 : ffffdc7e111badec
x8 : ffff00802b251980 x7 : 0000000000000000 x6 : ffff0080139d0028
x5 : 0000000000000000 x4 : ffff0080139d0018 x3 : 00000000ffffffff
x2 : 0000000000000008 x1 : ffff8000155ab7a0 x0 : 0000000000000000
Kernel panic - not syncing: Asynchronous SError Interrupt
CPU: 26 PID: 1510 Comm: systemd-udevd Not tainted
5.15.2.1-13 #1
Hardware name: MICROSOFT CORPORATION, BIOS MICROSOFT CORPORATION
Call trace:
dump_backtrace+0x0/0x1e0
show_stack+0x24/0x30
dump_stack_lvl+0x8c/0xb8
dump_stack+0x18/0x34
panic+0x16c/0x384
add_taint+0x0/0xc0
arm64_serror_panic+0x7c/0x90
arm64_is_fatal_ras_serror+0x34/0xa4
do_serror+0x50/0x6c
el1h_64_error_handler+0x40/0x74
el1h_64_error+0x7c/0x80
cppc_get_perf_caps+0xec/0x410
cppc_cpufreq_cpu_init+0x74/0x400 [cppc_cpufreq]
cpufreq_online+0x2dc/0xa30
cpufreq_add_dev+0xc0/0xd4
subsys_interface_register+0x134/0x14c
cpufreq_register_driver+0x1b0/0x354
cppc_cpufreq_init+0x1a8/0x1000 [cppc_cpufreq]
do_one_initcall+0x50/0x250
do_init_module+0x60/0x27c
load_module+0x2300/0x2570
__do_sys_finit_module+0xa8/0x114
__arm64_sys_finit_module+0x2c/0x3c
invoke_syscall+0x78/0x100
el0_svc_common.constprop.0+0x180/0x1a0
do_el0_svc+0x84/0xa0
el0_svc+0x2c/0xc0
el0t_64_sync_handler+0xa4/0x12c
el0t_64_sync+0x1a4/0x1a8
Instead, use access_width to determine the size and use the offset and
width to shift and mask the bits to read/write out. Make sure to add a
check for system memory since pcc redefines the access_width to
subspace id.
If access_width is not set, then fall back to using bit_width.
Signed-off-by: Jarred White <jarredwhite@linux.microsoft.com>
Reviewed-by: Easwar Hariharan <eahariha@linux.microsoft.com>
Cc: 5.15+ <stable@vger.kernel.org> # 5.15+
[ rjw: Subject and changelog edits, comment adjustments ]
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/acpi/cppc_acpi.c | 31 ++++++++++++++++++++++++++-----
1 file changed, 26 insertions(+), 5 deletions(-)
diff --git a/drivers/acpi/cppc_acpi.c b/drivers/acpi/cppc_acpi.c
index 7ff269a78c208..bcc5d8f5bb5ee 100644
--- a/drivers/acpi/cppc_acpi.c
+++ b/drivers/acpi/cppc_acpi.c
@@ -163,6 +163,13 @@ show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, nominal_freq);
show_cppc_data(cppc_get_perf_ctrs, cppc_perf_fb_ctrs, reference_perf);
show_cppc_data(cppc_get_perf_ctrs, cppc_perf_fb_ctrs, wraparound_time);
+/* Check for valid access_width, otherwise, fallback to using bit_width */
+#define GET_BIT_WIDTH(reg) ((reg)->access_width ? (8 << ((reg)->access_width - 1)) : (reg)->bit_width)
+
+/* Shift and apply the mask for CPC reads/writes */
+#define MASK_VAL(reg, val) ((val) >> ((reg)->bit_offset & \
+ GENMASK(((reg)->bit_width), 0)))
+
static ssize_t show_feedback_ctrs(struct kobject *kobj,
struct kobj_attribute *attr, char *buf)
{
@@ -777,6 +784,7 @@ int acpi_cppc_processor_probe(struct acpi_processor *pr)
} else if (gas_t->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY) {
if (gas_t->address) {
void __iomem *addr;
+ size_t access_width;
if (!osc_cpc_flexible_adr_space_confirmed) {
pr_debug("Flexible address space capability not supported\n");
@@ -784,7 +792,8 @@ int acpi_cppc_processor_probe(struct acpi_processor *pr)
goto out_free;
}
- addr = ioremap(gas_t->address, gas_t->bit_width/8);
+ access_width = GET_BIT_WIDTH(gas_t) / 8;
+ addr = ioremap(gas_t->address, access_width);
if (!addr)
goto out_free;
cpc_ptr->cpc_regs[i-2].sys_mem_vaddr = addr;
@@ -980,6 +989,7 @@ int __weak cpc_write_ffh(int cpunum, struct cpc_reg *reg, u64 val)
static int cpc_read(int cpu, struct cpc_register_resource *reg_res, u64 *val)
{
void __iomem *vaddr = NULL;
+ int size;
int pcc_ss_id = per_cpu(cpu_pcc_subspace_idx, cpu);
struct cpc_reg *reg = ®_res->cpc_entry.reg;
@@ -991,7 +1001,7 @@ static int cpc_read(int cpu, struct cpc_register_resource *reg_res, u64 *val)
*val = 0;
if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
- u32 width = 8 << (reg->access_width - 1);
+ u32 width = GET_BIT_WIDTH(reg);
u32 val_u32;
acpi_status status;
@@ -1015,7 +1025,9 @@ static int cpc_read(int cpu, struct cpc_register_resource *reg_res, u64 *val)
return acpi_os_read_memory((acpi_physical_address)reg->address,
val, reg->bit_width);
- switch (reg->bit_width) {
+ size = GET_BIT_WIDTH(reg);
+
+ switch (size) {
case 8:
*val = readb_relaxed(vaddr);
break;
@@ -1034,18 +1046,22 @@ static int cpc_read(int cpu, struct cpc_register_resource *reg_res, u64 *val)
return -EFAULT;
}
+ if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
+ *val = MASK_VAL(reg, *val);
+
return 0;
}
static int cpc_write(int cpu, struct cpc_register_resource *reg_res, u64 val)
{
int ret_val = 0;
+ int size;
void __iomem *vaddr = NULL;
int pcc_ss_id = per_cpu(cpu_pcc_subspace_idx, cpu);
struct cpc_reg *reg = ®_res->cpc_entry.reg;
if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_IO) {
- u32 width = 8 << (reg->access_width - 1);
+ u32 width = GET_BIT_WIDTH(reg);
acpi_status status;
status = acpi_os_write_port((acpi_io_address)reg->address,
@@ -1067,7 +1083,12 @@ static int cpc_write(int cpu, struct cpc_register_resource *reg_res, u64 val)
return acpi_os_write_memory((acpi_physical_address)reg->address,
val, reg->bit_width);
- switch (reg->bit_width) {
+ size = GET_BIT_WIDTH(reg);
+
+ if (reg->space_id == ACPI_ADR_SPACE_SYSTEM_MEMORY)
+ val = MASK_VAL(reg, val);
+
+ switch (size) {
case 8:
writeb_relaxed(val, vaddr);
break;
--
2.43.0
next prev parent reply other threads:[~2024-04-01 16:15 UTC|newest]
Thread overview: 448+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-01 15:39 [PATCH 6.7 000/432] 6.7.12-rc1 review Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 001/432] KVM: x86: Advertise CPUID.(EAX=7,ECX=2):EDX[5:0] to userspace Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 002/432] KVM: x86: Use a switch statement and macros in __feature_translate() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 003/432] drm/vmwgfx: Unmap the surface before resetting it on a plane state Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 004/432] wifi: brcmfmac: Fix use-after-free bug in brcmf_cfg80211_detach Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 005/432] wifi: brcmfmac: avoid invalid list operation when vendor attach fails Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 006/432] media: staging: ipu3-imgu: Set fields before media_entity_pads_init() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 007/432] arm64: dts: qcom: sc7280: Add additional MSI interrupts Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 008/432] remoteproc: virtio: Fix wdg cannot recovery remote processor Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 009/432] clk: qcom: gcc-sdm845: Add soft dependency on rpmhpd Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 010/432] smack: Set SMACK64TRANSMUTE only for dirs in smack_inode_setxattr() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 011/432] smack: Handle SMACK64TRANSMUTE in smack_inode_setsecurity() Greg Kroah-Hartman
2024-04-01 15:39 ` [PATCH 6.7 012/432] arm: dts: marvell: Fix maxium->maxim typo in brownstone dts Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 013/432] drm/vmwgfx: Fix possible null pointer derefence with invalid contexts Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 014/432] arm64: dts: qcom: sm8450-hdk: correct AMIC4 and AMIC5 microphones Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 015/432] serial: max310x: fix NULL pointer dereference in I2C instantiation Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 016/432] drm/vmwgfx: Fix the lifetime of the bo cursor memory Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 017/432] pci_iounmap(): Fix MMIO mapping leak Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 018/432] media: xc4000: Fix atomicity violation in xc4000_get_frequency Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 019/432] media: mc: Add local pad to pipeline regardless of the link state Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 020/432] media: mc: Fix flags handling when creating pad links Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 021/432] media: nxp: imx8-isi: Check whether crossbar pad is non-NULL before access Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 022/432] media: mc: Add num_links flag to media_pad Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 023/432] media: mc: Rename pad variable to clarify intent Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 024/432] media: mc: Expand MUST_CONNECT flag to always require an enabled link Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 025/432] media: nxp: imx8-isi: Mark all crossbar sink pads as MUST_CONNECT Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 026/432] md: use RCU lock to protect traversal in md_spares_need_change() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 027/432] KVM: Always flush async #PF workqueue when vCPU is being destroyed Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 028/432] arm64: dts: qcom: sm8550-qrd: correct WCD9385 TX port mapping Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 029/432] arm64: dts: qcom: sm8550-mtp: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 030/432] cpufreq: amd-pstate: Fix min_perf assignment in amd_pstate_adjust_perf() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 031/432] thermal/intel: Fix intel_tcc_get_temp() to support negative CPU temperature Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 032/432] powercap: intel_rapl: Fix a NULL pointer dereference Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 033/432] powercap: intel_rapl: Fix locking in TPMI RAPL Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 034/432] powercap: intel_rapl_tpmi: Fix a register bug Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 035/432] powercap: intel_rapl_tpmi: Fix System Domain probing Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 036/432] powerpc/smp: Adjust nr_cpu_ids to cover all threads of a core Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 037/432] powerpc/smp: Increase nr_cpu_ids to include the boot CPU Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 038/432] sparc64: NMI watchdog: fix return value of __setup handler Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 039/432] sparc: vDSO: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 040/432] crypto: qat - change SLAs cleanup flow at shutdown Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 041/432] crypto: qat - resolve race condition during AER recovery Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 042/432] selftests/mqueue: Set timeout to 180 seconds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 043/432] ext4: correct best extent lstart adjustment logic Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 044/432] block: Clear zone limits for a non-zoned stacked queue Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 045/432] kasan/test: avoid gcc warning for intentional overflow Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 046/432] bounds: support non-power-of-two CONFIG_NR_CPUS Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 047/432] fat: fix uninitialized field in nostale filehandles Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 048/432] fuse: fix VM_MAYSHARE and direct_io_allow_mmap Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 049/432] mfd: twl: Select MFD_CORE Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 050/432] ubifs: Set page uptodate in the correct place Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 051/432] ubi: Check for too small LEB size in VTBL code Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 052/432] ubi: correct the calculation of fastmap size Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 053/432] mtd: rawnand: meson: fix scrambling mode value in command macro Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 054/432] md/md-bitmap: fix incorrect usage for sb_index Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 055/432] x86/nmi: Fix the inverse "in NMI handler" check Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 056/432] parisc/unaligned: Rewrite 64-bit inline assembly of emulate_ldd() Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 057/432] parisc: Avoid clobbering the C/B bits in the PSW with tophys and tovirt macros Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 058/432] parisc: Fix ip_fast_csum Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 059/432] parisc: Fix csum_ipv6_magic on 32-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 060/432] parisc: Fix csum_ipv6_magic on 64-bit systems Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 061/432] parisc: Strip upper 32 bit of sum in csum_ipv6_magic for 64-bit builds Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 062/432] md/raid5: fix atomicity violation in raid5_cache_count Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 063/432] iio: adc: rockchip_saradc: fix bitmask for channels on SARADCv2 Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 064/432] iio: adc: rockchip_saradc: use mask for write_enable bitfield Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 065/432] docs: Restore "smart quotes" for quotes Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 066/432] cpufreq: Limit resolving a frequency to policy min/max Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 067/432] PM: suspend: Set mem_sleep_current during kernel command line setup Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 068/432] vfio/pds: Always clear the save/restore FDs on reset Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 069/432] clk: qcom: gcc-ipq5018: fix terminating of frequency table arrays Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 070/432] clk: qcom: gcc-ipq6018: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 071/432] clk: qcom: gcc-ipq8074: " Greg Kroah-Hartman
2024-04-01 15:40 ` [PATCH 6.7 072/432] clk: qcom: gcc-ipq9574: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 073/432] clk: qcom: mmcc-apq8084: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 074/432] clk: qcom: mmcc-msm8974: " Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 075/432] usb: xhci: Add error handling in xhci_map_urb_for_dma Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 076/432] powerpc/fsl: Fix mfpmr build errors with newer binutils Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 077/432] USB: serial: ftdi_sio: add support for GMC Z216C Adapter IR-USB Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 078/432] USB: serial: add device ID for VeriFone adapter Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 079/432] USB: serial: cp210x: add ID for MGP Instruments PDS100 Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 080/432] wifi: mac80211: track capability/opmode NSS separately Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 081/432] USB: serial: option: add MeiG Smart SLM320 product Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 082/432] KVM: x86/xen: inject vCPU upcall vector when local APIC is enabled Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 083/432] USB: serial: cp210x: add pid/vid for TDK NC0110013M and MM0110113M Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 084/432] PM: sleep: wakeirq: fix wake irq warning in system suspend Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 085/432] mmc: tmio: avoid concurrent runs of mmc_request_done() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 086/432] fuse: replace remaining make_bad_inode() with fuse_make_bad() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 087/432] fuse: fix root lookup with nonzero generation Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 088/432] fuse: dont unhash root Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 089/432] usb: typec: ucsi: Clean up UCSI_CABLE_PROP macros Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 090/432] usb: dwc3-am62: fix module unload/reload behavior Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 091/432] usb: dwc3-am62: Disable wakeup at remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 092/432] serial: core: only stop transmit when HW fifo is empty Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 093/432] serial: Lock console when calling into driver before registration Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 094/432] btrfs: qgroup: always free reserved space for extent records Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 095/432] btrfs: fix off-by-one chunk length calculation at contains_pending_extent() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 096/432] wifi: rtw88: Add missing VID/PIDs for 8811CU and 8821CU Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 097/432] PCI/PM: Drain runtime-idle callbacks before driver removal Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 098/432] PCI/DPC: Quirk PIO log size for Intel Raptor Lake Root Ports Greg Kroah-Hartman
2024-04-01 15:41 ` Greg Kroah-Hartman [this message]
2024-04-01 15:41 ` [PATCH 6.7 100/432] md: dont clear MD_RECOVERY_FROZEN for new dm-raid until resume Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 101/432] md: export helpers to stop sync_thread Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 102/432] md: export helper md_is_rdwr() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 103/432] md: add a new helper reshape_interrupted() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 104/432] dm-raid: really frozen sync_thread during suspend Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 105/432] md/dm-raid: dont call md_reap_sync_thread() directly Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 106/432] dm-raid: add a new helper prepare_suspend() in md_personality Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 107/432] dm-raid456, md/raid456: fix a deadlock for dm-raid456 while io concurrent with reshape Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 108/432] dm-raid: fix lockdep waring in "pers->hot_add_disk" Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 109/432] powerpc: xor_vmx: Add -mhard-float to CFLAGS Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 110/432] block: Fix page refcounts for unaligned buffers in __bio_release_pages() Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 111/432] mac802154: fix llsec key resources release in mac802154_llsec_key_del Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 112/432] mm: swap: fix race between free_swap_and_cache() and swapoff() Greg Kroah-Hartman
2024-04-02 7:55 ` Ryan Roberts
2024-04-01 15:41 ` [PATCH 6.7 113/432] mmc: core: Fix switch on gp3 partition Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 114/432] Bluetooth: btnxpuart: Fix btnxpuart_close Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 115/432] leds: trigger: netdev: Fix kernel panic on interface rename trig notify Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 116/432] drm/etnaviv: Restore some id values Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 117/432] landlock: Warn once if a Landlock action is requested while disabled Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 118/432] io_uring: fix mshot read defer taskrun cqe posting Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 119/432] hwmon: (amc6821) add of_match table Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 120/432] io_uring: fix io_queue_proc modifying req->flags Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 121/432] ext4: fix corruption during on-line resize Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 122/432] nvmem: meson-efuse: fix function pointer type mismatch Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 123/432] slimbus: core: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 124/432] phy: tegra: xusb: Add API to retrieve the port number of phy Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 125/432] usb: gadget: tegra-xudc: Fix USB3 PHY retrieval logic Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 126/432] speakup: Fix 8bit characters from direct synth Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 127/432] debugfs: fix wait/cancellation handling during remove Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 128/432] PCI/AER: Block runtime suspend when handling errors Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 129/432] io_uring/net: correctly handle multishot recvmsg retry setup Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 130/432] io_uring: fix mshot io-wq checks Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 131/432] PCI: qcom: Disable ASPM L0s for sc8280xp, sa8540p and sa8295p Greg Kroah-Hartman
2024-04-01 15:41 ` [PATCH 6.7 132/432] sparc32: Fix parport build with sparc32 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 133/432] nfs: fix UAF in direct writes Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 134/432] NFS: Read unlock folio on nfs_page_create_from_folio() error Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 135/432] kbuild: Move -Wenum-{compare-conditional,enum-conversion} into W=1 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 136/432] PCI: qcom: Enable BDF to SID translation properly Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 137/432] PCI: dwc: endpoint: Fix advertised resizable BAR size Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 138/432] PCI: hv: Fix ring buffer size calculation Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 139/432] smb: client: stop revalidating reparse points unnecessarily Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 140/432] cifs: prevent updating file size from server if we have a read/write lease Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 141/432] cifs: allow changing password during remount Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 142/432] thermal/drivers/mediatek: Fix control buffer enablement on MT7896 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 143/432] vfio/pci: Disable auto-enable of exclusive INTx IRQ Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 144/432] vfio/pci: Lock external INTx masking ops Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 145/432] vfio/platform: Disable virqfds on cleanup Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 146/432] i915: make inject_virtual_interrupt() void Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 147/432] eventfd: simplify eventfd_signal() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 148/432] vfio/platform: Create persistent IRQ handlers Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 149/432] vfio/fsl-mc: Block calling interrupt handler without trigger Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 150/432] tpm,tpm_tis: Avoid warning splat at shutdown Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 151/432] ksmbd: replace generic_fillattr with vfs_getattr Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 152/432] ksmbd: retrieve number of blocks using vfs_getattr in set_file_allocation_info Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 153/432] platform/x86/intel/tpmi: Change vsec offset to u64 Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 154/432] io_uring/rw: return IOU_ISSUE_SKIP_COMPLETE for multishot retry Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 155/432] io_uring: clean rings on NO_MMAP alloc fail Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 156/432] ring-buffer: Fix waking up ring buffer readers Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 157/432] ring-buffer: Do not set shortest_full when full target is hit Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 158/432] ring-buffer: Fix resetting of shortest_full Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 159/432] ring-buffer: Fix full_waiters_pending in poll Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 160/432] ring-buffer: Use wait_event_interruptible() in ring_buffer_wait() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 161/432] dlm: fix user space lkb refcounting Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 162/432] soc: fsl: qbman: Always disable interrupts when taking cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 163/432] soc: fsl: qbman: Use raw spinlock for cgr_lock Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 164/432] s390/zcrypt: fix reference counting on zcrypt card objects Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 165/432] drm/probe-helper: warn about negative .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 166/432] drm/panel: do not return negative error codes from drm_panel_get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 167/432] drm/exynos: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 168/432] drm/imx/ipuv3: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 169/432] drm/vc4: hdmi: " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 170/432] clocksource/drivers/timer-riscv: Clear timer interrupt on timer initialization Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 171/432] memtest: use {READ,WRITE}_ONCE in memory scanning Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 172/432] Revert "block/mq-deadline: use correct way to throttling write requests" Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 173/432] f2fs: mark inode dirty for FI_ATOMIC_COMMITTED flag Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 174/432] f2fs: truncate page cache before clearing flags when aborting atomic write Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 175/432] nilfs2: fix failure to detect DAT corruption in btree and direct mappings Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 176/432] nilfs2: prevent kernel bug at submit_bh_wbc() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 177/432] cifs: make sure server interfaces are requested only for SMB3+ Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 178/432] cifs: delete unnecessary NULL checks in cifs_chan_update_iface() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 179/432] cifs: make cifs_chan_update_iface() a void function Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 180/432] cifs: reduce warning log level for server not advertising interfaces Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 181/432] cifs: open_cached_dir(): add FILE_READ_EA to desired access Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 182/432] mtd: rawnand: Fix and simplify again the continuous read derivations Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 183/432] mtd: rawnand: Add a helper for calculating a page index Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 184/432] mtd: rawnand: Ensure all continuous terms are always in sync Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 185/432] mtd: rawnand: Constrain even more when continuous reads are enabled Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 186/432] cpufreq: dt: always allocate zeroed cpumask Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 187/432] io_uring/futex: always remove futex entry for cancel all Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 188/432] io_uring/waitid: always remove waitid " Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 189/432] x86/CPU/AMD: Update the Zenbleed microcode revisions Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 190/432] ksmbd: fix slab-out-of-bounds in smb_strndup_from_utf16() Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 191/432] net: esp: fix bad handling of pages from page_pool Greg Kroah-Hartman
2024-04-01 15:42 ` [PATCH 6.7 192/432] NFSD: Fix nfsd_clid_class use of __string_len() macro Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 193/432] drm/i915: Add missing ; to __assign_str() macros in tracepoint code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 194/432] net: hns3: tracing: fix hclgevf trace event strings Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 195/432] cxl/trace: Properly initialize cxl_poison region name Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 196/432] ksmbd: fix potencial out-of-bounds when buffer offset is invalid Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 197/432] virtio: Define feature bit for administration virtqueue Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 198/432] virtio: reenable config if freezing device failed Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 199/432] LoongArch: Change __my_cpu_offset definition to avoid mis-optimization Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 200/432] LoongArch: Define the __io_aw() hook as mmiowb() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 201/432] LoongArch/crypto: Clean up useless assignment operations Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 202/432] wireguard: netlink: check for dangling peer via is_dead instead of empty list Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 203/432] wireguard: netlink: access device through ctx instead of peer Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 204/432] wireguard: selftests: set RISCV_ISA_FALLBACK on riscv{32,64} Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 205/432] ahci: asm1064: correct count of reported ports Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 206/432] ahci: asm1064: asm1166: dont limit " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 207/432] drm/amd/display: Change default size for dummy plane in DML2 Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 208/432] drm/amdgpu: amdgpu_ttm_gart_bind set gtt bound flag Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 209/432] drm/amdgpu/pm: Fix NULL pointer dereference when get power limit Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 210/432] drm/amdgpu/pm: Check the validity of overdiver " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 211/432] drm/amd/display: Add ODM check during pipe split/merge validation Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 212/432] drm/amd/display: Override min required DCFCLK in dml1_validate Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 213/432] drm/amd/display: Allow dirty rects to be sent to dmub when abm is active Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 214/432] drm/amd/display: Add dml2 copy functions Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 215/432] drm/amd/display: Init DPPCLK from SMU on dcn32 Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 216/432] drm/amd/display: Update odm when ODM combine is changed on an otg master pipe with no plane Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 217/432] drm/amd/display: Fix idle check for shared firmware state Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 218/432] drm/amd/display: Return the correct HDCP error code Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 219/432] drm/amd/display: Fix noise issue on HDMI AV mute Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 220/432] dm snapshot: fix lockup in dm_exception_table_exit Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 221/432] x86/pm: Work around false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 222/432] wifi: brcmfmac: add per-vendor feature detection callback Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 223/432] wifi: brcmfmac: cfg80211: Use WSEC to set SAE password Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 224/432] wifi: brcmfmac: Demote vendor-specific attach/detach messages to info Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 225/432] drm/ttm: Make sure the mapped tt pages are decrypted when needed Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 226/432] vfio: Introduce interface to flush virqfd inject workqueue Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 227/432] vfio/pci: Create persistent INTx handler Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 228/432] drm/bridge: add ->edid_read hook and drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 229/432] drm/bridge: lt8912b: use drm_bridge_edid_read() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 230/432] drm/bridge: lt8912b: clear the EDID property on failures Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 231/432] drm/bridge: lt8912b: do not return negative values from .get_modes() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 232/432] workqueue: Shorten events_freezable_power_efficient name Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 233/432] drm/amd/display: Use freesync when `DRM_EDID_FEATURE_CONTINUOUS_FREQ` found Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 234/432] netfilter: nf_tables: mark set as dead when unbinding anonymous set with timeout Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 235/432] netfilter: nf_tables: disallow anonymous set with timeout flag Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 236/432] netfilter: nf_tables: reject constant set with timeout Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 237/432] Drivers: hv: vmbus: Calculate ring buffer size for more efficient use of memory Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 238/432] nouveau: lock the client object tree Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 239/432] drm/nouveau: fix stale locked mutex in nouveau_gem_ioctl_pushbuf Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 240/432] crypto: rk3288 - Fix use after free in unprepare Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 241/432] crypto: sun8i-ce " Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 242/432] Revert "crypto: pkcs7 - remove sha1 support" Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 243/432] xfrm: Avoid clang fortify warning in copy_to_user_tmpl() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 244/432] mm, mmap: fix vma_merge() case 7 with vma_ops->close Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 245/432] selftests: mptcp: diag: return KSFT_FAIL not test_cnt Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 246/432] usb: typec: tpcm: Fix PORT_RESET behavior for self powered devices Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 247/432] thunderbolt: Fix NULL pointer dereference in tb_port_update_credits() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 248/432] cgroup/cpuset: Fix retval in update_cpumask() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 249/432] cgroup/cpuset: Fix a memory leak in update_exclusive_cpumask() Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 250/432] Input: xpad - add additional HyperX Controller Identifiers Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 251/432] init/Kconfig: lower GCC version check for -Warray-bounds Greg Kroah-Hartman
2024-04-01 15:43 ` [PATCH 6.7 252/432] firewire: ohci: prevent leak of left-over IRQ on unbind Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 253/432] KVM: x86: Mark target gfn of emulated atomic instruction as dirty Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 254/432] KVM: SVM: Flush pages under kvm->lock to fix UAF in svm_register_enc_region() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 255/432] SEV: disable SEV-ES DebugSwap by default Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 256/432] tracing: Use .flush() call to wake up readers Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 257/432] drm/amdgpu/pm: Fix the error of pwm1_enable setting Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 258/432] tty: serial: imx: Fix broken RS485 Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 259/432] drm/i915: Check before removing mm notifier Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 260/432] ALSA: hda/realtek - Fix headset Mic no show at resume back for Lenovo ALC897 platform Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 261/432] USB: usb-storage: Prevent divide-by-0 error in isd200_ata_command Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 262/432] usb: typec: altmodes/displayport: create sysfs nodes as drivers default device attribute group Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 263/432] usb: gadget: ncm: Fix handling of zero block length packets Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 264/432] usb: port: Dont try to peer unused USB ports based on location Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 265/432] xhci: Fix failure to detect ring expansion need Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 266/432] tty: serial: fsl_lpuart: avoid idle preamble pending if CTS is enabled Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 267/432] serial: 8250_dw: Do not reclock if already at correct rate Greg Kroah-Hartman
2024-04-01 17:16 ` Peter Collingbourne
2024-04-02 7:49 ` Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 268/432] misc: lis3lv02d_i2c: Fix regulators getting en-/dis-abled twice on suspend/resume Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 269/432] misc: fastrpc: Pass proper arguments to scm call Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 270/432] serial: port: Dont suspend if the port is still busy Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 271/432] mei: me: add arrow lake point S DID Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 272/432] mei: me: add arrow lake point H DID Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 273/432] vt: fix unicode buffer corruption when deleting characters Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 274/432] Revert "tty: serial: simplify qcom_geni_serial_send_chunk_fifo()" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 275/432] fs/aio: Check IOCB_AIO_RW before the struct aio_kiocb conversion Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 276/432] ALSA: hda/realtek - Add Headset Mic supported Acer NB platform Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 277/432] ALSA: hda/realtek: fix mute/micmute LEDs for HP EliteBook Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 278/432] tee: optee: Fix kernel panic caused by incorrect error handling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 279/432] ARM: imx_v6_v7_defconfig: Restore CONFIG_BACKLIGHT_CLASS_DEVICE Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 280/432] mm, vmscan: prevent infinite loop for costly GFP_NOIO | __GFP_RETRY_MAYFAIL allocations Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 281/432] arm64: dts: qcom: sc8280xp-x13s: limit pcie4 link speed Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 282/432] iio: accel: adxl367: fix DEVID read after reset Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 283/432] iio: accel: adxl367: fix I2C FIFO data register Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 284/432] i2c: i801: Fix using mux_pdev before its set Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 285/432] i2c: i801: Avoid potential double call to gpiod_remove_lookup_table Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 286/432] iio: imu: inv_mpu6050: fix frequency setting when chip is off Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 287/432] iio: imu: inv_mpu6050: fix FIFO parsing when empty Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 288/432] drm/i915: Dont explode when the dig port we dont have an AUX CH Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 289/432] drm/amd/display: handle range offsets in VRR ranges Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 290/432] drm/amd/swsmu: modify the gfx activity scaling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 291/432] x86/efistub: Call mixed mode boot services on the firmwares stack Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 292/432] ASoC: amd: yc: Revert "Fix non-functional mic on Lenovo 21J2" Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 293/432] Fix memory leak in posix_clock_open() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 294/432] wifi: rtw88: 8821cu: Fix connection failure Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 295/432] btrfs: fix deadlock with fiemap and extent locking Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 296/432] x86/Kconfig: Remove CONFIG_AMD_MEM_ENCRYPT_ACTIVE_BY_DEFAULT Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 297/432] x86/sev: Fix position dependent variable references in startup code Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 298/432] clocksource/drivers/arm_global_timer: Fix maximum prescaler value Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 299/432] ARM: 9352/1: iwmmxt: Remove support for PJ4/PJ4B cores Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 300/432] ARM: 9359/1: flush: check if the folio is reserved for no-mapping addresses Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 301/432] entry: Respect changes to system call number by trace_sys_enter() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 302/432] swiotlb: Fix double-allocation of slots due to broken alignment handling Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 303/432] swiotlb: Honour dma_alloc_coherent() alignment in swiotlb_alloc() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 304/432] swiotlb: Fix alignment checks when both allocation and DMA masks are present Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 305/432] iommu/dma: Force swiotlb_max_mapping_size on an untrusted device Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 306/432] printk: Update @console_may_schedule in console_trylock_spinning() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 307/432] irqchip/renesas-rzg2l: Implement restriction when writing ISCR register Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 308/432] irqchip/renesas-rzg2l: Flush posted write in irq_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 309/432] irqchip/renesas-rzg2l: Add macro to retrieve TITSR register offset based on registers index Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 310/432] irqchip/renesas-rzg2l: Rename rzg2l_tint_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 311/432] irqchip/renesas-rzg2l: Rename rzg2l_irq_eoi() Greg Kroah-Hartman
2024-04-01 15:44 ` [PATCH 6.7 312/432] irqchip/renesas-rzg2l: Prevent spurious interrupts when setting trigger type Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 313/432] kprobes/x86: Use copy_from_kernel_nofault() to read from unsafe address Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 314/432] efi/libstub: fix efi_random_alloc() to allocate memory at alloc_min or higher address Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 315/432] x86/mpparse: Register APIC address only once Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 316/432] x86/fpu: Keep xfd_state in sync with MSR_IA32_XFD Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 317/432] efi: fix panic in kdump kernel Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 318/432] pwm: img: fix pwm clock lookup Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 319/432] selftests/mm: gup_test: conform test to TAP format output Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 320/432] selftests/mm: Fix build with _FORTIFY_SOURCE Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 321/432] btrfs: do not skip re-registration for the mounted device Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 322/432] mfd: intel-lpss: Switch to generalized quirk table Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 323/432] mfd: intel-lpss: Introduce QUIRK_CLOCK_DIVIDER_UNITY for XPS 9530 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 324/432] perf top: Use evsels cpus to replace user_requested_cpus Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 325/432] drm/i915: Stop printing pipe name as hex Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 326/432] drm/i915: Use named initializers for DPLL info Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 327/432] drm/i915: Replace a memset() with zero initialization Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 328/432] drm/i915: Try to preserve the current shared_dpll for fastset on type-c ports Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 329/432] drm/i915: Include the PLL name in the debug messages Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 330/432] drm/i915: Suppress old PLL pipe_mask checks for MG/TC/TBT PLLs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 331/432] drm/amd/display: Prevent crash when disable stream Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 332/432] ALSA: hda/tas2781: remove digital gain kcontrol Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 333/432] ALSA: hda/tas2781: add locks to kcontrols Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 334/432] init: open /initrd.image with O_LARGEFILE Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 335/432] x86/efistub: Add missing boot_params for mixed mode compat entry Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 336/432] efi/libstub: Cast away type warning in use of max() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 337/432] x86/efistub: Reinstate soft limit for initrd loading Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 338/432] prctl: generalize PR_SET_MDWE support check to be per-arch Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 339/432] ARM: prctl: reject PR_SET_MDWE on pre-ARMv6 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 340/432] tmpfs: fix race on handling dquot rbtree Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 341/432] btrfs: validate device maj:min during open Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 342/432] btrfs: fix race in read_extent_buffer_pages() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 343/432] btrfs: zoned: dont skip block groups with 100% zone unusable Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 344/432] btrfs: zoned: use zone aware sb location for scrub Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 345/432] wifi: mac80211: check/clear fast rx for non-4addr sta VLAN changes Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 346/432] wifi: cfg80211: add a flag to disable wireless extensions Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 347/432] wifi: iwlwifi: mvm: disable MLO for the time being Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 348/432] wifi: iwlwifi: fw: dont always use FW dump trig Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 349/432] wifi: iwlwifi: mvm: handle debugfs names more carefully Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 350/432] Revert "drm/amd/display: Fix sending VSC (+ colorimetry) packets for DP/eDP displays without PSR" Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 351/432] gpio: cdev: sanitize the label before requesting the interrupt Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 352/432] exec: Fix NOMMU linux_binprm::exec in transfer_args_to_stack() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 353/432] hexagon: vmlinux.lds.S: handle attributes section Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 354/432] mm: cachestat: fix two shmem bugs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 355/432] selftests/mm: sigbus-wp test requires UFFD_FEATURE_WP_HUGETLBFS_SHMEM Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 356/432] selftests/mm: fix ARM related issue with fork after pthread_create Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 357/432] mmc: sdhci-omap: re-tuning is needed after a pm transition to support emmc HS200 mode Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 358/432] mmc: core: Initialize mmc_blk_ioc_data Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 359/432] mmc: core: Avoid negative index with array access Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 360/432] sdhci-of-dwcmshc: disable PM runtime in dwcmshc_remove() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 361/432] block: Do not force full zone append completion in req_bio_endio() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 362/432] thermal: devfreq_cooling: Fix perf state when calculate dfc res_util Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 363/432] nouveau/dmem: handle kcalloc() allocation failure Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 364/432] net: ll_temac: platform_get_resource replaced by wrong function Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 365/432] drm/vmwgfx: Create debugfs ttm_resource_manager entry only if needed Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 366/432] drm/amdkfd: fix TLB flush after unmap for GFX9.4.2 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 367/432] drm/amdgpu: fix deadlock while reading mqd from debugfs Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 368/432] drm/amd/display: Remove MPC rate control logic from DCN30 and above Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 369/432] drm/amd/display: Set DCN351 BB and IP the same as DCN35 Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 370/432] drm/i915/hwmon: Fix locking inversion in sysfs getter Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 371/432] drm/i915/bios: Tolerate devdata==NULL in intel_bios_encoder_supports_dp_dual_mode() Greg Kroah-Hartman
2024-04-01 15:45 ` [PATCH 6.7 372/432] drm/i915/vrr: Generate VRR "safe window" for DSB Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 373/432] drm/i915/dsi: Go back to the previous INIT_OTP/DISPLAY_ON order, mostly Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 374/432] drm/i915/dsb: Fix DSB vblank waits when using VRR Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 375/432] drm/i915: Do not match JSL in ehl_combo_pll_div_frac_wa_needed() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 376/432] drm/i915/gt: Reset queue_priority_hint on parking Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 377/432] drm/amd/display: Fix bounds check for dcn35 DcfClocks Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 378/432] Bluetooth: hci_sync: Fix not checking error on hci_cmd_sync_cancel_sync Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 379/432] mtd: spinand: Add support for 5-byte IDs Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 380/432] Revert "usb: phy: generic: Get the vbus supply" Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 381/432] usb: cdc-wdm: close race between read and workqueue Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 382/432] usb: misc: ljca: Fix double free in error handling path Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 383/432] USB: UAS: return ENODEV when submit urbs fail with device not attached Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 384/432] drm/amd/display: set odm_combine_policy based on context in dcn32 resource Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 385/432] drm/amdgpu: make damage clips support configurable Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 386/432] drm/amdgpu/display: Address kdoc for is_psr_su in fill_dc_dirty_rects Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 387/432] vfio/pds: Make sure migration file isnt accessed after reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 388/432] ALSA: sh: aica: reorder cleanup operations to avoid UAF bugs Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 389/432] scsi: ufs: qcom: Provide default cycles_in_1us value Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 390/432] scsi: sd: Fix TCG OPAL unlock on system resume Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 391/432] scsi: sg: Avoid sg device teardown race Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 392/432] scsi: core: Fix unremoved procfs host directory regression Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 393/432] staging: vc04_services: changen strncpy() to strscpy_pad() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 394/432] staging: vc04_services: fix information leak in create_component() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 395/432] usb: dwc3: Properly set system wakeup Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 396/432] USB: core: Fix deadlock in usb_deauthorize_interface() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 397/432] USB: core: Add hub_get() and hub_put() routines Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 398/432] USB: core: Fix deadlock in port "disable" sysfs attribute Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 399/432] usb: dwc2: host: Fix remote wakeup from hibernation Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 400/432] usb: dwc2: host: Fix hibernation flow Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 401/432] usb: dwc2: host: Fix ISOC flow in DDMA mode Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 402/432] usb: dwc2: gadget: Fix exiting from clock gating Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 403/432] usb: dwc2: gadget: LPM flow fix Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 404/432] usb: udc: remove warning when queue disabled ep Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 405/432] usb: typec: ucsi: Fix race between typec_switch and role_switch Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 406/432] usb: typec: Return size of buffer if pd_set operation succeeds Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 407/432] usb: typec: ucsi: Clear EVENT_PENDING under PPM lock Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 408/432] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 409/432] usb: typec: ucsi: Ack unsupported commands Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 410/432] usb: typec: ucsi_acpi: Refactor and fix DELL quirk Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 411/432] usb: typec: ucsi: Clear UCSI_CCI_RESET_COMPLETE before reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 412/432] scsi: qla2xxx: Prevent command send on chip reset Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 413/432] scsi: qla2xxx: Fix N2N stuck connection Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 414/432] scsi: qla2xxx: Split FCE|EFT trace control Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 415/432] scsi: qla2xxx: Update manufacturer detail Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 416/432] scsi: qla2xxx: NVME|FCP prefer flag not being honored Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 417/432] scsi: qla2xxx: Fix command flush on cable pull Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 418/432] scsi: qla2xxx: Fix double free of the ha->vp_map pointer Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 419/432] scsi: qla2xxx: Fix double free of fcport Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 420/432] scsi: qla2xxx: Change debug message during driver unload Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 421/432] scsi: qla2xxx: Delay I/O Abort on PCI error Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 422/432] x86/bugs: Fix the SRSO mitigation on Zen3/4 Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 423/432] crash: use macro to add crashk_res into iomem early for specific arch Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 424/432] x86/bugs: Use fixed addressing for VERW operand Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 425/432] Revert "x86/bugs: Use fixed addressing for VERW operand" Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 426/432] usb: dwc3: pci: Drop duplicate ID Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 427/432] scsi: lpfc: Correct size for cmdwqe/rspwqe for memset() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 428/432] scsi: libsas: Add a helper sas_get_sas_addr_and_dev_type() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 429/432] scsi: lpfc: Correct size for wqe for memset() Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 430/432] scsi: libsas: Fix disk not being scanned in after being removed Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 431/432] x86/sev: Skip ROM range scans and validation for SEV-SNP guests Greg Kroah-Hartman
2024-04-01 15:46 ` [PATCH 6.7 432/432] tools/resolve_btfids: fix build with musl libc Greg Kroah-Hartman
2024-04-01 18:28 ` [PATCH 6.7 000/432] 6.7.12-rc1 review SeongJae Park
2024-04-01 19:04 ` Naresh Kamboju
2024-04-01 20:46 ` Florian Fainelli
2024-04-01 23:36 ` Shuah Khan
2024-04-02 5:05 ` Ron Economos
2024-04-02 8:06 ` Bagas Sanjaya
2024-04-02 9:12 ` Naresh Kamboju
2024-04-03 13:10 ` Greg Kroah-Hartman
2024-04-02 13:32 ` Justin Forbes
2024-04-02 14:40 ` Mark Brown
2024-04-02 19:14 ` Jon Hunter
2024-04-03 13:46 ` Conor Dooley
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=20240401152556.076540867@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=eahariha@linux.microsoft.com \
--cc=jarredwhite@linux.microsoft.com \
--cc=patches@lists.linux.dev \
--cc=rafael.j.wysocki@intel.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox