patches.lists.linux.dev archive mirror
 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,
	Thomas Bertschinger <tahbertschinger@gmail.com>,
	Martin Rodriguez Reboredo <yakoyoku@gmail.com>,
	Alice Ryhl <aliceryhl@google.com>,
	Miguel Ojeda <ojeda@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.8 001/336] rust: module: place generated init_module() function in .init.text
Date: Tue, 14 May 2024 12:13:25 +0200	[thread overview]
Message-ID: <20240514101038.654322268@linuxfoundation.org> (raw)
In-Reply-To: <20240514101038.595152603@linuxfoundation.org>

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

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

From: Thomas Bertschinger <tahbertschinger@gmail.com>

[ Upstream commit 1b6170ff7a203a5e8354f19b7839fe8b897a9c0d ]

Currently Rust kernel modules have their init code placed in the `.text`
section of the .ko file. I don't think this causes any real problems
for Rust modules as long as all code called during initialization lives
in `.text`.

However, if a Rust `init_module()` function (that lives in `.text`)
calls a function marked with `__init` (in C) or
`#[link_section = ".init.text"]` (in Rust), then a warning is
generated by modpost because that function lives in `.init.text`.
For example:

WARNING: modpost: fs/bcachefs/bcachefs: section mismatch in reference: init_module+0x6 (section: .text) -> _RNvXCsj7d3tFpT5JS_15bcachefs_moduleNtB2_8BcachefsNtCsjDtqRIL3JAG_6kernel6Module4init (section: .init.text)

I ran into this while experimenting with converting the bcachefs kernel
module from C to Rust. The module's `init()`, written in Rust, calls C
functions like `bch2_vfs_init()` which are placed in `.init.text`.

This patch places the macro-generated `init_module()` Rust function in
the `.init.text` section. It also marks `init_module()` as unsafe--now
it may not be called after module initialization completes because it
may be freed already.

Note that this is not enough on its own to actually get all the module
initialization code in that section. The module author must still add
the `#[link_section = ".init.text"]` attribute to the Rust `init()` in
the `impl kernel::Module` block in order to then call `__init`
functions. However, this patch enables module authors do so, when
previously it would not be possible (without warnings).

Signed-off-by: Thomas Bertschinger <tahbertschinger@gmail.com>
Reviewed-by: Martin Rodriguez Reboredo <yakoyoku@gmail.com>
Reviewed-by: Alice Ryhl <aliceryhl@google.com>
Link: https://lore.kernel.org/r/20240206153806.567055-1-tahbertschinger@gmail.com
[ Reworded title to add prefix. ]
Signed-off-by: Miguel Ojeda <ojeda@kernel.org>
Stable-dep-of: 7044dcff8301 ("rust: macros: fix soundness issue in `module!` macro")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 rust/macros/module.rs | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/rust/macros/module.rs b/rust/macros/module.rs
index d62d8710d77ab..27979e582e4b9 100644
--- a/rust/macros/module.rs
+++ b/rust/macros/module.rs
@@ -222,10 +222,15 @@ pub(crate) fn module(ts: TokenStream) -> TokenStream {
             }};
 
             // Loadable modules need to export the `{{init,cleanup}}_module` identifiers.
+            /// # Safety
+            ///
+            /// This function must not be called after module initialization, because it may be
+            /// freed after that completes.
             #[cfg(MODULE)]
             #[doc(hidden)]
             #[no_mangle]
-            pub extern \"C\" fn init_module() -> core::ffi::c_int {{
+            #[link_section = \".init.text\"]
+            pub unsafe extern \"C\" fn init_module() -> core::ffi::c_int {{
                 __init()
             }}
 
-- 
2.43.0




  reply	other threads:[~2024-05-14 10:21 UTC|newest]

