linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: Perry Yuan <perry.yuan@amd.com>,
	Mario Limonciello <mario.limonciello@amd.com>,
	Gino Badouri <badouri.g@gmail.com>,
	"Gautham R . Shenoy" <gautham.shenoy@amd.com>,
	"Rafael J . Wysocki" <rafael.j.wysocki@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.6 288/638] ACPI: CPPC: enable AMD CPPC V2 support for family 17h processors
Date: Sun, 24 Mar 2024 18:55:25 -0400	[thread overview]
Message-ID: <20240324230116.1348576-289-sashal@kernel.org> (raw)
In-Reply-To: <20240324230116.1348576-1-sashal@kernel.org>

From: Perry Yuan <perry.yuan@amd.com>

[ Upstream commit a51ab63b297ce9e26e3ffb9be896018a42d5f32f ]

As there are some AMD processors which only support CPPC V2 firmware and
BIOS implementation, the amd_pstate driver will be failed to load when
system booting with below kernel warning message:

[    0.477523] amd_pstate: the _CPC object is not present in SBIOS or ACPI disabled

To make the amd_pstate driver can be loaded on those TR40 processors, it
needs to match x86_model from 0x30 to 0x7F for family 17H.
With the change, the system can load amd_pstate driver as expected.

Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Reported-by: Gino Badouri <badouri.g@gmail.com>
Closes: https://bugzilla.kernel.org/show_bug.cgi?id=218171
Fixes: fbd74d1689 ("ACPI: CPPC: Fix enabling CPPC on AMD systems with shared memory")
Signed-off-by: Perry Yuan <perry.yuan@amd.com>
Reviewed-by: Gautham R. Shenoy <gautham.shenoy@amd.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/x86/kernel/acpi/cppc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/x86/kernel/acpi/cppc.c b/arch/x86/kernel/acpi/cppc.c
index 8d8752b44f113..ff8f25faca3dd 100644
--- a/arch/x86/kernel/acpi/cppc.c
+++ b/arch/x86/kernel/acpi/cppc.c
@@ -20,7 +20,7 @@ bool cpc_supported_by_cpu(void)
 		    (boot_cpu_data.x86_model >= 0x20 && boot_cpu_data.x86_model <= 0x2f)))
 			return true;
 		else if (boot_cpu_data.x86 == 0x17 &&
-			 boot_cpu_data.x86_model >= 0x70 && boot_cpu_data.x86_model <= 0x7f)
+			 boot_cpu_data.x86_model >= 0x30 && boot_cpu_data.x86_model <= 0x7f)
 			return true;
 		return boot_cpu_has(X86_FEATURE_CPPC);
 	}
-- 
2.43.0


  parent reply	other threads:[~2024-03-24 23:06 UTC|newest]

