All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
From: Sasha Levin <sashal@kernel.org>
To: linux-kernel@vger.kernel.org, stable@vger.kernel.org
Cc: "Théo Lebrun" <theo.lebrun@bootlin.com>,
	"Linus Walleij" <linus.walleij@linaro.org>,
	"Sasha Levin" <sashal@kernel.org>
Subject: [PATCH 6.7 525/713] gpio: nomadik: fix offset bug in nmk_pmx_set()
Date: Sun, 24 Mar 2024 18:44:11 -0400	[thread overview]
Message-ID: <20240324224720.1345309-526-sashal@kernel.org> (raw)
In-Reply-To: <20240324224720.1345309-1-sashal@kernel.org>

From: Théo Lebrun <theo.lebrun@bootlin.com>

[ Upstream commit 53cf6b72e074864b94ade97dcb6f30b5ac1a82dc ]

Previously, the statement looked like:

    slpm[x] &= ~BIT(g->grp.pins[i]);

Where:
 - slpm is a unsigned int pointer;
 - g->grp.pins[i] is a pin number. It can grow to more than 32.

The expected shift amount is a pin bank offset.

This bug does not occur on every group or pin: the altsetting must be
NMK_GPIO_ALT_C and the pin must be 32 or above. It might have occured.
For example, in pinctrl-nomadik-db8500.c, pin group i2c3_c_2 has the
right altsetting and pins 229 and 230.

Fixes: dbfe8ca259e1 ("pinctrl/nomadik: implement pin multiplexing")
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com>
Link: https://lore.kernel.org/r/20240228-mbly-gpio-v2-5-3ba757474006@bootlin.com
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pinctrl/nomadik/pinctrl-nomadik.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/pinctrl/nomadik/pinctrl-nomadik.c b/drivers/pinctrl/nomadik/pinctrl-nomadik.c
index 863732287b1e5..445c61a4a7e55 100644
--- a/drivers/pinctrl/nomadik/pinctrl-nomadik.c
+++ b/drivers/pinctrl/nomadik/pinctrl-nomadik.c
@@ -1575,8 +1575,10 @@ static int nmk_pmx_set(struct pinctrl_dev *pctldev, unsigned function,
 		 * Then mask the pins that need to be sleeping now when we're
 		 * switching to the ALT C function.
 		 */
-		for (i = 0; i < g->grp.npins; i++)
-			slpm[g->grp.pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(g->grp.pins[i]);
+		for (i = 0; i < g->grp.npins; i++) {
+			unsigned int bit = g->grp.pins[i] % NMK_GPIO_PER_CHIP;
+			slpm[g->grp.pins[i] / NMK_GPIO_PER_CHIP] &= ~BIT(bit);
+		}
 		nmk_gpio_glitch_slpm_init(slpm);
 	}
 
-- 
2.43.0


  parent reply	other threads:[~2024-03-24 22:56 UTC|newest]

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

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=20240324224720.1345309-526-sashal@kernel.org \
    --to=sashal@kernel.org \
    --cc=linus.walleij@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=theo.lebrun@bootlin.com \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.