Thread overview: 342+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-05-14 10:13 [PATCH 6.8 000/336] 6.8.10-rc1 review Greg Kroah-Hartman
2024-05-14 10:13 ` Greg Kroah-Hartman [this message]
2024-05-14 10:13 ` [PATCH 6.8 002/336] rust: macros: fix soundness issue in `module!` macro Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 003/336] wifi: nl80211: dont free NULL coalescing rule Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 004/336] pinctrl: pinctrl-aspeed-g6: Fix register offset for pinconf of GPIOR-T Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 005/336] pinctrl/meson: fix typo in PDMs pin name Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 006/336] pinctrl: core: delete incorrect free in pinctrl_enable() Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 007/336] pinctrl: mediatek: paris: Fix PIN_CONFIG_INPUT_SCHMITT_ENABLE readback Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 008/336] pinctrl: mediatek: paris: Rework support for PIN_CONFIG_{INPUT,OUTPUT}_ENABLE Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 009/336] sunrpc: add a struct rpc_stats arg to rpc_create_args Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 010/336] nfs: expose /proc/net/sunrpc/nfs in net namespaces Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 011/336] nfs: make the rpc_stat per net namespace Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 012/336] nfs: Handle error of rpc_proc_register() in nfs_net_init() Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 013/336] pinctrl: baytrail: Fix selecting gpio pinctrl state Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 014/336] power: rt9455: hide unused rt9455_boost_voltage_values Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 015/336] power: supply: mt6360_charger: Fix of_match for usb-otg-vbus regulator Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 016/336] pinctrl: devicetree: fix refcount leak in pinctrl_dt_to_map() Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 017/336] nfsd: rename NFSD_NET_* to NFSD_STATS_* Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 018/336] nfsd: expose /proc/net/sunrpc/nfsd in net namespaces Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 019/336] nfsd: make all of the nfsd stats per-network namespace Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 020/336] NFSD: add support for CB_GETATTR callback Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 021/336] NFSD: Fix nfsd4_encode_fattr4() crasher Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 022/336] regulator: mt6360: De-capitalize devicetree regulator subnodes Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 023/336] regulator: change stubbed devm_regulator_get_enable to return Ok Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 024/336] regulator: change devm_regulator_get_enable_optional() stub " Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 025/336] bpf, kconfig: Fix DEBUG_INFO_BTF_MODULES Kconfig definition Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 026/336] bpf, skmsg: Fix NULL pointer dereference in sk_psock_skb_ingress_enqueue Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 027/336] regmap: Add regmap_read_bypassed() Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 028/336] ASoC: SOF: Intel: add default firmware library path for LNL Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 029/336] nvme: fix warn output about shared namespaces without CONFIG_NVME_MULTIPATH Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 030/336] bpf: Fix a verifier verbose message Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 031/336] spi: axi-spi-engine: use common AXI macros Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 032/336] spi: axi-spi-engine: fix version format string Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 033/336] spi: hisi-kunpeng: Delete the dump interface of data registers in debugfs Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 034/336] bpf, arm64: Fix incorrect runtime stats Greg Kroah-Hartman
2024-05-14 10:13 ` [PATCH 6.8 035/336] riscv, bpf: " Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 036/336] ASoC: Intel: avs: Set name of control as in topology Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 037/336] ASoC: codecs: wsa881x: set clk_stop_mode1 flag Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 038/336] s390/mm: Fix storage key clearing for guest huge pages Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 039/336] s390/mm: Fix clearing storage keys for " Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 040/336] arm32, bpf: Reimplement sign-extension mov instruction Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 041/336] xdp: use flags field to disambiguate broadcast redirect Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 042/336] efi/unaccepted: touch soft lockup during memory accept Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 043/336] ice: ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 044/336] bna: " Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 045/336] octeontx2-af: avoid off-by-one read from userspace Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 046/336] thermal/debugfs: Free all thermal zone debug memory on zone removal Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 047/336] thermal/debugfs: Fix two locking issues with thermal zone debug Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 048/336] nsh: Restore skb->{protocol,data,mac_header} for outer header in nsh_gso_segment() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 049/336] net l2tp: drop flow hash on forward Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 050/336] thermal/debugfs: Prevent use-after-free from occurring after cdev removal Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 051/336] s390/vdso: Add CFI for RA register to asm macro vdso_func Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 052/336] Fix a potential infinite loop in extract_user_to_sg() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 053/336] ALSA: emu10k1: fix E-MU card dock presence monitoring Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 054/336] ALSA: emu10k1: factor out snd_emu1010_load_dock_firmware() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 055/336] ALSA: emu10k1: move the whole GPIO event handling to the workqueue Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 056/336] ALSA: emu10k1: fix E-MU dock initialization Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 057/336] net: qede: sanitize rc in qede_add_tc_flower_fltr() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 058/336] net: qede: use return from qede_parse_flow_attr() for flower Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 059/336] net: qede: use return from qede_parse_flow_attr() for flow_spec Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 060/336] net: qede: use return from qede_parse_actions() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 061/336] vxlan: Fix racy device stats updates Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 062/336] vxlan: Add missing VNI filter counter update in arp_reduce() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 063/336] ASoC: meson: axg-fifo: use FIELD helpers Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 064/336] ASoC: meson: axg-fifo: use threaded irq to check periods Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 065/336] ASoC: meson: axg-card: make links nonatomic Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 066/336] ASoC: meson: axg-tdm-interface: manage formatters in trigger Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 067/336] ASoC: meson: cards: select SND_DYNAMIC_MINORS Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 068/336] ALSA: hda: intel-sdw-acpi: fix usage of device_get_named_child_node() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 069/336] s390/cio: Ensure the copied buf is NUL terminated Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 070/336] cxgb4: Properly lock TX queue for the selftest Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 071/336] net: dsa: mv88e6xxx: Fix number of databases for 88E6141 / 88E6341 Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 072/336] drm/amdgpu: fix doorbell regression Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 073/336] spi: fix null pointer dereference within spi_sync Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 074/336] net: bridge: fix multicast-to-unicast with fraglist GSO Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 075/336] net: core: reject skb_copy(_expand) for fraglist GSO skbs Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 076/336] rxrpc: Clients must accept conn from any address Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 077/336] tipc: fix a possible memleak in tipc_buf_append Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 078/336] vxlan: Pull inner IP header in vxlan_rcv() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 079/336] s390/qeth: Fix kernel panic after setting hsuid Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 080/336] drm/panel: ili9341: Correct use of device property APIs Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 081/336] drm/panel: ili9341: Respect deferred probe Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 082/336] drm/panel: ili9341: Use predefined error codes Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 083/336] ipv4: Fix uninit-value access in __ip_make_skb() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 084/336] net: gro: fix udp bad offset in socket lookup by adding {inner_}network_offset to napi_gro_cb Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 085/336] net: gro: add flush check in udp_gro_receive_segment Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 086/336] drm/xe/display: Fix ADL-N detection Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 087/336] clk: qcom: smd-rpm: Restore msm8976 num_clk Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 088/336] clk: sunxi-ng: h6: Reparent CPUX during PLL CPUX rate change Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 089/336] powerpc/pseries: make max polling consistent for longer H_CALLs Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 090/336] powerpc/pseries/iommu: LPAR panics during boot up with a frozen PE Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 091/336] EDAC/versal: Do not log total error counts Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 092/336] swiotlb: initialise restricted pool list_head when SWIOTLB_DYNAMIC=y Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 093/336] KVM: arm64: vgic-v2: Check for non-NULL vCPU in vgic_v2_parse_attr() Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 094/336] exfat: fix timing of synchronizing bitmap and inode Greg Kroah-Hartman
2024-05-14 10:14 ` [PATCH 6.8 095/336] firmware: microchip: dont unconditionally print validation success Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 096/336] scsi: ufs: core: Fix MCQ MAC configuration Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 097/336] scsi: lpfc: Move NPIVs transport unregistration to after resource clean up Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 098/336] scsi: lpfc: Remove IRQF_ONESHOT flag from threaded IRQ handling Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 099/336] scsi: lpfc: Update lpfc_ramp_down_queue_handler() logic Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 100/336] scsi: lpfc: Replace hbalock with ndlp lock in lpfc_nvme_unregister_port() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 101/336] scsi: lpfc: Release hbalock before calling lpfc_worker_wake_up() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 102/336] scsi: lpfc: Use a dedicated lock for ras_fwlog state Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 103/336] gfs2: Fix invalid metadata access in punch_hole Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 104/336] fs/9p: fix uninitialized values during inode evict Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 105/336] wifi: mac80211: fix ieee80211_bss_*_flags kernel-doc Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 106/336] wifi: cfg80211: fix rdev_dump_mpp() arguments order Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 107/336] wifi: mac80211: fix prep_connection error path Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 108/336] wifi: iwlwifi: read txq->read_ptr under lock Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 109/336] wifi: iwlwifi: mvm: guard against invalid STA ID on removal Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 110/336] net: mark racy access on sk->sk_rcvbuf Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 111/336] drm/xe: Fix END redefinition Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 112/336] scsi: mpi3mr: Avoid memcpy field-spanning write WARNING Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 113/336] scsi: bnx2fc: Remove spin_lock_bh while releasing resources after upload Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 114/336] btrfs: return accurate error code on open failure in open_fs_devices() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 115/336] drm/amdkfd: Check cgroup when returning DMABuf info Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 116/336] drm/amdkfd: range check cp bad op exception interrupts Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 117/336] bpf: Check bloom filter map value size Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 118/336] selftests/ftrace: Fix event filter target_func selection Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 119/336] kbuild: Disable KCSAN for autogenerated *.mod.c intermediaries Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 120/336] ASoC: SOF: Intel: hda-dsp: Skip IMR boot on ACE platforms in case of S3 suspend Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 121/336] regulator: tps65132: Add of_match table Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 122/336] OSS: dmasound/paula: Mark driver struct with __refdata to prevent section mismatch Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 123/336] scsi: ufs: core: WLUN suspend dev/link state error recovery Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 124/336] scsi: libsas: Align SMP request allocation to ARCH_DMA_MINALIGN Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 125/336] scsi: ufs: core: Fix MCQ mode dev command timeout Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 126/336] ALSA: line6: Zero-initialize message buffers Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 127/336] block: fix overflow in blk_ioctl_discard() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 128/336] ASoC: codecs: ES8326: Solve error interruption issue Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 129/336] ASoC: codecs: ES8326: modify clock table Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 130/336] net: bcmgenet: Reset RBUF on first open Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 131/336] vboxsf: explicitly deny setlease attempts Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 132/336] ata: sata_gemini: Check clk_enable() result Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 133/336] firewire: ohci: mask bus reset interrupts between ISR and bottom half Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 134/336] tools/power turbostat: Fix added raw MSR output Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 135/336] tools/power turbostat: Increase the limit for fd opened Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 136/336] tools/power turbostat: Fix Bzy_MHz documentation typo Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 137/336] tools/power turbostat: Do not print negative LPI residency Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 138/336] tools/power turbostat: Expand probe_intel_uncore_frequency() Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 139/336] tools/power turbostat: Print ucode revision only if valid Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 140/336] tools/power turbostat: Fix warning upon failed /dev/cpu_dma_latency read Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 141/336] btrfs: make btrfs_clear_delalloc_extent() free delalloc reserve Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 142/336] btrfs: always clear PERTRANS metadata during commit Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 143/336] memblock tests: fix undefined reference to `early_pfn_to_nid Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 144/336] memblock tests: fix undefined reference to `panic Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 145/336] memblock tests: fix undefined reference to `BIT Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 146/336] nouveau/gsp: Avoid addressing beyond end of rpc->entries Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 147/336] scsi: target: Fix SELinux error when systemd-modules loads the target module Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 148/336] scsi: hisi_sas: Handle the NCQ error returned by D2H frame Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 149/336] blk-iocost: avoid out of bounds shift Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 150/336] accel/ivpu: Remove d3hot_after_power_off WA Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 151/336] accel/ivpu: Improve clarity of MMU error messages Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 152/336] accel/ivpu: Fix missed error message after VPU rename Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 153/336] platform/x86: acer-wmi: Add support for Acer PH18-71 Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 154/336] gpu: host1x: Do not setup DMA for virtual devices Greg Kroah-Hartman
2024-05-14 10:15 ` [PATCH 6.8 155/336] MIPS: scall: Save thread_info.syscall unconditionally on entry Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 156/336] tools/power/turbostat: Fix uncore frequency file string Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 157/336] net: add copy_safe_from_sockptr() helper Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 158/336] nfc: llcp: fix nfc_llcp_setsockopt() unsafe copies Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 159/336] drm/amdgpu: Refine IB schedule error logging Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 160/336] drm/amd/display: add DCN 351 version for microcode load Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 161/336] drm/amdgpu: add smu 14.0.1 discovery support Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 162/336] drm/amdgpu: implement IRQ_STATE_ENABLE for SDMA v4.4.2 Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 163/336] drm/amd/display: Skip on writeback when its not applicable Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 164/336] drm/amd/pm: fix the high voltage issue after unload Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 165/336] drm/amdgpu: Fix VCN allocation in CPX partition Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 166/336] amd/amdkfd: sync all devices to wait all processes being evicted Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 167/336] selftests: timers: Fix valid-adjtimex signed left-shift undefined behavior Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 168/336] Drivers: hv: vmbus: Leak pages if set_memory_encrypted() fails Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 169/336] Drivers: hv: vmbus: Track decrypted status in vmbus_gpadl Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 170/336] hv_netvsc: Dont free decrypted memory Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 171/336] uio_hv_generic: " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 172/336] Drivers: hv: vmbus: Dont free ring buffers that couldnt be re-encrypted Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 173/336] drm/xe/xe_migrate: Cast to output precision before multiplying operands Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 174/336] drm/xe: Label RING_CONTEXT_CONTROL as masked Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 175/336] smb3: fix broken reconnect when password changing on the server by allowing password rotation Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 176/336] iommu: mtk: fix module autoloading Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 177/336] fs/9p: only translate RWX permissions for plain 9P2000 Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 178/336] fs/9p: translate O_TRUNC into OTRUNC Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 179/336] fs/9p: fix the cache always being enabled on files with qid flags Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 180/336] 9p: explicitly deny setlease attempts Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 181/336] powerpc/crypto/chacha-p10: Fix failure on non Power10 Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 182/336] gpio: wcove: Use -ENOTSUPP consistently Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 183/336] gpio: crystalcove: " Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 184/336] clk: Dont hold prepare_lock when calling kref_put() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 185/336] fs/9p: remove erroneous nlink init from legacy stat2inode Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 186/336] fs/9p: drop inodes immediately on non-.L too Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 187/336] gpio: lpc32xx: fix module autoloading Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 188/336] drm/nouveau/dp: Dont probe eDP ports twice harder Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 189/336] platform/x86/amd: pmf: Decrease error message to debug Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 190/336] platform/x86: ISST: Add Granite Rapids-D to HPM CPU list Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 191/336] drm/radeon: silence UBSAN warning (v3) Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 192/336] net:usb:qmi_wwan: support Rolling modules Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 193/336] blk-iocost: do not WARN if iocg was already offlined Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 194/336] SUNRPC: add a missing rpc_stat for TCP TLS Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 195/336] qibfs: fix dentry leak Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 196/336] xfrm: Preserve vlan tags for transport mode software GRO Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 197/336] ARM: 9381/1: kasan: clear stale stack poison Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 198/336] tcp: defer shutdown(SEND_SHUTDOWN) for TCP_SYN_RECV sockets Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 199/336] tcp: Use refcount_inc_not_zero() in tcp_twsk_unique() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 200/336] Bluetooth: Fix use-after-free bugs caused by sco_sock_timeout Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 201/336] Bluetooth: msft: fix slab-use-after-free in msft_do_close() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 202/336] arm64: dts: mediatek: mt8183-pico6: Fix bluetooth node Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 203/336] Bluetooth: HCI: Fix potential null-ptr-deref Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 204/336] Bluetooth: l2cap: fix null-ptr-deref in l2cap_chan_timeout Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 205/336] net: ks8851: Queue RX packets in IRQ handler instead of disabling BHs Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 206/336] rtnetlink: Correct nested IFLA_VF_VLAN_LIST attribute validation Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 207/336] hwmon: (corsair-cpro) Use a separate buffer for sending commands Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 208/336] hwmon: (corsair-cpro) Use complete_all() instead of complete() in ccp_raw_event() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 209/336] hwmon: (corsair-cpro) Protect ccp->wait_input_report with a spinlock Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 210/336] phonet: fix rtm_phonet_notify() skb allocation Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 211/336] netlink: specs: Add missing bridge linkinfo attrs Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 212/336] nfc: nci: Fix kcov check in nci_rx_work() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 213/336] net: bridge: fix corrupted ethernet header on multicast-to-unicast Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 214/336] ipv6: Fix potential uninit-value access in __ip6_make_skb() Greg Kroah-Hartman
2024-05-14 10:16 ` [PATCH 6.8 215/336] selftests: test_bridge_neigh_suppress.sh: Fix failures due to duplicate MAC Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 216/336] rxrpc: Fix the names of the fields in the ACK trailer struct Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 217/336] rxrpc: Fix congestion control algorithm Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 218/336] rxrpc: Only transmit one ACK per jumbo packet received Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 219/336] dt-bindings: net: mediatek: remove wrongly added clocks and SerDes Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 220/336] ipv6: fib6_rules: avoid possible NULL dereference in fib6_rule_action() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 221/336] net-sysfs: convert dev->operstate reads to lockless ones Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 222/336] hsr: Simplify code for announcing HSR nodes timer setup Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 223/336] ipv6: annotate data-races around cnf.disable_ipv6 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 224/336] ipv6: prevent NULL dereference in ip6_output() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 225/336] net/smc: fix neighbour and rtable leak in smc_ib_find_route() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 226/336] net: hns3: using user configure after hardware reset Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 227/336] net: hns3: direct return when receive a unknown mailbox message Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 228/336] net: hns3: change type of numa_node_mask as nodemask_t Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 229/336] net: hns3: release PTP resources if pf initialization failed Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 230/336] net: hns3: use appropriate barrier function after setting a bit value Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 231/336] net: hns3: fix port vlan filter not disabled issue Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 232/336] net: hns3: fix kernel crash when devlink reload during initialization Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 233/336] net: dsa: mv88e6xxx: add phylink_get_caps for the mv88e6320/21 family Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 234/336] drm/meson: dw-hdmi: power up phy on device init Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 235/336] drm/meson: dw-hdmi: add bandgap setting for g12 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 236/336] drm/connector: Add \n to message about demoting connector force-probes Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 237/336] dm/amd/pm: Fix problems with reboot/shutdown for some SMU 13.0.4/13.0.11 users Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 238/336] gpiolib: cdev: Fix use after free in lineinfo_changed_notify Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 239/336] gpiolib: cdev: fix uninitialised kfifo Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 240/336] drm/amd/display: Atom Integrated System Info v2_2 for DCN35 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 241/336] drm/amdgpu: Fix comparison in amdgpu_res_cpu_visible Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 242/336] drm/amdgpu: once more fix the call oder in amdgpu_ttm_move() v2 Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 243/336] firewire: nosy: ensure user_length is taken into account when fetching packet contents Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 244/336] Reapply "drm/qxl: simplify qxl_fence_wait" Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 245/336] usb: typec: ucsi: Check for notifications after init Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 246/336] usb: typec: ucsi: Fix connector check on init Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 247/336] usb: Fix regression caused by invalid ep0 maxpacket in virtual SuperSpeed device Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 248/336] usb: ohci: Prevent missed ohci interrupts Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 249/336] USB: core: Fix access violation during port device removal Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 250/336] usb: gadget: composite: fix OS descriptors w_value logic Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 251/336] usb: gadget: uvc: use correct buffer size when parsing configfs lists Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 252/336] usb: gadget: f_fs: Fix race between aio_cancel() and AIO request complete Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 253/336] usb: gadget: f_fs: Fix a race condition when processing setup packets Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 254/336] usb: xhci-plat: Dont include xhci.h Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 255/336] usb: dwc3: core: Prevent phy suspend during init Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 256/336] usb: typec: tcpm: clear pd_event queue in PORT_RESET Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 257/336] usb: typec: tcpm: unregister existing source caps before re-registration Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 258/336] usb: typec: tcpm: Check for port partner validity before consuming it Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 259/336] ALSA: hda/realtek: Fix mute led of HP Laptop 15-da3001TU Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 260/336] ALSA: hda/realtek: Fix conflicting PCI SSID 17aa:386f for Lenovo Legion models Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 261/336] firewire: ohci: fulfill timestamp for some local asynchronous transaction Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 262/336] mm/slub: avoid zeroing outside-object freepointer for single free Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 263/336] btrfs: add missing mutex_unlock in btrfs_relocate_sys_chunks() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 264/336] btrfs: set correct ram_bytes when splitting ordered extent Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 265/336] btrfs: qgroup: do not check qgroup inherit if qgroup is disabled Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 266/336] btrfs: make sure that WRITTEN is set on all metadata blocks Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 267/336] maple_tree: fix mas_empty_area_rev() null pointer dereference Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 268/336] mm/slab: make __free(kfree) accept error pointers Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 269/336] mptcp: ensure snd_nxt is properly initialized on connect Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 270/336] mptcp: only allow set existing scheduler for net.mptcp.scheduler Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 271/336] workqueue: Fix selection of wake_cpu in kick_pool() Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 272/336] dt-bindings: iio: health: maxim,max30102: fix compatible check Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 273/336] iio:imu: adis16475: Fix sync mode setting Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 274/336] iio: pressure: Fixes BME280 SPI driver data Greg Kroah-Hartman
2024-05-14 10:17 ` [PATCH 6.8 275/336] iio: pressure: Fixes SPI support for BMP3xx devices Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 276/336] iio: accel: mxc4005: Interrupt handling fixes Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 277/336] iio: accel: mxc4005: Reset chip on probe() and resume() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 278/336] kmsan: compiler_types: declare __no_sanitize_or_inline Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 279/336] e1000e: change usleep_range to udelay in PHY mdic access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 280/336] tipc: fix UAF in error path Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 281/336] xtensa: fix MAKE_PC_FROM_RA second argument Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 282/336] net: bcmgenet: synchronize EXT_RGMII_OOB_CTRL access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 283/336] net: bcmgenet: synchronize use of bcmgenet_set_rx_mode() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 284/336] net: bcmgenet: synchronize UMAC_CMD access Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 285/336] ASoC: tegra: Fix DSPK 16-bit playback Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 286/336] ASoC: ti: davinci-mcasp: Fix race condition during probe Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 287/336] dyndbg: fix old BUG_ON in >control parser Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 288/336] slimbus: qcom-ngd-ctrl: Add timeout for wait operation Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 289/336] clk: samsung: Revert "clk: Use device_get_match_data()" Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 290/336] clk: sunxi-ng: common: Support minimum and maximum rate Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 291/336] clk: sunxi-ng: a64: Set minimum and maximum rate for PLL-MIPI Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 292/336] mei: me: add lunar lake point M DID Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 293/336] drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 294/336] Revert "drm/nouveau/firmware: Fix SG_DEBUG error with nvkm_firmware_ctor()" Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 295/336] drm/amdkfd: dont allow mapping the MMIO HDP page with large pages Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 296/336] drm/ttm: Print the memory decryption status just once Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 297/336] drm/vmwgfx: Fix Legacy Display Unit Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 298/336] drm/vmwgfx: Fix invalid reads in fence signaled events Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 299/336] drm/imagination: Ensure PVR_MIPS_PT_PAGE_COUNT is never zero Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 300/336] drm/amd/display: Fix idle optimization checks for multi-display and dual eDP Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 301/336] drm/nouveau/gsp: Use the sg allocator for level 2 of radix3 Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 302/336] drm/i915/audio: Fix audio time stamp programming for DP Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 303/336] drm/i915/gt: Automate CCS Mode setting during engine resets Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 304/336] drm/i915/bios: Fix parsing backlight BDB data Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 305/336] drm/amd/display: Handle Y carry-over in VCP X.Y calculation Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 306/336] drm/amd/display: Fix incorrect DSC instance for MST Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 307/336] arm64: dts: qcom: sa8155p-adp: fix SDHC2 CD pin configuration Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 308/336] iommu/arm-smmu: Use the correct type in nvidia_smmu_context_fault() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 309/336] net: fix out-of-bounds access in ops_init Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 310/336] hwmon: (pmbus/ucd9000) Increase delay from 250 to 500us Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 311/336] misc/pvpanic-pci: register attributes via pci_driver Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 312/336] x86/apic: Dont access the APIC when disabling x2APIC Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 313/336] selftests/mm: fix powerpc ARCH check Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 314/336] mm: use memalloc_nofs_save() in page_cache_ra_order() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 315/336] mm/userfaultfd: reset ptes when close() for wr-protected ones Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 316/336] iommu/amd: Enhance def_domain_type to handle untrusted device Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 317/336] fs/proc/task_mmu: fix loss of young/dirty bits during pagemap scan Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 318/336] fs/proc/task_mmu: fix uffd-wp confusion in pagemap_scan_pmd_entry() Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 319/336] nvme-pci: Add quirk for broken MSIs Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 320/336] regulator: core: fix debugfs creation regression Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 321/336] spi: microchip-core-qspi: fix setting spi bus clock rate Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 322/336] ksmbd: off ipv6only for both ipv4/ipv6 binding Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 323/336] ksmbd: avoid to send duplicate lease break notifications Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 324/336] ksmbd: do not grant v2 lease if parent lease key and epoch are not set Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 325/336] tracefs: Reset permissions on remount if permissions are options Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 326/336] tracefs: Still use mount point as default permissions for instances Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 327/336] eventfs: Do not differentiate the toplevel events directory Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 328/336] eventfs: Do not treat events directory different than other directories Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 329/336] Bluetooth: qca: fix invalid device address check Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 330/336] Bluetooth: qca: fix wcn3991 " Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 331/336] Bluetooth: qca: add missing firmware sanity checks Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 332/336] Bluetooth: qca: fix NVM configuration parsing Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 333/336] Bluetooth: qca: generalise device address check Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 334/336] Bluetooth: qca: fix info leak when fetching board id Greg Kroah-Hartman
2024-05-14 10:18 ` [PATCH 6.8 335/336] Bluetooth: qca: fix info leak when fetching fw build id Greg Kroah-Hartman
2024-05-14 10:19 ` [PATCH 6.8 336/336] Bluetooth: qca: fix firmware check error path Greg Kroah-Hartman
2024-05-14 18:00 ` [PATCH 6.8 000/336] 6.8.10-rc1 review Miguel Ojeda
2024-05-14 19:47 ` Pavel Machek
2024-05-14 20:08 ` Allen
2024-05-15  4:46 ` Bagas Sanjaya
2024-05-15 15:06 ` Shuah Khan

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=20240514101038.654322268@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aliceryhl@google.com \
    --cc=ojeda@kernel.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tahbertschinger@gmail.com \
    --cc=yakoyoku@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).