Thread overview: 645+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-03-24 22:50 [PATCH 6.6 000/638] 6.6.23-rc1 review Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 001/638] platform/x86: p2sb: On Goldmont only cache P2SB and SPI devfn BAR Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 002/638] io_uring/unix: drop usage of io_uring socket Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 003/638] io_uring: drop any code related to SCM_RIGHTS Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 004/638] soc: qcom: pmic_glink_altmode: fix drm bridge use-after-free Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 005/638] media: rkisp1: Fix IRQ handling due to shared interrupts Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 006/638] ASoC: cs42l43: Handle error from devm_pm_runtime_enable Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 007/638] wifi: iwlwifi: mvm: use correct address 3 in A-MSDU Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 008/638] perf/arm-cmn: Workaround AmpereOneX errata AC04_MESH_1 (incorrect child count) Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 009/638] selftests: openvswitch: Add validation for the recursion test Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 010/638] selftests: tls: use exact comparison in recv_partial Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 011/638] ASoC: rt5645: Make LattePanda board DMI match more precise Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 012/638] spi: intel-pci: Add support for Lunar Lake-M SPI serial flash Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 013/638] regmap: kunit: Ensure that changed bytes are actually different Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 014/638] ASoC: amd: yc: Fix non-functional mic on Lenovo 82UU Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 015/638] x86/xen: Add some null pointer checking to smp.c Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 016/638] MIPS: Clear Cause.BD in instruction_pointer_set Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 017/638] HID: multitouch: Add required quirk for Synaptics 0xcddc device Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 018/638] ASoC: SOF: ipc4-pcm: Workaround for crashed firmware on system suspend Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 019/638] gen_compile_commands: fix invalid escape sequence warning Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 020/638] arm64/sve: Lower the maximum allocation for the SVE ptrace regset Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 021/638] soc: microchip: Fix POLARFIRE_SOC_SYS_CTRL input prompt Sasha Levin
2024-03-24 22:50 ` [PATCH 6.6 022/638] arm64: dts: rockchip: mark system power controller on rk3588-evb1 Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 023/638] RDMA/mlx5: Fix fortify source warning while accessing Eth segment Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 024/638] RDMA/mlx5: Relax DEVX access upon modify commands Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 025/638] ARM: dts: rockchip: Drop interrupts property from pwm-rockchip nodes Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 026/638] riscv: dts: sifive: add missing #interrupt-cells to pmic Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 027/638] x86/mm: Move is_vsyscall_vaddr() into asm/vsyscall.h Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 028/638] x86/mm: Disallow vsyscall page read for copy_from_kernel_nofault() Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 029/638] net/iucv: fix the allocation size of iucv_path_table array Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 030/638] parisc/ftrace: add missing CONFIG_DYNAMIC_FTRACE check Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 031/638] block: sed-opal: handle empty atoms when parsing response Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 032/638] cxl/region: Handle endpoint decoders in cxl_region_find_decoder() Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 033/638] cxl/region: Allow out of order assembly of autodiscovered regions Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 034/638] perf: CXL: fix CPMU filter value mask length Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 035/638] platform/x86: x86-android-tablets: Fix acer_b1_750_goodix_gpios name Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 036/638] dm-verity, dm-crypt: align "struct bvec_iter" correctly Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 037/638] arm: dts: Fix dtc interrupt_provider warnings Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 038/638] arm64: " Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 039/638] arm: dts: Fix dtc interrupt_map warnings Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 040/638] arm64: dts: qcom: Fix interrupt-map cell sizes Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 041/638] ARM: dts: renesas: rcar-gen2: Add missing #interrupt-cells to DA9063 nodes Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 042/638] regulator: max5970: Fix regulator child node name Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 043/638] btrfs: fix data races when accessing the reserved amount of block reserves Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 044/638] btrfs: fix data race at btrfs_use_block_rsv() when accessing block reserve Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 045/638] net: smsc95xx: add support for SYS TEC USB-SPEmodule1 Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 046/638] wifi: mac80211: only call drv_sta_rc_update for uploaded stations Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 047/638] drm/ttm/tests: depend on UML || COMPILE_TEST Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 048/638] ASoC: amd: yc: Add Lenovo ThinkBook 21J0 into DMI quirk table Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 049/638] scsi: mpt3sas: Prevent sending diag_reset when the controller is ready Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 050/638] ALSA: hda/realtek - ALC285 reduce pop noise from Headphone port Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 051/638] drm/amdgpu: Enable gpu reset for S3 abort cases on Raven series Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 052/638] ASoC: amd: yc: Fix non-functional mic on Lenovo 21J2 Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 053/638] Bluetooth: rfcomm: Fix null-ptr-deref in rfcomm_check_security Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 054/638] Bluetooth: mgmt: Fix limited discoverable off timeout Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 055/638] firewire: core: use long bus reset on gap count error Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 056/638] perf: RISCV: Fix panic on pmu overflow handler Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 057/638] arm64: tegra: Set the correct PHY mode for MGBE Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 058/638] ASoC: Intel: bytcr_rt5640: Add an extra entry for the Chuwi Vi8 tablet Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 059/638] x86/hyperv: Allow 15-bit APIC IDs for VTL platforms Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 060/638] ASoC: amd: yc: Add HP Pavilion Aero Laptop 13-be2xxx(8BD6) into DMI quirk table Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 061/638] xfrm: fix xfrm child route lookup for packet offload Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 062/638] xfrm: set skb control buffer based on packet offload as well Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 063/638] Input: gpio_keys_polled - suppress deferred probe error for gpio Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 064/638] ASoC: wm8962: Enable oscillator if selecting WM8962_FLL_OSC Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 065/638] ASoC: wm8962: Enable both SPKOUTR_ENA and SPKOUTL_ENA in mono mode Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 066/638] ASoC: wm8962: Fix up incorrect error message in wm8962_set_fll Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 067/638] do_sys_name_to_handle(): use kzalloc() to fix kernel-infoleak Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 068/638] workqueue.c: Increase workqueue name length Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 069/638] workqueue: Move pwq->max_active to wq->max_active Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 070/638] workqueue: Factor out pwq_is_empty() Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 071/638] workqueue: Replace pwq_activate_inactive_work() with [__]pwq_activate_work() Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 072/638] workqueue: Move nr_active handling into helpers Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 073/638] workqueue: Make wq_adjust_max_active() round-robin pwqs while activating Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 074/638] workqueue: RCU protect wq->dfl_pwq and implement accessors for it Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 075/638] workqueue: Introduce struct wq_node_nr_active Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 076/638] workqueue: Implement system-wide nr_active enforcement for unbound workqueues Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 077/638] workqueue: Don't call cpumask_test_cpu() with -1 CPU in wq_update_node_max_active() Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 078/638] iomap: clear the per-folio dirty bits on all writeback failures Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 079/638] fs: Fix rw_hint validation Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 080/638] io_uring: remove looping around handling traditional task_work Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 081/638] io_uring: remove unconditional looping in local task_work handling Sasha Levin
2024-03-24 22:51 ` [PATCH 6.6 082/638] s390/dasd: Use dev_*() for device log messages Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 083/638] s390/dasd: fix double module refcount decrement Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 084/638] rcu/exp: Fix RCU expedited parallel grace period kworker allocation failure recovery Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 085/638] rcu/exp: Handle RCU expedited grace period kworker allocation failure Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 086/638] nbd: null check for nla_nest_start Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 087/638] fs/select: rework stack allocation hack for clang Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 088/638] md: Don't clear MD_CLOSING when the raid is about to stop Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 089/638] ovl: remove unused code in lowerdir param parsing Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 090/638] ovl: store and show the user provided lowerdir mount option Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 091/638] ovl: refactor layer parsing helpers Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 092/638] ovl: add support for appending lowerdirs one by one Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 093/638] ovl: Always reject mounting over case-insensitive directories Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 094/638] kunit: test: Log the correct filter string in executor_test Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 095/638] lib/cmdline: Fix an invalid format specifier in an assertion msg Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 096/638] lib: memcpy_kunit: " Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 097/638] time: test: Fix incorrect format specifier Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 098/638] rtc: test: Fix invalid " Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 099/638] io_uring/net: unify how recvmsg and sendmsg copy in the msghdr Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 100/638] io_uring/net: move receive multishot out of the generic msghdr path Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 101/638] io_uring/net: fix overflow check in io_recvmsg_mshot_prep() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 102/638] aoe: fix the potential use-after-free problem in aoecmd_cfg_pkts Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 103/638] x86/mm: Ensure input to pfn_to_kaddr() is treated as a 64-bit type Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 104/638] x86/resctrl: Remove hard-coded memory bandwidth limit Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 105/638] x86/resctrl: Read supported bandwidth sources from CPUID Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 106/638] x86/resctrl: Implement new mba_MBps throttling heuristic Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 107/638] x86/sme: Fix memory encryption setting if enabled by default and not overridden Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 108/638] timekeeping: Fix cross-timestamp interpolation on counter wrap Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 109/638] timekeeping: Fix cross-timestamp interpolation corner case decision Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 110/638] timekeeping: Fix cross-timestamp interpolation for non-x86 Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 111/638] sched/fair: Take the scheduling domain into account in select_idle_smt() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 112/638] sched/fair: Take the scheduling domain into account in select_idle_core() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 113/638] wifi: ath10k: fix NULL pointer dereference in ath10k_wmi_tlv_op_pull_mgmt_tx_compl_ev() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 114/638] wifi: b43: Stop/wake correct queue in DMA Tx path when QoS is disabled Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 115/638] wifi: b43: Stop/wake correct queue in PIO " Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 116/638] wifi: b43: Stop correct queue in DMA worker " Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 117/638] wifi: b43: Disable QoS for bcm4331 Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 118/638] wifi: wilc1000: fix declarations ordering Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 119/638] wifi: wilc1000: fix RCU usage in connect path Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 120/638] wifi: rtl8xxxu: add cancel_work_sync() for c2hcmd_work Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 121/638] wifi: wilc1000: do not realloc workqueue everytime an interface is added Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 122/638] wifi: wilc1000: fix multi-vif management when deleting a vif Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 123/638] wifi: mwifiex: debugfs: Drop unnecessary error check for debugfs_create_dir() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 124/638] ARM: dts: renesas: r8a73a4: Fix external clocks and clock rate Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 125/638] arm64: dts: qcom: sc8180x: Hook up VDD_CX as GCC parent domain Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 126/638] arm64: dts: qcom: sc8180x: Fix up big CPU idle state entry latency Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 127/638] arm64: dts: qcom: sc8180x: Add missing CPU off state Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 128/638] arm64: dts: qcom: sc8180x: Fix eDP PHY power-domains Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 129/638] arm64: dts: qcom: sc8180x: Don't hold MDP core clock at FMAX Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 130/638] arm64: dts: qcom: sc8180x: Require LOW_SVS vote for MMCX if DISPCC is on Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 131/638] arm64: dts: qcom: sc8180x: Shrink aoss_qmp register space size Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 132/638] cpufreq: brcmstb-avs-cpufreq: add check for cpufreq_cpu_get's return value Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 133/638] cpufreq: mediatek-hw: Wait for CPU supplies before probing Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 134/638] sock_diag: annotate data-races around sock_diag_handlers[family] Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 135/638] inet_diag: annotate data-races around inet_diag_table[] Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 136/638] bpftool: Silence build warning about calloc() Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 137/638] selftests/bpf: Fix potential premature unload in bpf_testmod Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 138/638] libbpf: Apply map_set_def_max_entries() for inner_maps on creation Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 139/638] selftest/bpf: Add map_in_maps with BPF_MAP_TYPE_PERF_EVENT_ARRAY values Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 140/638] wifi: ath12k: Fix issues in channel list update Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 141/638] selftests/bpf: De-veth-ize the tc_redirect test case Sasha Levin
2024-03-24 22:52 ` [PATCH 6.6 142/638] selftests/bpf: Add netkit to tc_redirect selftest Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 143/638] selftests/bpf: Fix the flaky tc_redirect_dtime test Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 144/638] selftests/bpf: Wait for the netstamp_needed_key static key to be turned on Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 145/638] af_unix: Annotate data-race of gc_in_progress in wait_for_unix_gc() Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 146/638] arm64: dts: qcom: sm8450: Add missing interconnects to serial Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 147/638] soc: qcom: socinfo: rename PM2250 to PM4125 Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 148/638] arm64: dts: qcom: sdm845-oneplus-common: improve DAI node naming Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 149/638] cpufreq: mediatek-hw: Don't error out if supply is not found Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 150/638] libbpf: Fix faccessat() usage on Android Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 151/638] pmdomain: qcom: rpmhpd: Drop SA8540P gfx.lvl Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 152/638] arm64: dts: qcom: sa8540p: Drop gfx.lvl as power-domain for gpucc Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 153/638] arm64: dts: renesas: r8a779g0: Restore sort order Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 154/638] arm64: dts: renesas: r8a779g0: Add missing SCIF_CLK2 Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 155/638] selftests/bpf: Disable IPv6 for lwt_redirect test Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 156/638] arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on OSM-S i.MX8MM Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 157/638] arm64: dts: imx8mm-kontron: Disable pullups for I2C signals on SL/BL i.MX8MM Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 158/638] arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals on BL OSM-S board Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 159/638] arm64: dts: imx8mm-kontron: Disable pullups for onboard UART signals on BL board Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 160/638] arm64: dts: imx8mm-kontron: Disable pull resistors for SD card signals on BL OSM-S board Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 161/638] arm64: dts: imx8mm-kontron: Disable pull resistors for SD card signals on BL board Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 162/638] arm64: dts: imx8mm-kontron: Fix interrupt for RTC on OSM-S i.MX8MM module Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 163/638] libbpf: Add missing LIBBPF_API annotation to libbpf_set_memlock_rlim API Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 164/638] wifi: ath9k: delay all of ath9k_wmi_event_tasklet() until init is complete Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 165/638] wifi: ath11k: change to move WMI_VDEV_PARAM_SET_HEMU_MODE before WMI_PEER_ASSOC_CMDID Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 166/638] wifi: ath12k: Update Qualcomm Innovation Center, Inc. copyrights Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 167/638] wifi: ath12k: fix fetching MCBC flag for QCN9274 Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 168/638] wifi: iwlwifi: mvm: report beacon protection failures Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 169/638] wifi: iwlwifi: dbg-tlv: ensure NUL termination Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 170/638] wifi: iwlwifi: acpi: fix WPFC reading Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 171/638] wifi: iwlwifi: mvm: initialize rates in FW earlier Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 172/638] wifi: iwlwifi: fix EWRD table validity check Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 173/638] wifi: iwlwifi: mvm: d3: fix IPN byte order Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 174/638] wifi: iwlwifi: mvm: fix the TLC command after ADD_STA Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 175/638] wifi: iwlwifi: read BIOS PNVM only for non-Intel SKU Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 176/638] gpio: vf610: allow disabling the vf610 driver Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 177/638] arm64: dts: imx8mm-venice-gw71xx: fix USB OTG VBUS Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 178/638] pwm: atmel-hlcdc: Fix clock imbalance related to suspend support Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 179/638] net: blackhole_dev: fix build warning for ethh set but not used Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 180/638] arm64: dts: ti: k3-j721s2: Fix power domain for VTM node Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 181/638] arm64: dts: ti: k3-j784s4: " Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 182/638] wifi: ath11k: initialize rx_mcs_80 and rx_mcs_160 before use Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 183/638] wifi: libertas: fix some memleaks in lbs_allocate_cmd_buffer() Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 184/638] libbpf: Use OPTS_SET() macro in bpf_xdp_query() Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 185/638] wifi: wfx: fix memory leak when starting AP Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 186/638] arm64: dts: qcom: msm8998: switch USB QMP PHY to new style of bindings Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 187/638] arm64: dts: qcom: msm8998: declare VLS CLAMP register for USB3 PHY Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 188/638] arm64: dts: qcom: qcm2290: " Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 189/638] arm64: dts: qcom: sm6115: " Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 190/638] wifi: ath12k: fix incorrect logic of calculating vdev_stats_id Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 191/638] printk: Disable passing console lock owner completely during panic() Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 192/638] pwm: sti: Fix capture for st,pwm-num-chan < st,capture-num-chan Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 193/638] tools/resolve_btfids: Refactor set sorting with types from btf_ids.h Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 194/638] tools/resolve_btfids: Fix cross-compilation to non-host endianness Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 195/638] wifi: iwlwifi: support EHT for WH Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 196/638] wifi: iwlwifi: mvm: fix erroneous queue index mask Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 197/638] wifi: iwlwifi: mvm: don't set the MFP flag for the GTK Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 198/638] wifi: iwlwifi: mvm: don't set replay counters to 0xff Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 199/638] s390/pai: fix attr_event_free upper limit for pai device drivers Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 200/638] s390/vdso: drop '-fPIC' from LDFLAGS Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 201/638] selftests: forwarding: Add missing config entries Sasha Levin
2024-03-24 22:53 ` [PATCH 6.6 202/638] selftests: forwarding: Add missing multicast routing " Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 203/638] ipv6: mcast: remove one synchronize_net() barrier in ipv6_mc_down() Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 204/638] arm64: dts: mt8183: Move CrosEC base detection node to kukui-based DTs Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 205/638] arm64: dts: mediatek: mt7986: fix reference to PWM in fan node Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 206/638] arm64: dts: mediatek: mt7986: drop crypto's unneeded/invalid clock name Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 207/638] arm64: dts: mediatek: mt7986: fix SPI bus width properties Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 208/638] arm64: dts: mediatek: mt7986: fix SPI nodename Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 209/638] arm64: dts: mediatek: mt7986: drop "#clock-cells" from PWM Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 210/638] arm64: dts: mediatek: mt7986: add "#reset-cells" to infracfg Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 211/638] arm64: dts: mediatek: mt8192-asurada: Remove CrosEC base detection node Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 212/638] arm64: dts: mediatek: mt8192: fix vencoder clock name Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 213/638] arm64: dts: mediatek: mt8186: fix VENC power domain clocks Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 214/638] arm64: dts: mediatek: mt7622: add missing "device_type" to memory nodes Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 215/638] can: m_can: Start/Cancel polling timer together with interrupts Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 216/638] wifi: iwlwifi: mvm: Fix the listener MAC filter flags Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 217/638] bpf: Mark bpf_spin_{lock,unlock}() helpers with notrace correctly Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 218/638] bpf: don't infer PTR_TO_CTX for programs with unnamed context type Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 219/638] arm64: dts: qcom: sdm845: Use the Low Power Island CX/MX for SLPI Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 220/638] soc: qcom: llcc: Check return value on Broadcast_OR reg read Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 221/638] ARM: dts: qcom: msm8974: correct qfprom node size Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 222/638] arm64: dts: mediatek: mt8186: Add missing clocks to ssusb power domains Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 223/638] arm64: dts: mediatek: mt8186: Add missing xhci clock to usb controllers Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 224/638] cpufreq: qcom-hw: add CONFIG_COMMON_CLK dependency Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 225/638] wifi: wilc1000: prevent use-after-free on vif when cleaning up all interfaces Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 226/638] arm64: dts: ti: k3-am62-main: disable usb lpm Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 227/638] ACPI: processor_idle: Fix memory leak in acpi_processor_power_exit() Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 228/638] bus: tegra-aconnect: Update dependency to ARCH_TEGRA Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 229/638] iommu/amd: Mark interrupt as managed Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 230/638] wifi: brcmsmac: avoid function pointer casts Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 231/638] arm64: dts: qcom: sdm845-db845c: correct PCIe wake-gpios Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 232/638] arm64: dts: qcom: sm8150: use 'gpios' suffix for PCI GPIOs Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 233/638] arm64: dts: qcom: sm8150: correct PCIe wake-gpios Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 234/638] powercap: dtpm_cpu: Fix error check against freq_qos_add_request() Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 235/638] net: ena: Remove ena_select_queue Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 236/638] arm64: dts: ti: k3-j7200-common-proc-board: Modify Pinmux for wkup_uart0 and mcu_uart0 Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 237/638] arm64: dts: ti: k3-j7200-common-proc-board: Remove clock-frequency from mcu_uart0 Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 238/638] arm64: dts: ti: k3-j721s2-common-proc-board: Remove Pinmux for CTS and RTS in wkup_uart0 Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 239/638] arm64: dts: ti: k3-j784s4-evm: " Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 240/638] arm64: dts: ti: k3-am642-evm: Add boot phase tags marking Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 241/638] arm64: dts: ti: k3-am642-sk: " Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 242/638] arm64: dts: ti: k3-am64: Enable SDHCI nodes at the board level Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 243/638] arm64: dts: ti: k3-am64-main: Fix ITAP/OTAP values for MMC Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 244/638] arm64: dts: mt8195-cherry-tomato: change watchdog reset boot flow Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 245/638] arm64: dts: ti: Add common1 register space for AM65x SoC Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 246/638] arm64: dts: ti: Add common1 register space for AM62x SoC Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 247/638] firmware: arm_scmi: Fix double free in SMC transport cleanup path Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 248/638] arm64: dts: ti: k3-am62p: Fix memory ranges for DMSS Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 249/638] wifi: wilc1000: revert reset line logic flip Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 250/638] ARM: dts: arm: realview: Fix development chip ROM compatible value Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 251/638] memory: tegra: Correct DLA client names Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 252/638] wifi: mt76: mt7996: fix TWT issues Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 253/638] wifi: mt76: mt7996: fix incorrect interpretation of EHT MCS caps Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 254/638] wifi: mt76: mt7996: fix HE beamformer phy cap for station vif Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 255/638] wifi: mt76: mt7996: fix efuse reading issue Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 256/638] wifi: mt76: mt7996: fix HIF_TXD_V2_1 value Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 257/638] wifi: mt76: mt792x: fix ethtool warning Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 258/638] wifi: mt76: mt7921e: fix use-after-free in free_irq() Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 259/638] wifi: mt76: mt792x: fix a potential loading failure of the 6Ghz channel config from ACPI Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 260/638] arm64: dts: renesas: rzg2l: Add missing interrupts to IRQC nodes Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 261/638] arm64: dts: renesas: r8a779a0: Correct avb[01] reg sizes Sasha Levin
2024-03-24 22:54 ` [PATCH 6.6 262/638] arm64: dts: renesas: r8a779g0: " Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 263/638] net: mctp: copy skb ext data when fragmenting Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 264/638] pstore: inode: Convert mutex usage to guard(mutex) Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 265/638] pstore: inode: Only d_invalidate() is needed Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 266/638] arm64: dts: allwinner: h6: Add RX DMA channel for SPDIF Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 267/638] ARM: dts: imx6dl-yapp4: Fix typo in the QCA switch register address Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 268/638] ARM: dts: imx6dl-yapp4: Move the internal switch PHYs under the switch node Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 269/638] arm64: dts: imx8mp: Set SPI NOR to max 40 MHz on Data Modul i.MX8M Plus eDM SBC Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 270/638] arm64: dts: imx8mp-evk: Fix hdmi@3d node Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 271/638] regulator: userspace-consumer: add module device table Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 272/638] gpiolib: Pass consumer device through to core in devm_fwnode_gpiod_get_index() Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 273/638] arm64: dts: marvell: reorder crypto interrupts on Armada SoCs Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 274/638] ACPI: resource: Add Infinity laptops to irq1_edge_low_force_override Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 275/638] ACPI: resource: Do IRQ override on Lunnen Ground laptops Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 276/638] ACPI: resource: Add MAIBENBEN X577 to irq1_edge_low_force_override Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 277/638] ACPI: scan: Fix device check notification handling Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 278/638] arm64: dts: rockchip: add missing interrupt-names for rk356x vdpu Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 279/638] arm64: dts: rockchip: fix reset-names for rk356x i2s2 controller Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 280/638] arm64: dts: rockchip: drop rockchip,trcm-sync-tx-only from rk3588 i2s Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 281/638] iommu/arm-smmu-v3: Check that the RID domain is S1 in SVA Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 282/638] objtool: Fix UNWIND_HINT_{SAVE,RESTORE} across basic blocks Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 283/638] x86, relocs: Ignore relocations in .notes section Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 284/638] SUNRPC: fix a memleak in gss_import_v2_context Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 285/638] SUNRPC: fix some memleaks in gssx_dec_option_array Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 286/638] arm64: dts: qcom: sm8550: Fix SPMI channels size Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 287/638] mmc: wmt-sdmmc: remove an incorrect release_mem_region() call in the .remove function Sasha Levin
2024-03-24 22:55 ` Sasha Levin [this message]
2024-03-24 22:55 ` [PATCH 6.6 289/638] wifi: rtw88: 8821cu: Fix firmware upload fail Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 290/638] wifi: rtw88: 8821c: Fix beacon loss and disconnect Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 291/638] wifi: rtw88: 8821c: Fix false alarm count Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 292/638] wifi: brcm80211: handle pmk_op allocation failure Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 293/638] PCI: Make pci_dev_is_disconnected() helper public for other drivers Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 294/638] iommu/vt-d: Don't issue ATS Invalidation request when device is disconnected Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 295/638] igc: Fix missing time sync events Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 296/638] igb: " Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 297/638] ice: fix stats being updated by way too large values Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 298/638] Bluetooth: Remove HCI_POWER_OFF_TIMEOUT Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 299/638] Bluetooth: mgmt: Remove leftover queuing of power_off work Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 300/638] Bluetooth: Remove superfluous call to hci_conn_check_pending() Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 301/638] Bluetooth: Remove BT_HS Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 302/638] Bluetooth: hci_event: Fix not indicating new connection for BIG Sync Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 303/638] Bluetooth: hci_qca: don't use IS_ERR_OR_NULL() with gpiod_get_optional() Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 304/638] Bluetooth: hci_core: Cancel request on command timeout Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 305/638] Bluetooth: hci_sync: Fix overwriting request callback Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 306/638] Bluetooth: hci_h5: Add ability to allocate memory for private data Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 307/638] Bluetooth: btrtl: fix out of bounds memory access Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 308/638] Bluetooth: hci_core: Fix possible buffer overflow Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 309/638] Bluetooth: msft: __hci_cmd_sync() doesn't return NULL Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 310/638] Bluetooth: msft: Fix memory leak Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 311/638] Bluetooth: btusb: " Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 312/638] Bluetooth: af_bluetooth: Fix deadlock Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 313/638] Bluetooth: fix use-after-free in accessing skb after sending it Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 314/638] sr9800: Add check for usbnet_get_endpoints Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 315/638] s390/cache: prevent rebuild of shared_cpu_list Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 316/638] bpf: Fix DEVMAP_HASH overflow check on 32-bit arches Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 317/638] bpf: Fix hashtab " Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 318/638] bpf: Fix stackmap " Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 319/638] iommu: Fix compilation without CONFIG_IOMMU_INTEL Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 320/638] ipv6: fib6_rules: flush route cache when rule is changed Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 321/638] net: ip_tunnel: make sure to pull inner header in ip_tunnel_rcv() Sasha Levin
2024-03-24 22:55 ` [PATCH 6.6 322/638] net: phy: fix phy_get_internal_delay accessing an empty array Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 323/638] net: hns3: fix wrong judgment condition issue Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 324/638] net: hns3: fix kernel crash when 1588 is received on HIP08 devices Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 325/638] net: hns3: fix port duplex configure error in IMP reset Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 326/638] Bluetooth: Fix eir name length Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 327/638] net: phy: dp83822: Fix RGMII TX delay configuration Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 328/638] block: Provide bdev_open_* functions Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 329/638] erofs: Convert to use bdev_open_by_path() Sasha Levin
2024-03-25  0:36   ` Gao Xiang
2024-03-24 22:56 ` [PATCH 6.6 330/638] erofs: fix handling kern_mount() failure Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 331/638] erofs: fix lockdep false positives on initializing erofs_pseudo_mnt Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 332/638] OPP: debugfs: Fix warning around icc_get_name() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 333/638] tcp: fix incorrect parameter validation in the do_tcp_getsockopt() function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 334/638] ipmr: fix incorrect parameter validation in the ip_mroute_getsockopt() function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 335/638] l2tp: fix incorrect parameter validation in the pppol2tp_getsockopt() function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 336/638] udp: fix incorrect parameter validation in the udp_lib_getsockopt() function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 337/638] net: kcm: fix incorrect parameter validation in the kcm_getsockopt) function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 338/638] net/x25: fix incorrect parameter validation in the x25_getsockopt() function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 339/638] nfp: flower: handle acti_netdevs allocation failure Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 340/638] bpf: hardcode BPF_PROG_PACK_SIZE to 2MB * num_possible_nodes() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 341/638] dm raid: fix false positive for requeue needed during reshape Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 342/638] dm: call the resume method on internal suspend Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 343/638] drm/tegra: dsi: Add missing check for of_find_device_by_node Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 344/638] drm/tegra: dpaux: Fix PM disable depth imbalance in tegra_dpaux_probe Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 345/638] drm/tegra: dsi: Fix some error handling paths in tegra_dsi_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 346/638] drm/tegra: dsi: Fix missing pm_runtime_disable() in the error handling path of tegra_dsi_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 347/638] drm/tegra: hdmi: Fix some error handling paths in tegra_hdmi_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 348/638] drm/tegra: rgb: Fix some error handling paths in tegra_dc_rgb_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 349/638] drm/tegra: rgb: Fix missing clk_put() in the error handling paths of tegra_dc_rgb_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 350/638] drm/tegra: output: Fix missing i2c_put_adapter() in the error handling paths of tegra_output_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 351/638] drm/rockchip: inno_hdmi: Fix video timing Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 352/638] drm: Don't treat 0 as -1 in drm_fixp2int_ceil Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 353/638] drm/vkms: Avoid reading beyond LUT array Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 354/638] drm/vmwgfx: fix a memleak in vmw_gmrid_man_get_node Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 355/638] drm/rockchip: lvds: do not overwrite error code Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 356/638] drm/rockchip: lvds: do not print scary message when probing defer Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 357/638] drm/panel-edp: use put_sync in unprepare Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 358/638] drm/lima: fix a memleak in lima_heap_alloc Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 359/638] ASoC: amd: acp: Add missing error handling in sof-mach Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 360/638] ASoC: SOF: amd: Fix memory leak in amd_sof_acp_probe() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 361/638] dmaengine: tegra210-adma: Update dependency to ARCH_TEGRA Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 362/638] media: tc358743: register v4l2 async device only after successful setup Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 363/638] media: cadence: csi2rx: use match fwnode for media link Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 364/638] PCI/DPC: Print all TLP Prefixes, not just the first Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 365/638] perf record: Fix possible incorrect free in record__switch_output() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 366/638] perf top: Uniform the event name for the hybrid machine Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 367/638] perf record: Check conflict between '--timestamp-filename' option and pipe mode before recording Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 368/638] HID: lenovo: Add middleclick_workaround sysfs knob for cptkbd Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 369/638] drm/amd/display: Fix a potential buffer overflow in 'dp_dsc_clock_en_read()' Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 370/638] perf pmu: Treat the msr pmu as software Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 371/638] drm/amd/display: Fix potential NULL pointer dereferences in 'dcn10_set_output_transfer_func()' Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 372/638] ASoC: sh: rz-ssi: Fix error message print Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 373/638] drm/vmwgfx: Fix vmw_du_get_cursor_mob fencing of newly-created MOBs Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 374/638] pinctrl: renesas: r8a779g0: Add missing SCIF_CLK2 pin group/function Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 375/638] clk: samsung: exynos850: Propagate SPI IPCLK rate change Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 376/638] media: v4l2: cci: print leading 0 on error Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 377/638] perf evsel: Fix duplicate initialization of data->id in evsel__parse_sample() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 378/638] PCI/AER: Fix rootport attribute paths in ABI docs Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 379/638] perf bpf: Clean up the generated/copied vmlinux.h Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 380/638] clk: meson: Add missing clocks to axg_clk_regmaps Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 381/638] media: em28xx: annotate unchecked call to media_device_register() Sasha Levin
2024-03-24 22:56 ` [PATCH 6.6 382/638] media: v4l2-tpg: fix some memleaks in tpg_alloc Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 383/638] media: v4l2-mem2mem: fix a memleak in v4l2_m2m_register_entity Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 384/638] mtd: spinand: esmt: Extend IDs to 5 bytes Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 385/638] media: edia: dvbdev: fix a use-after-free Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 386/638] pinctrl: mediatek: Drop bogus slew rate register range for MT8186 Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 387/638] pinctrl: mediatek: Drop bogus slew rate register range for MT8192 Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 388/638] drm/amdgpu: Fix potential out-of-bounds access in 'amdgpu_discovery_reg_base_init()' Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 389/638] clk: qcom: reset: Commonize the de/assert functions Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 390/638] clk: qcom: reset: Ensure write completion on reset de/assertion Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 391/638] quota: Fix potential NULL pointer dereference Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 392/638] quota: Fix rcu annotations of inode dquot pointers Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 393/638] quota: Properly annotate i_dquot arrays with __rcu Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 394/638] PCI/P2PDMA: Fix a sleeping issue in a RCU read section Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 395/638] PCI: switchtec: Fix an error handling path in switchtec_pci_probe() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 396/638] crypto: xilinx - call finalize with bh disabled Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 397/638] drivers/ps3: select VIDEO to provide cmdline functions Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 398/638] perf thread_map: Free strlist on normal path in thread_map__new_by_tid_str() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 399/638] perf srcline: Add missed addr2line closes Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 400/638] dt-bindings: msm: qcom, mdss: Include ommited fam-b compatible Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 401/638] drm/msm/dpu: fix the programming of INTF_CFG2_DATA_HCTL_EN Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 402/638] drm/msm/dpu: Only enable DSC_MODE_MULTIPLEX if dsc_merge is enabled Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 403/638] drm/radeon/ni: Fix wrong firmware size logging in ni_init_microcode() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 404/638] drm/amd/display: fix NULL checks for adev->dm.dc in amdgpu_dm_fini() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 405/638] clk: renesas: r8a779g0: Correct PFC/GPIO parent clocks Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 406/638] clk: renesas: r8a779f0: Correct PFC/GPIO parent clock Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 407/638] ALSA: seq: fix function cast warnings Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 408/638] perf expr: Fix "has_event" function for metric style events Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 409/638] perf stat: Avoid metric-only segv Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 410/638] perf metric: Don't remove scale from counts Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 411/638] ASoC: meson: aiu: fix function pointer type mismatch Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 412/638] ASoC: meson: t9015: " Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 413/638] powerpc: Force inlining of arch_vmap_p{u/m}d_supported() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 414/638] ASoC: SOF: Add some bounds checking to firmware data Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 415/638] drm: ci: use clk_ignore_unused for apq8016 Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 416/638] NTB: fix possible name leak in ntb_register_device() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 417/638] media: cedrus: h265: Fix configuring bitstream size Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 418/638] media: sun8i-di: Fix coefficient writes Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 419/638] media: sun8i-di: Fix power on/off sequences Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 420/638] media: sun8i-di: Fix chroma difference threshold Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 421/638] media: imx: csc/scaler: fix v4l2_ctrl_handler memory leak Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 422/638] media: go7007: add check of return value of go7007_read_addr() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 423/638] media: pvrusb2: remove redundant NULL check Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 424/638] media: pvrusb2: fix pvr2_stream_callback casts Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 425/638] clk: qcom: dispcc-sdm845: Adjust internal GDSC wait times Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 426/638] drm/amd/display: Add 'replay' NULL check in 'edp_set_replay_allow_active()' Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 427/638] drm/panel: boe-tv101wum-nl6: make use of prepare_prev_first Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 428/638] drm/mediatek: dsi: Fix DSI RGB666 formats and definitions Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 429/638] PCI: Mark 3ware-9650SE Root Port Extended Tags as broken Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 430/638] powerpc/ps3: Fix lv1 hcall assembly for ELFv2 calling convention Sasha Levin
2024-03-26  4:36   ` Michael Ellerman
2024-03-26 19:20     ` Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 431/638] pinctrl: renesas: Allow the compiler to optimize away sh_pfc_pm Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 432/638] clk: hisilicon: hi3519: Release the correct number of gates in hi3519_clk_unregister() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 433/638] clk: hisilicon: hi3559a: Fix an erroneous devm_kfree() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 434/638] clk: mediatek: mt8135: Fix an error handling path in clk_mt8135_apmixed_probe() Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 435/638] clk: mediatek: mt7622-apmixedsys: " Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 436/638] clk: mediatek: mt8183: Correct parent of CLK_INFRA_SSPM_32K_SELF Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 437/638] clk: mediatek: mt7981-topckgen: flag SGM_REG_SEL as critical Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 438/638] drm/tegra: put drm_gem_object ref on error in tegra_fb_create Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 439/638] media: ivsc: csi: Swap SINK and SOURCE pads Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 440/638] media: i2c: imx290: Fix IMX920 typo Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 441/638] mfd: syscon: Call of_node_put() only when of_parse_phandle() takes a ref Sasha Levin
2024-03-24 22:57 ` [PATCH 6.6 442/638] mfd: altera-sysmgr: " Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 443/638] perf print-events: make is_event_supported() more robust Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 444/638] crypto: arm/sha - fix function cast warnings Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 445/638] crypto: ccp - Avoid discarding errors in psp_send_platform_access_msg() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 446/638] crypto: qat - avoid division by zero Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 447/638] crypto: qat - move adf_cfg_services Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 448/638] crypto: qat - relocate and rename get_service_enabled() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 449/638] crypto: qat - fix ring to service map for dcc in 4xxx Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 450/638] crypto: jitter - fix CRYPTO_JITTERENTROPY help text Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 451/638] drm/tidss: Fix initial plane zpos values Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 452/638] drm/tidss: Fix sync-lost issue with two displays Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 453/638] clk: imx: imx8mp: Fix SAI_MCLK_SEL definition Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 454/638] mtd: maps: physmap-core: fix flash size larger than 32-bit Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 455/638] mtd: rawnand: lpc32xx_mlc: fix irq handler prototype Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 456/638] ASoC: meson: axg-tdm-interface: fix mclk setup without mclk-fs Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 457/638] ASoC: meson: axg-tdm-interface: add frame rate constraint Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 458/638] perf pmu: Fix a potential memory leak in perf_pmu__lookup() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 459/638] HID: amd_sfh: Update HPD sensor structure elements Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 460/638] HID: amd_sfh: Avoid disabling the interrupt Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 461/638] drm/amdgpu: Fix missing break in ATOM_ARG_IMM Case of atom_get_src_int() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 462/638] media: pvrusb2: fix uaf in pvr2_context_set_notify Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 463/638] media: dvb-frontends: avoid stack overflow warnings with clang Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 464/638] media: go7007: fix a memleak in go7007_load_encoder Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 465/638] media: ttpci: fix two memleaks in budget_av_attach Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 466/638] media: mediatek: vcodec: avoid -Wcast-function-type-strict warning Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 467/638] arm64: ftrace: Don't forbid CALL_OPS+CC_OPTIMIZE_FOR_SIZE with Clang Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 468/638] drm/tests: helpers: Include missing drm_drv header Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 469/638] drm/amd/pm: Fix esm reg mask use to get pcie speed Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 470/638] gpio: nomadik: fix offset bug in nmk_pmx_set() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 471/638] drm/mediatek: Fix a null pointer crash in mtk_drm_crtc_finish_page_flip Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 472/638] mfd: cs42l43: Fix wrong register defaults Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 473/638] powerpc/pseries: Fix potential memleak in papr_get_attr() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 474/638] powerpc/hv-gpci: Fix the H_GET_PERF_COUNTER_INFO hcall return value checks Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 475/638] clk: qcom: gcc-ipq5018: fix 'enable_reg' offset of 'gcc_gmac0_sys_clk' Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 476/638] clk: qcom: gcc-ipq5018: fix 'halt_reg' offset of 'gcc_pcie1_pipe_clk' Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 477/638] clk: qcom: gcc-ipq5018: fix register offset for GCC_UBI0_AXI_ARES reset Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 478/638] drm/msm/dpu: add division of drm_display_mode's hskew parameter Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 479/638] modules: wait do_free_init correctly Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 480/638] mfd: cs42l43: Fix wrong GPIO_FN_SEL and SPI_CLK_CONFIG1 defaults Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 481/638] powerpc/embedded6xx: Fix no previous prototype for avr_uart_send() etc Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 482/638] leds: aw2013: Unlock mutex before destroying it Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 483/638] leds: sgm3140: Add missing timer cleanup and flash gpio control Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 484/638] backlight: ktz8866: Correct the check for of_property_read_u32 Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 485/638] backlight: lm3630a: Initialize backlight_properties on init Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 486/638] backlight: lm3630a: Don't set bl->props.brightness in get_brightness Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 487/638] backlight: da9052: Fully initialize backlight_properties during probe Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 488/638] backlight: lm3639: " Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 489/638] backlight: lp8788: " Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 490/638] arch/powerpc: Remove <linux/fb.h> from backlight code Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 491/638] sparc32: Fix section mismatch in leon_pci_grpci Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 492/638] clk: Fix clk_core_get NULL dereference Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 493/638] clk: zynq: Prevent null pointer dereference caused by kmalloc failure Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 494/638] PCI: brcmstb: Fix broken brcm_pcie_mdio_write() polling Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 495/638] smb: do not test the return value of folio_start_writeback() Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 496/638] cifs: Don't use certain unnecessary folio_*() functions Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 497/638] cifs: Fix writeback data corruption Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 498/638] ALSA: hda/realtek: fix ALC285 issues on HP Envy x360 laptops Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 499/638] ALSA: hda/tas2781: use dev_dbg in system_resume Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 500/638] ALSA: hda/tas2781: add lock to system_suspend Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 501/638] ALSA: hda/tas2781: do not reset cur_* values in runtime_suspend Sasha Levin
2024-03-24 22:58 ` [PATCH 6.6 502/638] ALSA: hda/tas2781: add ptrs to calibration functions Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 503/638] ALSA: hda/tas2781: do not call pm_runtime_force_* in system_resume/suspend Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 504/638] ALSA: hda/tas2781: configure the amp after firmware load Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 505/638] ALSA: hda/tas2781: restore power state after system_resume Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 506/638] ALSA: usb-audio: Stop parsing channels bits when all channels are found Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 507/638] RDMA/irdma: Remove duplicate assignment Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 508/638] RDMA/srpt: Do not register event handler until srpt device is fully setup Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 509/638] f2fs: compress: fix to guarantee persisting compressed blocks by CP Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 510/638] f2fs: compress: fix to cover normal cluster write with cp_rwsem Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 511/638] f2fs: compress: fix to check unreleased compressed cluster Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 512/638] f2fs: delete obsolete FI_FIRST_BLOCK_WRITTEN Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 513/638] f2fs: delete obsolete FI_DROP_CACHE Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 514/638] f2fs: introduce get_dnode_addr() to clean up codes Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 515/638] f2fs: update blkaddr in __set_data_blkaddr() for cleanup Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 516/638] f2fs: compress: fix to avoid inconsistence bewteen i_blocks and dnode Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 517/638] f2fs: fix to remove unnecessary f2fs_bug_on() to avoid panic Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 518/638] f2fs: zone: fix to wait completion of last bio in zone correctly Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 519/638] f2fs: fix NULL pointer dereference in f2fs_submit_page_write() Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 520/638] f2fs: compress: fix to cover f2fs_disable_compressed_file() w/ i_sem Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 521/638] f2fs: fix to avoid potential panic during recovery Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 522/638] scsi: csiostor: Avoid function pointer casts Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 523/638] i3c: dw: Disable IBI IRQ depends on hot-join and SIR enabling Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 524/638] RDMA/hns: Fix mis-modifying default congestion control algorithm Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 525/638] RDMA/device: Fix a race between mad_client and cm_client init Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 526/638] RDMA/rtrs-clt: Check strnlen return len in sysfs mpath_policy_store() Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 527/638] scsi: bfa: Fix function pointer type mismatch for hcb_qe->cbfn Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 528/638] f2fs: fix to create selinux label during whiteout initialization Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 529/638] f2fs: compress: fix to check zstd compress level correctly in mount option Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 530/638] net: sunrpc: Fix an off by one in rpc_sockaddr2uaddr() Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 531/638] NFSv4.2: fix nfs4_listxattr kernel BUG at mm/usercopy.c:102 Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 532/638] NFSv4.2: fix listxattr maximum XDR buffer size Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 533/638] f2fs: compress: fix to check compress flag w/ .i_sem lock Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 534/638] f2fs: check number of blocks in a current section Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 535/638] watchdog: starfive: Check pm_runtime_enabled() before decrementing usage counter Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 536/638] watchdog: stm32_iwdg: initialize default timeout Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 537/638] f2fs: fix to use correct segment type in f2fs_allocate_data_block() Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 538/638] f2fs: ro: compress: fix to avoid caching unaligned extent Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 539/638] RDMA/mana_ib: Fix bug in creation of dma regions Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 540/638] Input: iqs7222 - add support for IQS7222D v1.1 and v1.2 Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 541/638] NFS: Fix nfs_netfs_issue_read() xarray locking for writeback interrupt Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 542/638] NFS: Fix an off by one in root_nfs_cat() Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 543/638] NFSv4.1/pnfs: fix NFS with TLS in pnfs Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 544/638] f2fs: compress: relocate some judgments in f2fs_reserve_compress_blocks Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 545/638] f2fs: compress: fix reserve_cblocks counting error when out of space Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 546/638] f2fs: introduce f2fs_invalidate_internal_cache() for cleanup Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 547/638] f2fs: fix to truncate meta inode pages forcely Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 548/638] f2fs: zone: fix to remove pow2 check condition for zoned block device Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 549/638] perf/x86/amd/core: Avoid register reset when CPU is dead Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 550/638] afs: Revert "afs: Hide silly-rename files from userspace" Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 551/638] nfs: fix panic when nfs4_ff_layout_prepare_ds() fails Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 552/638] io_uring/net: correct the type of variable Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 553/638] comedi: comedi_test: Prevent timers rescheduling during deletion Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 554/638] mei: gsc_proxy: match component when GSC is on different bus Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 555/638] remoteproc: stm32: Fix incorrect type in assignment for va Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 556/638] remoteproc: stm32: Fix incorrect type assignment returned by stm32_rproc_get_loaded_rsc_tablef Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 557/638] iio: pressure: mprls0025pa fix off-by-one enum Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 558/638] usb: phy: generic: Get the vbus supply Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 559/638] tty: vt: fix 20 vs 0x20 typo in EScsiignore Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 560/638] serial: max310x: fix syntax error in IRQ error message Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 561/638] tty: serial: samsung: fix tx_empty() to return TIOCSER_TEMT Sasha Levin
2024-03-24 22:59 ` [PATCH 6.6 562/638] arm64: dts: broadcom: bcmbca: bcm4908: drop invalid switch cells Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 563/638] coresight: Fix issue where a source device's helpers aren't disabled Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 564/638] coresight: etm4x: Set skip_power_up in etm4_init_arch_data function Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 565/638] kconfig: fix infinite loop when expanding a macro at the end of file Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 566/638] iio: gts-helper: Fix division loop Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 567/638] bus: mhi: ep: check the correct variable in mhi_ep_register_controller() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 568/638] hwtracing: hisi_ptt: Move type check to the beginning of hisi_ptt_pmu_event_init() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 569/638] rtc: mt6397: select IRQ_DOMAIN instead of depending on it Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 570/638] serial: 8250_exar: Don't remove GPIO device on suspend Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 571/638] staging: greybus: fix get_channel_from_mode() failure path Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 572/638] usb: gadget: net2272: Use irqflags in the call to net2272_probe_fin Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 573/638] x86/hyperv: Use per cpu initial stack for vtl context Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 574/638] ASoC: tlv320adc3xxx: Don't strip remove function when driver is builtin Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 575/638] thermal/drivers/mediatek/lvts_thermal: Fix a memory leak in an error handling path Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 576/638] thermal/drivers/qoriq: Fix getting tmu range Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 577/638] io_uring: don't save/restore iowait state Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 578/638] spi: lpspi: Avoid potential use-after-free in probe() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 579/638] ASoC: rockchip: i2s-tdm: Fix inaccurate sampling rates Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 580/638] nouveau: reset the bo resource bus info after an eviction Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 581/638] tcp: Fix NEW_SYN_RECV handling in inet_twsk_purge() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 582/638] rds: tcp: Fix use-after-free of net in reqsk_timer_handler() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 583/638] octeontx2-af: Use matching wake_up API variant in CGX command interface Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 584/638] s390/vtime: fix average steal time calculation Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 585/638] net/sched: taprio: proper TCA_TAPRIO_TC_ENTRY_INDEX check Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 586/638] soc: fsl: dpio: fix kcalloc() argument order Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 587/638] cpufreq: Fix per-policy boost behavior on SoCs using cpufreq_boost_set_sw() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 588/638] io_uring: Fix release of pinned pages when __io_uaddr_map fails Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 589/638] tcp: Fix refcnt handling in __inet_hash_connect() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 590/638] vmxnet3: Fix missing reserved tailroom Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 591/638] hsr: Fix uninit-value access in hsr_get_node() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 592/638] net: txgbe: fix clk_name exceed MAX_DEV_ID limits Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 593/638] nvme: fix reconnection fail due to reserved tag allocation Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 594/638] net: mediatek: mtk_eth_soc: clear MAC_MCR_FORCE_LINK only when MAC is up Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 595/638] net: ethernet: mtk_eth_soc: fix PPE hanging issue Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 596/638] io_uring: fix poll_remove stalled req completion Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 597/638] riscv: Fix compilation error with FAST_GUP and rv32 Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 598/638] xen/evtchn: avoid WARN() when unbinding an event channel Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 599/638] xen/events: increment refcnt only if event channel is refcounted Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 600/638] packet: annotate data-races around ignore_outgoing Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 601/638] xfrm: Allow UDP encapsulation only in offload modes Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 602/638] net: veth: do not manipulate GRO when using XDP Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 603/638] net: dsa: mt7530: prevent possible incorrect XTAL frequency selection Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 604/638] spi: spi-imx: fix off-by-one in mx51 CPU mode burst length Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 605/638] drm: Fix drm_fixp2int_round() making it add 0.5 Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 606/638] vdpa_sim: reset must not run Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 607/638] vdpa/mlx5: Allow CVQ size changes Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 608/638] virtio: packed: fix unmap leak for indirect desc table Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 609/638] wireguard: receive: annotate data-race around receiving_counter.counter Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 610/638] rds: introduce acquire/release ordering in acquire/release_in_xmit() Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 611/638] hsr: Handle failures in module init Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 612/638] ipv4: raw: Fix sending packets from raw sockets via IPsec tunnels Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 613/638] ceph: stop copying to iter at EOF on sync reads Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 614/638] net: phy: fix phy_read_poll_timeout argument type in genphy_loopback Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 615/638] dm-integrity: fix a memory leak when rechecking the data Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 616/638] net/bnx2x: Prevent access to a freed page in page_pool Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 617/638] devlink: fix port new reply cmd type Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 618/638] octeontx2: Detect the mbox up or down message via register Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 619/638] octeontx2-pf: Wait till detach_resources msg is complete Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 620/638] octeontx2-pf: Use default max_active works instead of one Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 621/638] octeontx2-pf: Send UP messages to VF only when VF is up Sasha Levin
2024-03-24 23:00 ` [PATCH 6.6 622/638] octeontx2-af: Use separate handlers for interrupts Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 623/638] riscv: Fix syscall wrapper for >word-size arguments Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 624/638] netfilter: nft_set_pipapo: release elements in clone only from destroy path Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 625/638] netfilter: nf_tables: do not compare internal table flags on updates Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 626/638] rcu: add a helper to report consolidated flavor QS Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 627/638] net: report RCU QS on threaded NAPI repolling Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 628/638] bpf: report RCU QS in cpumap kthread Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 629/638] net: dsa: mt7530: fix link-local frames that ingress vlan filtering ports Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 630/638] net: dsa: mt7530: fix handling of all link-local frames Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 631/638] netfilter: nf_tables: Fix a memory leak in nf_tables_updchain Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 632/638] spi: spi-mt65xx: Fix NULL pointer access in interrupt handler Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 633/638] selftests: forwarding: Fix ping failure due to short timeout Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 634/638] dm io: Support IO priority Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 635/638] dm-integrity: align the outgoing bio in integrity_recheck Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 636/638] x86/efistub: Clear decompressor BSS in native EFI entrypoint Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 637/638] x86/efistub: Don't clear BSS twice in mixed mode Sasha Levin
2024-03-24 23:01 ` [PATCH 6.6 638/638] Linux 6.6.23-rc1 Sasha Levin
2024-03-25  9:58 ` [PATCH 6.6 000/638] 6.6.23-rc1 review Naresh Kamboju
2024-03-25 11:34   ` Sasha Levin
2024-03-25 10:45 ` Takeshi Ogasawara

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=20240324230116.1348576-289-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=badouri.g@gmail.com \
    --cc=gautham.shenoy@amd.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mario.limonciello@amd.com \
    --cc=perry.yuan@amd.com \
    --cc=rafael.j.wysocki@intel.com \
    --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).