public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Jeffrey Hugo <quic_jhugo@quicinc.com>,
	Chris Lew <quic_clew@quicinc.com>,
	Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 273/473] net: qrtr: ns: Fix module refcnt
Date: Thu,  6 Jun 2024 16:03:22 +0200	[thread overview]
Message-ID: <20240606131708.948029859@linuxfoundation.org> (raw)
In-Reply-To: <20240606131659.786180261@linuxfoundation.org>

6.1-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Chris Lew <quic_clew@quicinc.com>

[ Upstream commit fd76e5ccc48f9f54eb44909dd7c0b924005f1582 ]

The qrtr protocol core logic and the qrtr nameservice are combined into
a single module. Neither the core logic or nameservice provide much
functionality by themselves; combining the two into a single module also
prevents any possible issues that may stem from client modules loading
inbetween qrtr and the ns.

Creating a socket takes two references to the module that owns the
socket protocol. Since the ns needs to create the control socket, this
creates a scenario where there are always two references to the qrtr
module. This prevents the execution of 'rmmod' for qrtr.

To resolve this, forcefully put the module refcount for the socket
opened by the nameservice.

Fixes: a365023a76f2 ("net: qrtr: combine nameservice into main module")
Reported-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Tested-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Signed-off-by: Chris Lew <quic_clew@quicinc.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/qrtr/ns.c | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/net/qrtr/ns.c b/net/qrtr/ns.c
index 4a13b9f7abb44..3c513e7ca2d5c 100644
--- a/net/qrtr/ns.c
+++ b/net/qrtr/ns.c
@@ -807,6 +807,24 @@ int qrtr_ns_init(void)
 	if (ret < 0)
 		goto err_wq;
 
+	/* As the qrtr ns socket owner and creator is the same module, we have
+	 * to decrease the qrtr module reference count to guarantee that it
+	 * remains zero after the ns socket is created, otherwise, executing
+	 * "rmmod" command is unable to make the qrtr module deleted after the
+	 *  qrtr module is inserted successfully.
+	 *
+	 * However, the reference count is increased twice in
+	 * sock_create_kern(): one is to increase the reference count of owner
+	 * of qrtr socket's proto_ops struct; another is to increment the
+	 * reference count of owner of qrtr proto struct. Therefore, we must
+	 * decrement the module reference count twice to ensure that it keeps
+	 * zero after server's listening socket is created. Of course, we
+	 * must bump the module reference count twice as well before the socket
+	 * is closed.
+	 */
+	module_put(qrtr_ns.sock->ops->owner);
+	module_put(qrtr_ns.sock->sk->sk_prot_creator->owner);
+
 	return 0;
 
 err_wq:
@@ -821,6 +839,15 @@ void qrtr_ns_remove(void)
 {
 	cancel_work_sync(&qrtr_ns.work);
 	destroy_workqueue(qrtr_ns.workqueue);
+
+	/* sock_release() expects the two references that were put during
+	 * qrtr_ns_init(). This function is only called during module remove,
+	 * so try_stop_module() has already set the refcnt to 0. Use
+	 * __module_get() instead of try_module_get() to successfully take two
+	 * references.
+	 */
+	__module_get(qrtr_ns.sock->ops->owner);
+	__module_get(qrtr_ns.sock->sk->sk_prot_creator->owner);
 	sock_release(qrtr_ns.sock);
 }
 EXPORT_SYMBOL_GPL(qrtr_ns_remove);
-- 
2.43.0




  parent reply	other threads:[~2024-06-06 14:16 UTC|newest]

