From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Athira Rajeev <atrajeev@linux.vnet.ibm.com>,
Disha Goel <disgoel@linux.vnet.ibm.com>,
Madhavan Srinivasan <maddy@linux.ibm.com>,
Sasha Levin <sashal@kernel.org>,
mpe@ellerman.id.au, kan.liang@linux.intel.com,
anjalik@linux.ibm.com, coltonlewis@google.com, rppt@kernel.org,
linuxppc-dev@lists.ozlabs.org
Subject: [PATCH AUTOSEL 6.1 179/212] arch/powerpc/perf: Check the instruction type before creating sample with perf_mem_data_src
Date: Mon, 5 May 2025 19:05:51 -0400 [thread overview]
Message-ID: <20250505230624.2692522-179-sashal@kernel.org> (raw)
In-Reply-To: <20250505230624.2692522-1-sashal@kernel.org>
From: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
[ Upstream commit 2ffb26afa64261139e608bf087a0c1fe24d76d4d ]
perf mem report aborts as below sometimes (during some corner
case) in powerpc:
# ./perf mem report 1>out
*** stack smashing detected ***: terminated
Aborted (core dumped)
The backtrace is as below:
__pthread_kill_implementation ()
raise ()
abort ()
__libc_message
__fortify_fail
__stack_chk_fail
hist_entry.lvl_snprintf
__sort__hpp_entry
__hist_entry__snprintf
hists.fprintf
cmd_report
cmd_mem
Snippet of code which triggers the issue
from tools/perf/util/sort.c
static int hist_entry__lvl_snprintf(struct hist_entry *he, char *bf,
size_t size, unsigned int width)
{
char out[64];
perf_mem__lvl_scnprintf(out, sizeof(out), he->mem_info);
return repsep_snprintf(bf, size, "%-*s", width, out);
}
The value of "out" is filled from perf_mem_data_src value.
Debugging this further showed that for some corner cases, the
value of "data_src" was pointing to wrong value. This resulted
in bigger size of string and causing stack check fail.
The perf mem data source values are captured in the sample via
isa207_get_mem_data_src function. The initial check is to fetch
the type of sampled instruction. If the type of instruction is
not valid (not a load/store instruction), the function returns.
Since 'commit e16fd7f2cb1a ("perf: Use sample_flags for data_src")',
data_src field is not initialized by the perf_sample_data_init()
function. If the PMU driver doesn't set the data_src value to zero if
type is not valid, this will result in uninitailised value for data_src.
The uninitailised value of data_src resulted in stack check fail
followed by abort for "perf mem report".
When requesting for data source information in the sample, the
instruction type is expected to be load or store instruction.
In ISA v3.0, due to hardware limitation, there are corner cases
where the instruction type other than load or store is observed.
In ISA v3.0 and before values "0" and "7" are considered reserved.
In ISA v3.1, value "7" has been used to indicate "larx/stcx".
Drop the sample if instruction type has reserved values for this
field with a ISA version check. Initialize data_src to zero in
isa207_get_mem_data_src if the instruction type is not load/store.
Reported-by: Disha Goel <disgoel@linux.vnet.ibm.com>
Signed-off-by: Athira Rajeev <atrajeev@linux.vnet.ibm.com>
Signed-off-by: Madhavan Srinivasan <maddy@linux.ibm.com>
Link: https://patch.msgid.link/20250121131621.39054-1-atrajeev@linux.vnet.ibm.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
arch/powerpc/perf/core-book3s.c | 20 ++++++++++++++++++++
arch/powerpc/perf/isa207-common.c | 4 +++-
2 files changed, 23 insertions(+), 1 deletion(-)
diff --git a/arch/powerpc/perf/core-book3s.c b/arch/powerpc/perf/core-book3s.c
index e3c31c771ce91..470d7715ecf4b 100644
--- a/arch/powerpc/perf/core-book3s.c
+++ b/arch/powerpc/perf/core-book3s.c
@@ -2229,6 +2229,10 @@ static struct pmu power_pmu = {
#define PERF_SAMPLE_ADDR_TYPE (PERF_SAMPLE_ADDR | \
PERF_SAMPLE_PHYS_ADDR | \
PERF_SAMPLE_DATA_PAGE_SIZE)
+
+#define SIER_TYPE_SHIFT 15
+#define SIER_TYPE_MASK (0x7ull << SIER_TYPE_SHIFT)
+
/*
* A counter has overflowed; update its count and record
* things if requested. Note that interrupts are hard-disabled
@@ -2297,6 +2301,22 @@ static void record_and_restart(struct perf_event *event, unsigned long val,
is_kernel_addr(mfspr(SPRN_SIAR)))
record = 0;
+ /*
+ * SIER[46-48] presents instruction type of the sampled instruction.
+ * In ISA v3.0 and before values "0" and "7" are considered reserved.
+ * In ISA v3.1, value "7" has been used to indicate "larx/stcx".
+ * Drop the sample if "type" has reserved values for this field with a
+ * ISA version check.
+ */
+ if (event->attr.sample_type & PERF_SAMPLE_DATA_SRC &&
+ ppmu->get_mem_data_src) {
+ val = (regs->dar & SIER_TYPE_MASK) >> SIER_TYPE_SHIFT;
+ if (val == 0 || (val == 7 && !cpu_has_feature(CPU_FTR_ARCH_31))) {
+ record = 0;
+ atomic64_inc(&event->lost_samples);
+ }
+ }
+
/*
* Finally record data if requested.
*/
diff --git a/arch/powerpc/perf/isa207-common.c b/arch/powerpc/perf/isa207-common.c
index 56301b2bc8ae8..031a2b63c171d 100644
--- a/arch/powerpc/perf/isa207-common.c
+++ b/arch/powerpc/perf/isa207-common.c
@@ -321,8 +321,10 @@ void isa207_get_mem_data_src(union perf_mem_data_src *dsrc, u32 flags,
sier = mfspr(SPRN_SIER);
val = (sier & ISA207_SIER_TYPE_MASK) >> ISA207_SIER_TYPE_SHIFT;
- if (val != 1 && val != 2 && !(val == 7 && cpu_has_feature(CPU_FTR_ARCH_31)))
+ if (val != 1 && val != 2 && !(val == 7 && cpu_has_feature(CPU_FTR_ARCH_31))) {
+ dsrc->val = 0;
return;
+ }
idx = (sier & ISA207_SIER_LDST_MASK) >> ISA207_SIER_LDST_SHIFT;
sub_idx = (sier & ISA207_SIER_DATA_SRC_MASK) >> ISA207_SIER_DATA_SRC_SHIFT;
--
2.39.5
next prev parent reply other threads:[~2025-05-05 23:12 UTC|newest]
Thread overview: 213+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-05-05 23:02 [PATCH AUTOSEL 6.1 001/212] kconfig: merge_config: use an empty file as initfile Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 002/212] s390/vfio-ap: Fix no AP queue sharing allowed message written to kernel log Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 003/212] cifs: Add fallback for SMB2 CREATE without FILE_READ_ATTRIBUTES Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 004/212] cifs: Fix querying and creating MF symlinks over SMB1 Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 005/212] cifs: Fix negotiate retry functionality Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 006/212] fuse: Return EPERM rather than ENOSYS from link() Sasha Levin
2025-05-05 23:02 ` [PATCH AUTOSEL 6.1 007/212] NFSv4: Check for delegation validity in nfs_start_delegation_return_locked() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 008/212] NFS: Don't allow waiting for exiting tasks Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 009/212] SUNRPC: " Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 010/212] arm64: Add support for HIP09 Spectre-BHB mitigation Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 011/212] tracing: Mark binary printing functions with __printf() attribute Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 012/212] mailbox: use error ret code of of_parse_phandle_with_args() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 013/212] fbdev: fsl-diu-fb: add missing device_remove_file() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 014/212] fbcon: Use correct erase colour for clearing in fbcon Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 015/212] fbdev: core: tileblit: Implement missing margin clearing for tileblit Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 016/212] cifs: Fix establishing NetBIOS session for SMB2+ connection Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 017/212] NFSv4: Treat ENETUNREACH errors as fatal for state recovery Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 018/212] SUNRPC: rpc_clnt_set_transport() must not change the autobind setting Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 019/212] SUNRPC: rpcbind should never reset the port to the value '0' Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 020/212] thermal/drivers/qoriq: Power down TMU on system suspend Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 021/212] exit: fix the usage of delay_group_leader->exit_code in do_notify_parent() and pidfs_exit() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 022/212] dql: Fix dql->limit value when reset Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 023/212] lockdep: Fix wait context check on softirq for PREEMPT_RT Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 024/212] objtool: Properly disable uaccess validation Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 025/212] PCI: dwc: ep: Ensure proper iteration over outbound map windows Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 026/212] tools/build: Don't pass test log files to linker Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 027/212] pNFS/flexfiles: Report ENETDOWN as a connection error Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 028/212] PCI: vmd: Disable MSI remapping bypass under Xen Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 029/212] libnvdimm/labels: Fix divide error in nd_label_data_init() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 030/212] mmc: host: Wait for Vdd to settle on card power off Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 031/212] x86/mm: Check return value from memblock_phys_alloc_range() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 032/212] i2c: qup: Vote for interconnect bandwidth to DRAM Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 033/212] i2c: pxa: fix call balance of i2c->clk handling routines Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 034/212] btrfs: make btrfs_discard_workfn() block_group ref explicit Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 035/212] btrfs: avoid linker error in btrfs_find_create_tree_block() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 036/212] btrfs: run btrfs_error_commit_super() early Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 037/212] btrfs: fix non-empty delayed iputs list on unmount due to async workers Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 038/212] btrfs: get zone unusable bytes while holding lock at btrfs_reclaim_bgs_work() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 039/212] btrfs: send: return -ENAMETOOLONG when attempting a path that is too long Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 040/212] btrfs: zoned: exit btrfs_can_activate_zone if BTRFS_FS_NEED_ZONE_FINISH is set Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 041/212] drm/amd/display: Guard against setting dispclk low for dcn31x Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 042/212] i3c: master: svc: Fix missing STOP for master request Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 043/212] dlm: make tcp still work in multi-link env Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 044/212] um: Store full CSGSFS and SS register from mcontext Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 045/212] um: Update min_low_pfn to match changes in uml_reserved Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 046/212] ext4: reorder capability check last Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 047/212] scsi: st: Tighten the page format heuristics with MODE SELECT Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 048/212] scsi: st: ERASE does not change tape location Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 049/212] vfio/pci: Handle INTx IRQ_NOTCONNECTED Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 050/212] bpf: Return prog btf_id without capable check Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 051/212] tcp: reorganize tcp_in_ack_event() and tcp_count_delivered() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 052/212] rtc: rv3032: fix EERD location Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 053/212] thunderbolt: Do not add non-active NVM if NVM upgrade is disabled for retimer Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 054/212] ASoC: mediatek: mt6359: Add stub for mt6359_accdet_enable_jack_detect Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 055/212] kbuild: fix argument parsing in scripts/config Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 056/212] crypto: octeontx2 - suppress auth failure screaming due to negative tests Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 057/212] dm: restrict dm device size to 2^63-512 bytes Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 058/212] net/smc: use the correct ndev to find pnetid by pnetid table Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 059/212] xen: Add support for XenServer 6.1 platform device Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 060/212] pinctrl-tegra: Restore SFSEL bit when freeing pins Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 061/212] ASoC: sun4i-codec: support hp-det-gpios property Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 062/212] f2fs: defer readonly check vs norecovery Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 063/212] ext4: reject the 'data_err=abort' option in nojournal mode Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 064/212] RDMA/uverbs: Propagate errors from rdma_lookup_get_uobject() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 065/212] posix-timers: Add cond_resched() to posix_timer_add() search loop Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 066/212] timer_list: Don't use %pK through printk() Sasha Levin
2025-05-05 23:03 ` [PATCH AUTOSEL 6.1 067/212] netfilter: conntrack: Bound nf_conntrack sysctl writes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 068/212] arm64/mm: Check PUD_TYPE_TABLE in pud_bad() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 069/212] mmc: dw_mmc: add exynos7870 DW MMC support Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 070/212] mmc: sdhci: Disable SD card clock before changing parameters Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 071/212] hwmon: (dell-smm) Increment the number of fans Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 072/212] ipv6: save dontfrag in cork Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 073/212] drm/amd/display: calculate the remain segments for all pipes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 074/212] gfs2: Check for empty queue in run_queue Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 075/212] auxdisplay: charlcd: Partially revert "Move hwidth and bwidth to struct hd44780_common" Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 076/212] ASoC: qcom: sm8250: explicitly set format in sm8250_be_hw_params_fixup() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 077/212] iommu/amd/pgtbl_v2: Improve error handling Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 078/212] cpufreq: tegra186: Share policy per cluster Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 079/212] crypto: lzo - Fix compression buffer overrun Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 080/212] arm64: tegra: p2597: Fix gpio for vdd-1v8-dis regulator Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 081/212] powerpc/prom_init: Fixup missing #size-cells on PowerBook6,7 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 082/212] ALSA: seq: Improve data consistency at polling Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 083/212] tcp: bring back NUMA dispersion in inet_ehash_locks_alloc() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 084/212] rtc: ds1307: stop disabling alarms on probe Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 085/212] ieee802154: ca8210: Use proper setters and getters for bitwise types Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 086/212] ARM: tegra: Switch DSI-B clock parent to PLLD on Tegra114 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 087/212] media: c8sectpfe: Call of_node_put(i2c_bus) only once in c8sectpfe_probe() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 088/212] dm cache: prevent BUG_ON by blocking retries on failed device resumes Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 089/212] orangefs: Do not truncate file size Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 090/212] net: phylink: use pl->link_interface in phylink_expects_phy() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 091/212] remoteproc: qcom_wcnss: Handle platforms with only single power domain Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 092/212] drm/amdgpu: Do not program AGP BAR regs under SRIOV in gfxhub_v1_0.c Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 093/212] media: cx231xx: set device_caps for 417 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 094/212] pinctrl: bcm281xx: Use "unsigned int" instead of bare "unsigned" Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 095/212] net: ethernet: ti: cpsw_new: populate netdev of_node Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 096/212] net: pktgen: fix mpls maximum labels list parsing Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 097/212] perf/hw_breakpoint: Return EOPNOTSUPP for unsupported breakpoint type Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 098/212] ALSA: hda/realtek: Enable PC beep passthrough for HP EliteBook 855 G7 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 099/212] ipv4: fib: Move fib_valid_key_len() to rtm_to_fib_config() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 100/212] drm/rockchip: vop2: Add uv swap for cluster window Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 101/212] media: uvcvideo: Add sanity check to uvc_ioctl_xu_ctrl_map Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 102/212] clk: imx8mp: inform CCF of maximum frequency of clocks Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 103/212] x86/bugs: Make spectre user default depend on MITIGATION_SPECTRE_V2 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 104/212] hwmon: (gpio-fan) Add missing mutex locks Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 105/212] ARM: at91: pm: fix at91_suspend_finish for ZQ calibration Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 106/212] drm/mediatek: mtk_dpi: Add checks for reg_h_fre_con existence Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 107/212] fpga: altera-cvp: Increase credit timeout Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 108/212] soc: apple: rtkit: Use high prio work queue Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 109/212] soc: apple: rtkit: Implement OSLog buffers properly Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 110/212] PCI: brcmstb: Expand inbound window size up to 64GB Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 111/212] PCI: brcmstb: Add a softdep to MIP MSI-X driver Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 112/212] nvme: map uring_cmd data even if address is 0 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 113/212] firmware: arm_ffa: Set dma_mask for ffa devices Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 114/212] net/mlx5: Avoid report two health errors on same syndrome Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 115/212] selftests/net: have `gro.sh -t` return a correct exit code Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 116/212] drm/amdkfd: KFD release_work possible circular locking Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 117/212] leds: pwm-multicolor: Add check for fwnode_property_read_u32 Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 118/212] net: ethernet: mtk_ppe_offload: Allow QinQ, double ETH_P_8021Q only Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 119/212] net: xgene-v2: remove incorrect ACPI_PTR annotation Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 120/212] bonding: report duplicate MAC address in all situations Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 121/212] soc: ti: k3-socinfo: Do not use syscon helper to build regmap Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 122/212] x86/build: Fix broken copy command in genimage.sh when making isoimage Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 123/212] drm/amd/display: handle max_downscale_src_width fail check Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 124/212] drm/amd/display: fix dcn4x init failed Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 125/212] x86/nmi: Add an emergency handler in nmi_desc & use it in nmi_shootdown_cpus() Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 126/212] cpuidle: menu: Avoid discarding useful information Sasha Levin
2025-05-05 23:04 ` [PATCH AUTOSEL 6.1 127/212] media: adv7180: Disable test-pattern control on adv7180 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 128/212] libbpf: Fix out-of-bound read Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 129/212] dm: fix unconditional IO throttle caused by REQ_PREFLUSH Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 130/212] x86/kaslr: Reduce KASLR entropy on most x86 systems Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 131/212] MIPS: Use arch specific syscall name match function Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 132/212] genirq/msi: Store the IOMMU IOVA directly in msi_desc instead of iommu_cookie Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 133/212] MIPS: pm-cps: Use per-CPU variables as per-CPU, not per-core Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 134/212] clocksource: mips-gic-timer: Enable counter when CPUs start Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 135/212] scsi: mpt3sas: Send a diag reset if target reset fails Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 136/212] wifi: rtw88: Fix rtw_init_vht_cap() for RTL8814AU Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 137/212] wifi: rtw88: Fix rtw_init_ht_cap() " Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 138/212] wifi: rtw88: Fix rtw_desc_to_mcsrate() to handle MCS16-31 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 139/212] wifi: rtw89: fw: propagate error code from rtw89_h2c_tx() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 140/212] net: pktgen: fix access outside of user given buffer in pktgen_thread_write() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 141/212] EDAC/ie31200: work around false positive build warning Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 142/212] bpf: Prevent unsafe access to the sock fields in the BPF timestamping callback Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 143/212] i3c: master: svc: Flush FIFO before sending Dynamic Address Assignment(DAA) Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 144/212] serial: mctrl_gpio: split disable_ms into sync and no_sync APIs Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 145/212] RDMA/core: Fix best page size finding when it can cross SG entries Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 146/212] pmdomain: imx: gpcv2: use proper helper for property detection Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 147/212] can: c_can: Use of_property_present() to test existence of DT property Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 148/212] eth: mlx4: don't try to complete XDP frames in netpoll Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 149/212] PCI: Fix old_size lower bound in calculate_iosize() too Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 150/212] ACPI: HED: Always initialize before evged Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 151/212] vxlan: Join / leave MC group after remote changes Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 152/212] media: test-drivers: vivid: don't call schedule in loop Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 153/212] net/mlx5: Modify LSB bitmask in temperature event to include only the first bit Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 154/212] net/mlx5: Apply rate-limiting to high temperature warning Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 155/212] ASoC: ops: Enforce platform maximum on initial value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 156/212] ASoC: tas2764: Add reg defaults for TAS2764_INT_CLK_CFG Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 157/212] ASoC: tas2764: Mark SW_RESET as volatile Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 158/212] ASoC: tas2764: Power up/down amp on mute ops Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 159/212] ASoC: soc-dai: check return value at snd_soc_dai_set_tdm_slot() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 160/212] pinctrl: devicetree: do not goto err when probing hogs in pinctrl_dt_to_map Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 161/212] smack: recognize ipv4 CIPSO w/o categories Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 162/212] kunit: tool: Use qboot on QEMU x86_64 Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 163/212] kernfs: Don't re-lock kernfs_root::kernfs_rwsem in kernfs_fop_readdir() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 164/212] kernfs: Acquire kernfs_rwsem in kernfs_get_parent_dentry() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 165/212] libbpf: fix LDX/STX/ST CO-RE relocation size adjustment logic Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 166/212] net/mlx4_core: Avoid impossible mlx4_db_alloc() order value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 167/212] clk: qcom: clk-alpha-pll: Do not use random stack value for recalc rate Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 168/212] serial: sh-sci: Update the suspend/resume support Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 169/212] phy: core: don't require set_mode() callback for phy_get_mode() to work Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 170/212] drm/amdgpu: reset psp->cmd to NULL after releasing the buffer Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 171/212] drm/amd/display: Initial psr_version with correct setting Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 172/212] drm/amdgpu: enlarge the VBIOS binary size limit Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 173/212] drm/amd/display/dm: drop hw_support check in amdgpu_dm_i2c_xfer() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 174/212] net/mlx5: Extend Ethtool loopback selftest to support non-linear SKB Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 175/212] net/mlx5e: set the tx_queue_len for pfifo_fast Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 176/212] net/mlx5e: reduce rep rxq depth to 256 for ECPF Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 177/212] wifi: mac80211: don't unconditionally call drv_mgd_complete_tx() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 178/212] wifi: mac80211: remove misplaced drv_mgd_complete_tx() call Sasha Levin
2025-05-05 23:05 ` Sasha Levin [this message]
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 180/212] ip: fib_rules: Fetch net from fib_rule in fib[46]_rule_configure() Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 181/212] r8152: add vendor/device ID pair for Dell Alienware AW1022z Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 182/212] wifi: rtw88: Fix download_firmware_validate() for RTL8814AU Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 183/212] clk: qcom: camcc-sm8250: Use clk_rcg2_shared_ops for some RCGs Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 184/212] exit: change the release_task() paths to call flush_sigqueue() lockless Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 185/212] hwmon: (xgene-hwmon) use appropriate type for the latency value Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 186/212] media: qcom: camss: csid: Only add TPG v4l2 ctrl if TPG hardware is available Sasha Levin
2025-05-05 23:05 ` [PATCH AUTOSEL 6.1 187/212] vxlan: Annotate FDB data races Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 188/212] r8169: don't scan PHY addresses > 0 Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 189/212] net-sysfs: prevent uncleared queues from being re-added Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 190/212] rcu: handle quiescent states for PREEMPT_RCU=n, PREEMPT_COUNT=y Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 191/212] rcu: handle unstable rdp in rcu_read_unlock_strict() Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 192/212] rcu: fix header guard for rcu_all_qs() Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 193/212] perf: Avoid the read if the count is already updated Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 194/212] ice: count combined queues using Rx/Tx count Sasha Levin
2025-05-06 9:26 ` [Intel-wired-lan] " Loktionov, Aleksandr
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 195/212] net/mana: fix warning in the writer of client oob Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 196/212] scsi: lpfc: Handle duplicate D_IDs in ndlp search-by D_ID routine Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 197/212] scsi: lpfc: Free phba irq in lpfc_sli4_enable_msi() when pci_irq_vector() fails Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 198/212] scsi: st: Restore some drive settings after reset Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 199/212] HID: usbkbd: Fix the bit shift number for LED_KANA Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 200/212] ASoC: codecs: pcm3168a: Allow for 24-bit in provider mode Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 201/212] drm/ast: Find VBIOS mode from regular display size Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 202/212] bpftool: Fix readlink usage in get_fd_type Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 203/212] perf/amd/ibs: Fix perf_ibs_op.cnt_mask for CurCnt Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 204/212] wifi: rtl8xxxu: retry firmware download on error Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 205/212] wifi: rtw88: Don't use static local variable in rtw8822b_set_tx_power_index_by_rate Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 206/212] wifi: rtw89: add wiphy_lock() to work that isn't held wiphy_lock() yet Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 207/212] spi: zynqmp-gqspi: Always acknowledge interrupts Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 208/212] regulator: ad5398: Add device tree support Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 209/212] wifi: ath9k: return by of_get_mac_address Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 210/212] drm/atomic: clarify the rules around drm_atomic_state->allow_modeset Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 211/212] drm/panel-edp: Add Starry 116KHD024006 Sasha Levin
2025-05-05 23:06 ` [PATCH AUTOSEL 6.1 212/212] drm: Add valid clones check Sasha Levin
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=20250505230624.2692522-179-sashal@kernel.org \
--to=sashal@kernel.org \
--cc=anjalik@linux.ibm.com \
--cc=atrajeev@linux.vnet.ibm.com \
--cc=coltonlewis@google.com \
--cc=disgoel@linux.vnet.ibm.com \
--cc=kan.liang@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=maddy@linux.ibm.com \
--cc=mpe@ellerman.id.au \
--cc=rppt@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