Thread overview: 488+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-06-06 13:58 [PATCH 6.1 000/473] 6.1.93-rc1 review Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 001/473] x86/tsc: Trust initial offset in architectural TSC-adjust MSRs Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 002/473] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 003/473] tty: n_gsm: fix possible out-of-bounds in gsm0_receive() Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 004/473] tty: n_gsm: fix missing receive state reset after mode switch Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 005/473] speakup: Fix sizeof() vs ARRAY_SIZE() bug Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 006/473] serial: 8250_bcm7271: use default_mux_rate if possible Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 007/473] serial: 8520_mtk: Set RTS on shutdown for Rx in-band wakeup Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 008/473] io_uring: fail NOP if non-zero op flags is passed in Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 009/473] Revert "r8169: dont try to disable interrupts if NAPI is, scheduled already" Greg Kroah-Hartman
2024-06-06 13:58 ` [PATCH 6.1 010/473] r8169: Fix possible ring buffer corruption on fragmented Tx packets Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 011/473] ring-buffer: Fix a race between readers and resize checks Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 012/473] tools/latency-collector: Fix -Wformat-security compile warns Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 013/473] tools/nolibc/stdlib: fix memory error in realloc() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 014/473] net: smc91x: Fix m68k kernel compilation for ColdFire CPU Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 015/473] nilfs2: fix unexpected freezing of nilfs_segctor_sync() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 016/473] nilfs2: fix potential hang in nilfs_detach_log_writer() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 017/473] fs/ntfs3: Remove max link count info display during driver init Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 018/473] fs/ntfs3: Taking DOS names into account during link counting Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 019/473] fs/ntfs3: Fix case when index is reused during tree transformation Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 020/473] fs/ntfs3: Break dir enumeration if directory contents error Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 021/473] ksmbd: avoid to send duplicate oplock break notifications Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 022/473] ksmbd: ignore trailing slashes in share paths Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 023/473] ALSA: hda/realtek: fix mute/micmute LEDs dont work for ProBook 440/460 G11 Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 024/473] ALSA: core: Fix NULL module pointer assignment at card init Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 025/473] ALSA: Fix deadlocks with kctl removals at disconnection Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 026/473] KEYS: asymmetric: Add missing dependencies of FIPS_SIGNATURE_SELFTEST Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 027/473] wifi: mac80211: dont use rate mask for scanning Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 028/473] wifi: mac80211: ensure beacon is non-S1G prior to extracting the beacon timestamp field Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 029/473] wifi: cfg80211: fix the order of arguments for trace events of the tx_rx_evt class Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 030/473] dt-bindings: rockchip: grf: Add missing type to pcie-phy node Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 031/473] net: usb: qmi_wwan: add Telit FN920C04 compositions Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 032/473] drm/amd/display: Set color_mgmt_changed to true on unsuspend Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 033/473] drm/amdgpu: Update BO eviction priorities Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 034/473] drm/amdgpu: Fix the ring buffer size for queue VM flush Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 035/473] drm/amdgpu/mes: fix use-after-free issue Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 036/473] LoongArch: Lately init pmu after smp is online Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 037/473] selftests: sud_test: return correct emulated syscall value on RISC-V Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 038/473] sched/isolation: Fix boot crash when maxcpus < first housekeeping CPU Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 039/473] ASoC: Intel: bytcr_rt5640: Apply Asus T100TA quirk to Asus T100TAM too Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 040/473] regulator: irq_helpers: duplicate IRQ name Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 041/473] ASoC: rt5645: Fix the electric noise due to the CBJ contacts floating Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 042/473] ASoC: dt-bindings: rt5645: add cbj sleeve gpio property Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 043/473] regulator: vqmmc-ipq4019: fix module autoloading Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 044/473] ASoC: rt715: add vendor clear control register Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 045/473] ASoC: rt715-sdca: volume step modification Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 046/473] KVM: selftests: Add test for uaccesses to non-existent vgic-v2 CPUIF Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 047/473] x86/efistub: Omit physical KASLR when memory reservations exist Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 048/473] efi: libstub: only free priv.runtime_map when allocated Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 049/473] KVM: x86: Dont advertise guest.MAXPHYADDR as host.MAXPHYADDR in CPUID Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 050/473] genirq/cpuhotplug, x86/vector: Prevent vector leak during CPU offline Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 051/473] fpga: dfl-pci: add PCI subdevice ID for Intel D5005 card Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 052/473] softirq: Fix suspicious RCU usage in __do_softirq() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 053/473] ASoC: da7219-aad: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 054/473] ALSA: hda: intel-dsp-config: harden I2C/I2S codec detection Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 055/473] drm/amd/display: Add dtbclk access to dcn315 Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 056/473] drm/amd/display: Add VCO speed parameter for DCN31 FPU Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 057/473] drm/amdkfd: Flush the process wq before creating a kfd_process Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 058/473] x86/mm: Remove broken vsyscall emulation code from the page fault code Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 059/473] nvme: find numa distance only if controller has valid numa id Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 060/473] nvmet-auth: return the error code to the nvmet_auth_host_hash() callers Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 061/473] nvmet-auth: replace pr_debug() with pr_err() to report an error Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 062/473] nvmet-tcp: fix possible memory leak when tearing down a controller Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 063/473] nvmet: fix nvme status code when namespace is disabled Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 064/473] epoll: be better about file lifetimes Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 065/473] nvmet: prevent sprintf() overflow in nvmet_subsys_nsid_exists() Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 066/473] openpromfs: finish conversion to the new mount API Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 067/473] crypto: bcm - Fix pointer arithmetic Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 068/473] mm/slub, kunit: Use inverted data to corrupt kmem cache Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 069/473] firmware: raspberrypi: Use correct device for DMA mappings Greg Kroah-Hartman
2024-06-06 13:59 ` [PATCH 6.1 070/473] ecryptfs: Fix buffer size for tag 66 packet Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 071/473] nilfs2: fix out-of-range warning Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 072/473] parisc: add missing export of __cmpxchg_u8() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 073/473] crypto: ccp - drop platform ifdef checks Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 074/473] crypto: x86/nh-avx2 - add missing vzeroupper Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 075/473] crypto: x86/sha256-avx2 " Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 076/473] crypto: x86/sha512-avx2 " Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 077/473] s390/cio: fix tracepoint subchannel type field Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 078/473] io_uring: dont use TIF_NOTIFY_SIGNAL to test for availability of task_work Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 079/473] io_uring: use the right type for work_llist empty check Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 080/473] rcu-tasks: Fix show_rcu_tasks_trace_gp_kthread buffer overflow Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 081/473] rcu: Fix buffer overflow in print_cpu_stall_info() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 082/473] ARM: configs: sunxi: Enable DRM_DW_HDMI Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 083/473] jffs2: prevent xattr node from overflowing the eraseblock Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 084/473] soc: mediatek: cmdq: Fix typo of CMDQ_JUMP_RELATIVE Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 085/473] null_blk: Fix missing mutex_destroy() at module removal Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 086/473] md: fix resync softlockup when bitmap size is less than array size Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 087/473] block: open code __blk_account_io_start() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 088/473] block: open code __blk_account_io_done() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 089/473] block: support to account io_ticks precisely Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 090/473] wifi: ath10k: poll service ready message before failing Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 091/473] wifi: brcmfmac: pcie: handle randbuf allocation failure Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 092/473] wifi: ath11k: dont force enable power save on non-running vdevs Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 093/473] bpftool: Fix missing pids during link show Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 094/473] x86/boot: Ignore relocations in .notes sections in walk_relocs() too Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 095/473] sched/fair: Add EAS checks before updating root_domain::overutilized Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 096/473] ACPI: Fix Generic Initiator Affinity _OSC bit Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 097/473] qed: avoid truncating work queue length Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 098/473] net/mlx5e: Fail with messages when params are not valid for XSK Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 099/473] mlx5: stop warning for 64KB pages Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 100/473] bitops: add missing prototype check Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 101/473] wifi: carl9170: re-fix fortified-memset warning Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 102/473] bpf: Pack struct bpf_fib_lookup Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 103/473] scsi: ufs: qcom: Perform read back after writing reset bit Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 104/473] scsi: ufs: qcom: Perform read back after writing REG_UFS_SYS1CLK_1US Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 105/473] scsi: ufs: ufs-qcom: Fix the Qcom register name for offset 0xD0 Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 106/473] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW version major 5 Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 107/473] scsi: ufs: qcom: Perform read back after writing unipro mode Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 108/473] scsi: ufs: qcom: Perform read back after writing CGC enable Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 109/473] scsi: ufs: cdns-pltfrm: Perform read back after writing HCLKDIV Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 110/473] scsi: ufs: core: Perform read back after disabling interrupts Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 111/473] scsi: ufs: core: Perform read back after disabling UIC_COMMAND_COMPL Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 112/473] ACPI: LPSS: Advertise number of chip selects via property Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 113/473] irqchip/alpine-msi: Fix off-by-one in allocation error path Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 114/473] irqchip/loongson-pch-msi: Fix off-by-one on " Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 115/473] ACPI: disable -Wstringop-truncation Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 116/473] gfs2: Dont forget to complete delayed withdraw Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 117/473] gfs2: Fix "ignore unlock failures after withdraw" Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 118/473] x86/boot/64: Clear most of CR4 in startup_64(), except PAE, MCE and LA57 Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 119/473] selftests/bpf: Fix umount cgroup2 error in test_sockmap Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 120/473] cpufreq: exit() callback is optional Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 121/473] x86/pat: Introduce lookup_address_in_pgd_attr() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 122/473] x86/pat: Restructure _lookup_address_cpa() Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 123/473] x86/pat: Fix W^X violation false-positives when running as Xen PV guest Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 124/473] net: export inet_lookup_reuseport and inet6_lookup_reuseport Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 125/473] net: remove duplicate reuseport_lookup functions Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 126/473] udp: Avoid call to compute_score on multiple sites Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 127/473] cppc_cpufreq: Fix possible null pointer dereference Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 128/473] scsi: libsas: Fix the failure of adding phy with zero-address to port Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 129/473] scsi: hpsa: Fix allocation size for Scsi_Host private data Greg Kroah-Hartman
2024-06-06 14:00 ` [PATCH 6.1 130/473] x86/purgatory: Switch to the position-independent small code model Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 131/473] thermal/drivers/tsens: Fix null pointer dereference Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 132/473] wifi: ath10k: Fix an error code problem in ath10k_dbg_sta_write_peer_debug_trigger() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 133/473] selftests/bpf: Fix a fd leak in error paths in open_netns Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 134/473] wifi: ath10k: populate board data for WCN3990 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 135/473] net: dsa: mv88e6xxx: Add support for model-specific pre- and post-reset handlers Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 136/473] net: dsa: mv88e6xxx: Avoid EEPROM timeout without EEPROM on 88E6250-family switches Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 137/473] tcp: avoid premature drops in tcp_add_backlog() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 138/473] pwm: sti: Convert to platform remove callback returning void Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 139/473] pwm: sti: Prepare removing pwm_chip from driver data Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 140/473] pwm: sti: Simplify probe function using devm functions Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 141/473] drivers/perf: hisi_pcie: Fix out-of-bound access when valid event group Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 142/473] drivers/perf: hisi: hns3: " Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 143/473] drivers/perf: hisi: hns3: Actually use devm_add_action_or_reset() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 144/473] net: give more chances to rcu in netdev_wait_allrefs_any() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 145/473] macintosh/via-macii: Fix "BUG: sleeping function called from invalid context" Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 146/473] wifi: carl9170: add a proper sanity check for endpoints Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 147/473] wifi: ar5523: enable proper endpoint verification Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 148/473] sh: kprobes: Merge arch_copy_kprobe() into arch_prepare_kprobe() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 149/473] Revert "sh: Handle calling csum_partial with misaligned data" Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 150/473] wifi: mt76: mt7603: add wpdma tx eof flag for PSE client reset Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 151/473] libbpf: Fix error message in attach_kprobe_multi Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 152/473] selftests/binderfs: use the Makefiles rules, not Makes implicit rules Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 153/473] selftests/resctrl: fix clang build failure: use LOCAL_HDRS Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 154/473] selftests: default to host arch for LLVM builds Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 155/473] kunit: Fix kthread reference Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 156/473] HID: intel-ish-hid: ipc: Add check for pci_alloc_irq_vectors Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 157/473] scsi: bfa: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 158/473] scsi: qedf: " Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 159/473] scsi: qla2xxx: Fix debugfs output for fw_resource_count Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 160/473] kernel/numa.c: Move logging out of numa.h Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 161/473] x86/numa: Fix SRAT lookup of CFMWS ranges with numa_fill_memblks() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 162/473] wifi: mwl8k: initialize cmd->addr[] properly Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 163/473] HID: amd_sfh: Handle "no sensors" in PM operations Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 164/473] usb: aqc111: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 165/473] net: usb: sr9700: " Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 166/473] m68k: Fix spinlock race in kernel thread creation Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 167/473] m68k: mac: Fix reboot hang on Mac IIci Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 168/473] net: ipv6: fix wrong start position when receive hop-by-hop fragment Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 169/473] eth: sungem: remove .ndo_poll_controller to avoid deadlocks Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 170/473] selftests: net: move amt to socat for better compatibility Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 171/473] net: ethernet: cortina: Locking fixes Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 172/473] af_unix: Fix data races in unix_release_sock/unix_stream_sendmsg Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 173/473] net: usb: smsc95xx: stop lying about skb->truesize Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 174/473] net: openvswitch: fix overwriting ct original tuple for ICMPv6 Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 175/473] ipv6: sr: add missing seg6_local_exit Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 176/473] ipv6: sr: fix incorrect unregister order Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 177/473] ipv6: sr: fix invalid unregister error path Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 178/473] net/mlx5: Add a timeout to acquire the command queue semaphore Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 179/473] net/mlx5: Discard command completions in internal error Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 180/473] s390/bpf: Emit a barrier for BPF_FETCH instructions Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 181/473] riscv, bpf: make some atomic operations fully ordered Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 182/473] ax25: Use kernel universal linked list to implement ax25_dev_list Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 183/473] ax25: Fix reference count leak issues of ax25_dev Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 184/473] ax25: Fix reference count leak issue of net_device Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 185/473] mptcp: SO_KEEPALIVE: fix getsockopt support Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 186/473] Bluetooth: Consolidate code around sk_alloc into a helper function Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 187/473] Bluetooth: compute LE flow credits based on recvbuf space Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 188/473] Bluetooth: qca: Fix error code in qca_read_fw_build_info() Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 189/473] drm/bridge: Fix improper bridge init order with pre_enable_prev_first Greg Kroah-Hartman
2024-06-06 14:01 ` [PATCH 6.1 190/473] printk: Let no_printk() use _printk() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 191/473] dev_printk: Add and use dev_no_printk() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 192/473] drm/lcdif: Do not disable clocks on already suspended hardware Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 193/473] drm/panel-samsung-atna33xc20: Use ktime_get_boottime for delays Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 194/473] drm/dp: Dont attempt AUX transfers when eDP panels are not powered Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 195/473] drm/panel: atna33xc20: Fix unbalanced regulator in the case HPD doesnt assert Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 196/473] drm/amd/display: Fix potential index out of bounds in color transformation function Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 197/473] ASoC: Intel: Disable route checks for Skylake boards Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 198/473] ASoC: Intel: avs: ssm4567: Do not ignore route checks Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 199/473] mtd: core: Report error if first mtd_otp_size() call fails in mtd_otp_nvmem_add() Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 200/473] mtd: rawnand: hynix: fixed typo Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 201/473] fbdev: shmobile: fix snprintf truncation Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 202/473] ASoC: kirkwood: Fix potential NULL dereference Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 203/473] drm/meson: vclk: fix calculation of 59.94 fractional rates Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 204/473] drm/mediatek: Add 0 size check to mtk_drm_gem_obj Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 205/473] powerpc/fsl-soc: hide unused const variable Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 206/473] fbdev: sisfb: hide unused variables Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 207/473] ASoC: Intel: avs: Fix ASRC module initialization Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 208/473] ASoC: Intel: avs: Fix potential integer overflow Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 209/473] media: ngene: Add dvb_ca_en50221_init return value check Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 210/473] media: rcar-vin: work around -Wenum-compare-conditional warning Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 211/473] media: radio-shark2: Avoid led_names truncations Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 212/473] drm: bridge: cdns-mhdp8546: Fix possible null pointer dereference Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 213/473] platform/x86: xiaomi-wmi: Fix race condition when reporting key events Greg Kroah-Hartman
2024-06-07  5:30   ` Armin Wolf
2024-06-06 14:02 ` [PATCH 6.1 214/473] drm/msm/dp: allow voltage swing / pre emphasis of 3 Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 215/473] drm/msm/dp: Return IRQ_NONE for unhandled interrupts Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 216/473] drm/msm/dp: Avoid a long timeout for AUX transfer if nothing connected Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 217/473] media: ipu3-cio2: Request IRQ earlier Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 218/473] media: dt-bindings: ovti,ov2680: Fix the power supply names Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 219/473] fbdev: sh7760fb: allow modular build Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 220/473] media: atomisp: ssh_css: Fix a null-pointer dereference in load_video_binaries Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 221/473] drm/arm/malidp: fix a possible null pointer dereference Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 222/473] drm: vc4: Fix " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 223/473] ASoC: tracing: Export SND_SOC_DAPM_DIR_OUT to its value Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 224/473] drm/bridge: anx7625: Dont log an error when DSI host cant be found Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 225/473] drm/bridge: icn6211: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 226/473] drm/bridge: lt8912b: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 227/473] drm/bridge: lt9611: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 228/473] drm/bridge: lt9611uxc: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 229/473] drm/bridge: tc358775: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 230/473] drm/bridge: dpc3433: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 231/473] drm/panel: novatek-nt35950: " Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 232/473] drm/panel: simple: Add missing Innolux G121X1-L03 format, flags, connector Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 233/473] drm/mipi-dsi: use correct return type for the DSC functions Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 234/473] drm/rockchip: vop2: Do not divide height twice for YUV Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 235/473] clk: samsung: exynosautov9: fix wrong pll clock id value Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 236/473] RDMA/mlx5: Adding remote atomic access flag to updatable flags Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 237/473] RDMA/hns: Fix return value in hns_roce_map_mr_sg Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 238/473] RDMA/hns: Fix deadlock on SRQ async events Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 239/473] RDMA/hns: Fix UAF for cq async event Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 240/473] RDMA/hns: Fix GMV table pagesize Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 241/473] RDMA/hns: Use complete parentheses in macros Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 242/473] RDMA/hns: Modify the print level of CQE error Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 243/473] clk: mediatek: mt8365-mm: fix DPI0 parent Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 244/473] clk: rs9: fix wrong default value for clock amplitude Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 245/473] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 246/473] RDMA/rxe: Replace pr_xxx by rxe_dbg_xxx in rxe_net.c Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 247/473] RDMA/rxe: Fix incorrect rxe_put in error path Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 248/473] IB/mlx5: Use __iowrite64_copy() for write combining stores Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 249/473] clk: renesas: r8a779a0: Fix CANFD parent clock Greg Kroah-Hartman
2024-06-06 14:02 ` [PATCH 6.1 250/473] clk: renesas: r9a07g043: Add clock and reset entry for PLIC Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 251/473] lib/test_hmm.c: handle src_pfns and dst_pfns allocation failure Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 252/473] clk: qcom: dispcc-sm8450: fix DisplayPort clocks Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 253/473] clk: qcom: dispcc-sm6350: " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 254/473] clk: qcom: mmcc-msm8998: fix venus clock issue Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 255/473] x86/insn: Fix PUSH instruction in x86 instruction decoder opcode map Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 256/473] x86/insn: Add VEX versions of VPDPBUSD, VPDPBUSDS, VPDPWSSD and VPDPWSSDS Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 257/473] ext4: avoid excessive credit estimate in ext4_tmpfile() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 258/473] virt: acrn: stop using follow_pfn Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 259/473] drivers/virt/acrn: fix PFNMAP PTE checks in acrn_vm_ram_map() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 260/473] sunrpc: removed redundant procp check Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 261/473] ext4: simplify calculation of blkoff in ext4_mb_new_blocks_simple Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 262/473] ext4: fix unit mismatch " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 263/473] ext4: try all groups " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 264/473] ext4: remove unused parameter from ext4_mb_new_blocks_simple() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 265/473] ext4: fix potential unnitialized variable Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 266/473] SUNRPC: Fix gss_free_in_token_pages() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 267/473] selftests/kcmp: remove unused open mode Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 268/473] RDMA/IPoIB: Fix format truncation compilation errors Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 269/473] net: add pskb_may_pull_reason() helper Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 270/473] net: bridge: xmit: make sure we have at least eth header len bytes Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 271/473] selftests: net: bridge: increase IGMP/MLD exclude timeout membership interval Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 272/473] net: bridge: mst: fix vlan use-after-free Greg Kroah-Hartman
2024-06-06 14:03 ` Greg Kroah-Hartman [this message]
2024-06-06 14:03 ` [PATCH 6.1 274/473] netrom: fix possible dead-lock in nr_rt_ioctl() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 275/473] af_packet: do not call packet_read_pending() from tpacket_destruct_skb() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 276/473] sched/fair: Allow disabling sched_balance_newidle with sched_relax_domain_level Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 277/473] sched/core: Fix incorrect initialization of the burst parameter in cpu_max_write() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 278/473] scsi: ufs: ufs-qcom: Clear qunipro_g4_sel for HW major version > 5 Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 279/473] perf record: Delete session after stopping sideband thread Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 280/473] perf probe: Add missing libgen.h header needed for using basename() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 281/473] iio: core: Leave private pointer NULL when no private data supplied Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 282/473] greybus: lights: check return of get_channel_from_mode Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 283/473] f2fs: multidev: fix to recognize valid zero block address Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 284/473] f2fs: fix to wait on page writeback in __clone_blkaddrs() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 285/473] counter: linux/counter.h: fix Excess kernel-doc description warning Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 286/473] perf annotate: Get rid of duplicate --group option item Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 287/473] soundwire: cadence: fix invalid PDI offset Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 288/473] dmaengine: idma64: Add check for dma_set_max_seg_size Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 289/473] firmware: dmi-id: add a release callback function Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 290/473] serial: max3100: Lock port->lock when calling uart_handle_cts_change() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 291/473] serial: max3100: Update uart_driver_registered on driver removal Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 292/473] serial: max3100: Fix bitwise types Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 293/473] greybus: arche-ctrl: move device table to its right location Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 294/473] PCI: tegra194: Fix probe path for Endpoint mode Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 295/473] serial: sc16is7xx: add proper sched.h include for sched_set_fifo() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 296/473] interconnect: qcom: qcm2290: Fix mas_snoc_bimc QoS port assignment Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 297/473] arm64: dts: meson: fix S4 power-controller node Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 298/473] perf test: Add -w/--workload option Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 299/473] perf test: Add thloop test workload Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 300/473] perf test: Add leafloop " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 301/473] perf test: Add sqrtloop " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 302/473] perf test: Add brstack " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 303/473] perf test: Add datasym " Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 304/473] perf tests: Make "test data symbol" more robust on Neoverse N1 Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 305/473] dt-bindings: PCI: rcar-pci-host: Add optional regulators Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 306/473] dt-bindings: PCI: rcar-pci-host: Add missing IOMMU properties Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 307/473] f2fs: compress: fix to relocate check condition in f2fs_{release,reserve}_compress_blocks() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 308/473] f2fs: compress: fix to relocate check condition in f2fs_ioc_{,de}compress_file() Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 309/473] f2fs: fix typos in comments Greg Kroah-Hartman
2024-06-06 14:03 ` [PATCH 6.1 310/473] f2fs: fix to relocate check condition in f2fs_fallocate() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 311/473] f2fs: fix to check pinfile flag in f2fs_move_file_range() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 312/473] iio: adc: stm32: Fixing err code to not indicate success Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 313/473] coresight: etm4x: Fix unbalanced pm_runtime_enable() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 314/473] perf docs: Document bpf event modifier Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 315/473] iio: pressure: dps310: support negative temperature values Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 316/473] coresight: etm4x: Do not hardcode IOMEM access for register restore Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 317/473] coresight: etm4x: Do not save/restore Data trace control registers Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 318/473] coresight: etm4x: Safe access for TRCQCLTR Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 319/473] coresight: etm4x: Fix access to resource selector registers Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 320/473] fpga: region: add owner module and take its refcount Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 321/473] microblaze: Remove gcc flag for non existing early_printk.c file Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 322/473] microblaze: Remove early printk call from cpuinfo-static.c Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 323/473] perf intel-pt: Fix unassigned instruction op (discovered by MemorySanitizer) Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 324/473] ovl: remove upper umask handling from ovl_create_upper() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 325/473] VMCI: Fix an error handling path in vmci_guest_probe_device() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 326/473] dt-bindings: pinctrl: mediatek: mt7622: fix array properties Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 327/473] watchdog: bd9576: Drop "always-running" property Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 328/473] watchdog: sa1100: Fix PTR_ERR_OR_ZERO() vs NULL check in sa1100dog_probe() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 329/473] usb: gadget: u_audio: Fix race condition use of controls after free during gadget unbind Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 330/473] usb: gadget: u_audio: Clear uac pointer when freed Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 331/473] stm class: Fix a double free in stm_register_device() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 332/473] ppdev: Remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 333/473] ppdev: Add an error check in register_device Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 334/473] perf bench internals inject-build-id: Fix trap divide when collecting just one DSO Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 335/473] perf ui browser: Dont save pointer to stack memory Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 336/473] extcon: max8997: select IRQ_DOMAIN instead of depending on it Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 337/473] PCI/EDR: Align EDR_PORT_DPC_ENABLE_DSM with PCI Firmware r3.3 Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 338/473] PCI/EDR: Align EDR_PORT_LOCATE_DSM " Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 339/473] perf ui browser: Avoid SEGV on title Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 340/473] perf report: Avoid SEGV in report__setup_sample_type() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 341/473] f2fs: compress: fix to update i_compr_blocks correctly Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 342/473] f2fs: compress: fix to cover {reserve,release}_compress_blocks() w/ cp_rwsem lock Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 343/473] f2fs: fix to release node block count in error path of f2fs_new_node_page() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 344/473] f2fs: compress: dont allow unaligned truncation on released compress inode Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 345/473] serial: sh-sci: protect invalidating RXDMA on shutdown Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 346/473] libsubcmd: Fix parse-options memory leak Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 347/473] perf daemon: Fix file leak in daemon_session__control Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 348/473] f2fs: fix to add missing iput() in gc_data_segment() Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 349/473] perf stat: Dont display metric header for non-leader uncore events Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 350/473] LoongArch: Fix callchain parse error with kernel tracepoint events again Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 351/473] s390/vdso: filter out mno-pic-data-is-text-relative cflag Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 352/473] s390/vdso64: filter out munaligned-symbols flag for vdso Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 353/473] s390/vdso: Generate unwind information for C modules Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 354/473] s390/vdso: Use standard stack frame layout Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 355/473] s390/ipl: Fix incorrect initialization of len fields in nvme reipl block Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 356/473] s390/ipl: Fix incorrect initialization of nvme dump block Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 357/473] s390/boot: Remove alt_stfle_fac_list from decompressor Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 358/473] Input: ims-pcu - fix printf string overflow Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 359/473] Input: ioc3kbd - convert to platform remove callback returning void Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 360/473] Input: ioc3kbd - add device table Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 361/473] mmc: sdhci_am654: Add tuning algorithm for delay chain Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 362/473] mmc: sdhci_am654: Write ITAPDLY for DDR52 timing Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 363/473] mmc: sdhci_am654: Drop lookup for deprecated ti,otap-del-sel Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 364/473] mmc: sdhci_am654: Add OTAP/ITAP delay enable Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 365/473] mmc: sdhci_am654: Add ITAPDLYSEL in sdhci_j721e_4bit_set_clock Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 366/473] mmc: sdhci_am654: Fix ITAPDLY for HS400 timing Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 367/473] Input: pm8xxx-vibrator - correct VIB_MAX_LEVELS calculation Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 368/473] drm/msm/dsi: Print dual-DSI-adjusted pclk instead of original mode pclk Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 369/473] drm/msm/dpu: Always flush the slave INTF on the CTL Greg Kroah-Hartman
2024-06-06 14:04 ` [PATCH 6.1 370/473] drm/mediatek: dp: Move PHY registration to new function Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 371/473] drm/mediatek: dp: Add support for embedded DisplayPort aux-bus Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 372/473] drm/mediatek: dp: Fix mtk_dp_aux_transfer return value Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 373/473] um: Fix return value in ubd_init() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 374/473] um: Add winch to winch_handlers before registering winch IRQ Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 375/473] um: vector: fix bpfflash parameter evaluation Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 376/473] fs/ntfs3: Use 64 bit variable to avoid 32 bit overflow Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 377/473] fs/ntfs3: Use variable length array instead of fixed size Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 378/473] drm/bridge: tc358775: fix support for jeida-18 and jeida-24 Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 379/473] media: stk1160: fix bounds checking in stk1160_copy_video() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 380/473] scsi: qla2xxx: Replace all non-returning strlcpy() with strscpy() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 381/473] Input: cyapa - add missing input core locking to suspend/resume functions Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 382/473] media: flexcop-usb: fix sanity check of bNumEndpoints Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 383/473] powerpc/pseries: Add failure related checks for h_get_mpp and h_get_ppp Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 384/473] um: Fix the -Wmissing-prototypes warning for __switch_mm Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 385/473] um: Fix the -Wmissing-prototypes warning for get_thread_reg Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 386/473] um: Fix the declaration of kasan_map_memory Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 387/473] media: sunxi: a83-mips-csi2: also select GENERIC_PHY Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 388/473] media: cec: cec-adap: always cancel work in cec_transmit_msg_fh Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 389/473] media: cec: cec-api: add locking in cec_release() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 390/473] media: cec: core: avoid recursive cec_claim_log_addrs Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 391/473] media: cec: core: avoid confusing "transmit timed out" message Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 392/473] Revert "drm/bridge: ti-sn65dsi83: Fix enable error path" Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 393/473] drm/msm: Enable clamp_to_idle for 7c3 Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 394/473] drm/msm/a6xx: Avoid a nullptr dereference when speedbin setting fails Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 395/473] null_blk: Fix the WARNING: modpost: missing MODULE_DESCRIPTION() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 396/473] nilfs2: make superblock data array index computation sparse friendly Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 397/473] ALSA: hda/cs_dsp_ctl: Use private_free for control cleanup Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 398/473] ASoC: mediatek: mt8192: fix register configuration for tdm Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 399/473] regulator: bd71828: Dont overwrite runtime voltages Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 400/473] perf/arm-dmc620: Fix lockdep assert in ->event_init() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 401/473] x86/kconfig: Select ARCH_WANT_FRAME_POINTERS again when UNWINDER_FRAME_POINTER=y Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 402/473] net: Always descend into dsa/ folder with CONFIG_NET_DSA enabled Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 403/473] ipv6: sr: fix missing sk_buff release in seg6_input_core Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 404/473] selftests: net: kill smcrouted in the cleanup logic in amt.sh Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 405/473] nfc: nci: Fix uninit-value in nci_rx_work Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 406/473] ASoC: tas2552: Add TX path for capturing AUDIO-OUT data Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 407/473] NFSv4: Fixup smatch warning for ambiguous return Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 408/473] nfs: keep server info for remounts Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 409/473] sunrpc: fix NFSACL RPC retry on soft mount Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 410/473] rpcrdma: fix handling for RDMA_CM_EVENT_DEVICE_REMOVAL Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 411/473] af_unix: Update unix_sk(sk)->oob_skb under sk_receive_queue lock Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 412/473] ipv6: sr: fix memleak in seg6_hmac_init_algo Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 413/473] tcp: Fix shift-out-of-bounds in dctcp_update_alpha() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 414/473] pNFS/filelayout: fixup pNfs allocation modes Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 415/473] openvswitch: Set the skbuff pkt_type for proper pmtud support Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 416/473] arm64: asm-bug: Add .align 2 to the end of __BUG_ENTRY Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 417/473] rv: Update rv_en(dis)able_monitor doc to match kernel-doc Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 418/473] virtio: delete vq in vp_find_vqs_msix() when request_irq() fails Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 419/473] riscv: stacktrace: Make walk_stackframe cross pt_regs frame Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 420/473] riscv: stacktrace: fixed walk_stackframe() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 421/473] Revert "ixgbe: Manual AN-37 for troublesome link partners for X550 SFI" Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 422/473] net: fec: avoid lock evasion when reading pps_enable Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 423/473] tls: fix missing memory barrier in tls_init Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 424/473] tcp: remove 64 KByte limit for initial tp->rcv_wnd value Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 425/473] inet: factor out locked section of inet_accept() in a new helper Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 426/473] net: relax socket state check at accept time Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 427/473] nfc: nci: Fix kcov check in nci_rx_work() Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 428/473] nfc: nci: Fix handling of zero-length payload packets " Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 429/473] drivers/xen: Improve the late XenStore init protocol Greg Kroah-Hartman
2024-06-06 14:05 ` [PATCH 6.1 430/473] ice: Interpret .set_channels() input differently Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 431/473] netfilter: nfnetlink_queue: acquire rcu_read_lock() in instance_destroy_rcu() Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 432/473] netfilter: nft_payload: restore vlan q-in-q match support Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 433/473] spi: Dont mark message DMA mapped when no transfer in it is Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 434/473] dma-mapping: benchmark: fix node id validation Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 435/473] dma-mapping: benchmark: handle NUMA_NO_NODE correctly Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 436/473] nvmet: fix ns enable/disable possible hang Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 437/473] net: phy: micrel: set soft_reset callback to genphy_soft_reset for KSZ8061 Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 438/473] net/mlx5: Lag, do bond only if slaves agree on roce state Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 439/473] net/mlx5e: Fix IPsec tunnel mode offload feature check Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 440/473] net/mlx5e: Use rx_missed_errors instead of rx_dropped for reporting buffer exhaustion Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 441/473] net/mlx5e: Fix UDP GSO for encapsulated packets Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 442/473] dma-buf/sw-sync: dont enable IRQ from sync_print_obj() Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 443/473] bpf: Fix potential integer overflow in resolve_btfids Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 444/473] ALSA: jack: Use guard() for locking Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 445/473] ALSA: core: Remove debugfs at disconnection Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 446/473] ALSA: hda/realtek: Add quirk for ASUS ROG G634Z Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 447/473] ALSA: hda/realtek: Amend G634 quirk to enable rear speakers Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 448/473] ALSA: hda/realtek: Adjust G814JZR to use SPI init for amp Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 449/473] enic: Validate length of nl attributes in enic_set_vf_port Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 450/473] af_unix: Read sk->sk_hash under bindlock during bind() Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 451/473] net: usb: smsc95xx: fix changing LED_SEL bit value updated from EEPROM Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 452/473] bpf: Allow delete from sockmap/sockhash only if update is allowed Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 453/473] net:fec: Add fec_enet_deinit() Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 454/473] ice: fix accounting if a VLAN already exists Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 455/473] netfilter: nft_payload: move struct nft_payload_set definition where it belongs Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 456/473] netfilter: nft_payload: rebuild vlan header when needed Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 457/473] netfilter: nft_payload: rebuild vlan header on h_proto access Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 458/473] netfilter: nft_payload: skbuff vlan metadata mangle support Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 459/473] netfilter: tproxy: bail out if IP has been disabled on the device Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 460/473] netfilter: nft_fib: allow from forward/input without iif selector Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 461/473] kconfig: fix comparison to constant symbols, m, n Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 462/473] drm/i915/guc: avoid FIELD_PREP warning Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 463/473] spi: stm32: Dont warn about spurious interrupts Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 464/473] net: dsa: microchip: fix RGMII error in KSZ DSA driver Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 465/473] net: ena: Add dynamic recycling mechanism for rx buffers Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 466/473] net: ena: Reduce lines with longer column width boundary Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 467/473] net: ena: Fix redundant device NUMA node override Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 468/473] ipvlan: Dont Use skb->sk in ipvlan_process_v{4,6}_outbound Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 469/473] powerpc/pseries/lparcfg: drop error message from guest name lookup Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 470/473] powerpc/uaccess: Use YZ asm constraint for ld Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 471/473] hwmon: (shtc1) Fix property misspelling Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 472/473] riscv: prevent pt_regs corruption for secondary idle threads Greg Kroah-Hartman
2024-06-06 14:06 ` [PATCH 6.1 473/473] ALSA: timer: Set lower bound of start tick time Greg Kroah-Hartman
2024-06-06 14:31 ` [PATCH 6.1 000/473] 6.1.93-rc1 review Naresh Kamboju
2024-06-09 11:15   ` Greg Kroah-Hartman
2024-06-06 17:51 ` SeongJae Park
2024-06-06 19:42 ` Pavel Machek
2024-06-06 21:54 ` Shuah Khan
2024-06-07  9:01 ` Jon Hunter
2024-06-07 11:30 ` Naresh Kamboju
2024-06-07 15:24 ` Conor Dooley
2024-06-07 15:24 ` Mark Brown
2024-06-07 17:59 ` Allen
2024-06-07 20:24 ` Mateusz Jończyk
2024-06-07 21:34 ` Ron Economos
2024-06-09 10:08 ` Yann Sionneau

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=20240606131708.948029859@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=manivannan.sadhasivam@linaro.org \
    --cc=patches@lists.linux.dev \
    --cc=quic_clew@quicinc.com \
    --cc=quic_jhugo@quicinc.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox