Archive-only list for patches
 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,
	Chris Gellermann <christian.gellermann@codasip.com>,
	"David Hildenbrand (arm)" <david@kernel.org>,
	Lorenzo Stoakes <ljs@kernel.org>,
	Christian Brauner <brauner@kernel.org>,
	"Liam R. Howlett" <liam@infradead.org>,
	Michal Hocko <mhocko@suse.com>, Mike Rapoport <rppt@kernel.org>,
	Shuah Khan <shuah@kernel.org>,
	Suren Baghdasaryan <surenb@google.com>,
	Vlastimil Babka <vbabka@kernel.org>,
	Andrew Morton <akpm@linux-foundation.org>
Subject: [PATCH 6.18 256/396] selftests/clone3: fix wild pointer access of getline due to missing init
Date: Fri,  7 Aug 2026 16:36:56 +0200	[thread overview]
Message-ID: <20260807143429.770751335@linuxfoundation.org> (raw)
In-Reply-To: <20260807143424.272339768@linuxfoundation.org>

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

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

From: Chris Gellermann <christian.gellermann@codasip.com>

commit 8f6f9fd93cd7a5dd607ad5cd910476dd68fff3ed upstream.

Patch series "selftests: Add missing initalization of pointer passed to
getline", v2.


This patch (of 2):

Clone3_set_tid uses getline(&line, ...) in a loop to read the child's
process status.  The code expects that getline allocates the buffer for
the line on the first loop iteration.  According to the Open Group
Spec[1], char *line has to be null pointer for this:

> ssize_t getline(char **restrict lineptr, ...);
> If *lineptr is a null pointer or if the object pointed to by *lineptr
> is of insufficient size, an object shall be allocated as if by
malloc()
> or the object shall be reallocated as if by realloc()[...].

However, char *line is only declared, leading to an undefined value that
is potentially non-null.  In an example run with Musl v1.2.6, the realloc
call[2] of getdelim, which implements getline, triggers a segfault:

./run_kselftest.sh --test clone3:clone3_set_tid
[ 1366.165898] kselftest: Running tests in clone3
...
[ 1367.799244] clone3_set_tid[811]: unhandled signal 11 code 0x1 at
0x0000000000000000 in libc.so[68184,3fbf69f000+4c000]
[ 1367.802808] CPU: 0 UID: 0 PID: 811 Comm: clone3_set_tid Not tainted
..
[ 1367.804188]  epc: 0x0000003fbf6b0184
[ 1367.804188]  ra : 0x0000003fbf6d4664
[ 1367.804188]  sp : 0x0000003fce5f2e40
[ 1367.805314]  gp : 0x0000002aaab0dfb8
[ 1367.805314]  tp : 0x0000003fbf6f14a8
[ 1367.805314]  t0 : 0x0000003fbf63d000
...

Looking at the realloc implementation, Musl mallocs for a null pointer
memory.  But for a non-null pointer, it assumes it's passed a valid
pointer to the heap and tries to access its meta-data.  This leads to the
segfault we see:

void *realloc(void *p, size_t n)
{
        if (!p) return malloc(n);
        if (size_overflows(n)) return 0;

        struct meta *g = get_meta(p);
        ...
}

Fix this by properly initializing the line pointer to NULL.

Link: https://lore.kernel.org/20260722130246.2135563-1-christian.gellermann@codasip.com
Link: https://lore.kernel.org/20260722130246.2135563-2-christian.gellermann@codasip.com
Link: https://pubs.opengroup.org/onlinepubs/9799919799/functions/getline.html [1]
Link: https://git.musl-libc.org/cgit/musl/tree/src/stdio/getdelim.c#n38 [2]
Fixes: 41585bbeeef9 ("selftests: add tests for clone3() with *set_tid")
Signed-off-by: Chris Gellermann <christian.gellermann@codasip.com>
Acked-by: David Hildenbrand (arm) <david@kernel.org>
Reviewed-by: Lorenzo Stoakes <ljs@kernel.org>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Liam R. Howlett <liam@infradead.org>
Cc: Lorenzo Stoakes <ljs@kernel.org>
Cc: Michal Hocko <mhocko@suse.com>
Cc: Mike Rapoport <rppt@kernel.org>
Cc: Shuah Khan <shuah@kernel.org>
Cc: Suren Baghdasaryan <surenb@google.com>
Cc: Vlastimil Babka <vbabka@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 tools/testing/selftests/clone3/clone3_set_tid.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/tools/testing/selftests/clone3/clone3_set_tid.c
+++ b/tools/testing/selftests/clone3/clone3_set_tid.c
@@ -141,7 +141,7 @@ int main(int argc, char *argv[])
 {
 	FILE *f;
 	char buf;
-	char *line;
+	char *line = NULL;
 	int status;
 	int ret = -1;
 	size_t len = 0;



  parent reply	other threads:[~2026-08-07 15:09 UTC|newest]

Thread overview: 396+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-08-07 14:32 [PATCH 6.18 000/396] 6.18.44-rc1 review Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 001/396] netfilter: nf_conntrack_expect: restore helper propagation via expectation Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 002/396] kunit: tool: skip stty when stdin is not a tty Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 003/396] kunit: tool: Terminate kernel under test on SIGINT Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 004/396] netfilter: br_netfilter: Reallocate headroom if necessary in neigh_hh_bridge() Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 005/396] net: mpls: initialize rtm_tos in mpls_getroute() Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 006/396] drm/gpusvm: publish dpagemap early to avoid device mapping leak on error Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 007/396] ALSA: hda/realtek: add quirk for HP Dragonfly Folio G3 2-in-1 Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 008/396] HID: logitech-dj: Standardise hid_report_enum variable nomenclature Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 009/396] HID: logitech-dj: Prevent REPORT_ID_DJ_SHORT related user initiated OOB write Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 010/396] HID: logitech-dj: fix wrong detection of bad DJ_SHORT output report Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 011/396] lib/alloc_tag: introduce mem_alloc_profiling_permanently_disabled() Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 012/396] mm/slab: prevent unbounded recursion in free path with new kmalloc type Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 013/396] thunderbolt: Prevent XDomain delayed work use-after-free on disconnect Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 014/396] pinctrl: qcom: Unconditionally mark gpio as wakeup enable Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 015/396] pinctrl: qcom: sc8280xp: Add missing wakeup entries for GPIO143/151 Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 016/396] dmaengine: sun6i-dma: Fix reclaim descriptors while terminating DMA Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 017/396] dmaengine: idxd: fix fdev setup failure cleanup in idxd_cdev_open() Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 018/396] iommu/arm-smmu-v3-iommufd: Require exactly one Stream ID for a vDEVICE Greg Kroah-Hartman
2026-08-07 14:32 ` [PATCH 6.18 019/396] gpio: sloppy-logic-analyzer: Fix memory leak in gpio_la_poll_probe() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 020/396] selftests/lkdtm: rename STACKLEAK_ERASING to KSTACK_ERASE Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 021/396] selftests/seccomp: Fix pointer type mismatch build error Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 022/396] ata: sata_mv: accept 1 or 2 resources in platform probe Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 023/396] ata: ahci_ceva: fix error paths in ceva_ahci_platform_enable_resources() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 024/396] phy: qcom: m31-eusb2: Fix return value of init call Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 025/396] ASoC: max98095: fix missing IS_ERR() before PTR_ERR() on mclk lookup Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 026/396] ASoC: max98090: " Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 027/396] of: reserved_mem: prevent OOB when too many dynamic regions are defined Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 028/396] btrfs: fix leaking BTRFS_FS_STATE_REMOUNTING flag Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 029/396] btrfs: zoned: fix deadlock between metadata writeback and transaction commit Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 030/396] btrfs: zoned: reset meta_write_pointer on zone reset Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 031/396] btrfs: raid56: fix an incorrect csum skip during scrub Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 032/396] phy: zynqmp: fix clock error handling in xpsgtr_phy_init() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 033/396] phy: zynqmp: fix runtime PM leak on probe allocation failure Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 034/396] netfilter: nf_conntrack_sip: widen NAT rewrite delta to s32 in sip_help_tcp() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 035/396] drm/mediatek: Check CRTC state before freeing Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 036/396] arch/x86: mshyperv: Discover Confidential VMBus availability Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 037/396] Drivers: hv: Rename fields for SynIC message and event pages Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 038/396] Drivers: hv: Allocate the paravisor SynIC pages when required Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 039/396] Drivers: hv: vmbus: Replace lockdep_hardirq_threaded() with lockdep annotation Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 040/396] mshv: Fix duplicate GSI detection for GSI 0 Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 041/396] mshv: Fix sleeping under spinlock in mshv_portid_alloc Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 042/396] KVM: arm64: Reject guest_memfd memslots when the VM has MTE Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 043/396] KEYS: trusted: dcp: fix key_len validation and calc_blob_len() return type Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 044/396] keys: fix out-of-bounds read in keyring_get_key_chunk() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 045/396] keys: make keyring key-chunk byte order agree with keyring_diff_objects() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 046/396] assoc_array: trim the final shortcut word using the current chunk end Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 047/396] netfilter: nf_tables: make nft_object rhltable per table Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 048/396] netfilter: xt_hashlimit: validate hashtable supports XT_HASHLIMIT_RATE_MATCH Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 049/396] ipvs: fix the checksum validations Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 050/396] ipvs: fix places with wrong packet offsets Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 051/396] ipvs: do not mangle ICMP replies for non-first fragments Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 052/396] netfilter: nft_payload: fix mask build for partial field offload Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 053/396] ASoC: SDCA: Ensure that Control Range is large enough for header Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 054/396] rds: Fix inet6_addr_lst NULL dereference when IPv6 is disabled Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 055/396] rds: tcp: hold the RCU lock across ipv6_chk_addr() in rds_tcp_laddr_check() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 056/396] af_unix: fix listen() succeeding on sockets in the wrong state Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 057/396] selftests: af_unix: Add tests for ECONNRESET and EOF semantics Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 058/396] selftest: af_unix: Create its own .gitignore Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 059/396] selftests/net/af_unix: test listen() rejects wrong socket states Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 060/396] xsk: fix buffer leak in xsk_drop_skb() for AF_XDP multi-buffer Tx Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 061/396] xsk: use a smaller new lock for shared pool case Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 062/396] xsk: drain continuation descs after overflow in xsk_build_skb() Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 063/396] pinctrl-amd: Dont clear S4 wake bits at probe Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 064/396] scsi: libiscsi: Fix stale-data leak into the SCSI sense buffer Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 065/396] scsi: libiscsi_tcp: Bound SCSI Response data segment to the connection buffer Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 066/396] scsi: libsas: Fix HA resume deadlock and hisi_sas disk-wake race Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 067/396] smb: client: fix buffer leaks in SMB1 read and write Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 068/396] ASoC: tas2781: Use correct calibration data for SINEGAIN2 register Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 069/396] spi: spi-cadence: supports transmission with bits_per_word of 16 and 32 Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 070/396] spi: spi-cadence: Move TX FIFO full busy-wait into FIFO Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 071/396] hwmon: (nct6775-core) Fix number of temperature registers for NCT6116 Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 072/396] hwmon: (ina2xx) Make it easier to add more devices Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 073/396] hwmon: (ina2xx) Add support for INA234 Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 074/396] hwmon: (ina2xx) Shift INA234 shunt and current registers Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 075/396] hwmon: (ina2xx) Fix various overflow issues Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 076/396] hwmon: (ltc4282) Fix reading the minimum alarm voltage Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 077/396] hwmon: (sht3x) Fix unaligned accesses Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 078/396] hwmon: (lm90) Only report alarms if driver is ready Greg Kroah-Hartman
2026-08-07 14:33 ` [PATCH 6.18 079/396] hwmon: (nzxt-smart2) DMA-align output buffer Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 080/396] net: do not send ICMP/NDISC Redirects when peer allocation fails Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 081/396] hwmon: (nct6775-core) Prevent access to unsupported weight registers Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 082/396] net: bridge: mrp: fix Option TLV length in MRP_Test frames Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 083/396] forcedeth: fix UAF of txrx_stats in nv_remove Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 084/396] hwmon: (adt7470) Fix fans stuck in manual mode on I2C errors Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 085/396] hwmon: (adt7470) Fix cache updated before hardware write on I2C error Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 086/396] hwmon: (adt7470) Fix busy-loop and I2C flooding in update thread Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 087/396] hwmon: (adt7470) Fix temperature alarm logic in hwmon_temp_read() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 088/396] hwmon: (adt7470) Fix swapped PWM3 and PWM4 auto mode masks Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 089/396] hwmon: (adt7470) Use cached PWM frequency value Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 090/396] hwmon: (adt7470) Fix divide-by-zero TOCTOU crash in fan speed read Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 091/396] hwmon: (adt7470) Fix PWM auto temp state array and bounds check Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 092/396] rtase: fix double free of multi-frag skb on DMA map failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 093/396] powerpc/boot: Fix simpleboot CPU node lookup check Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 094/396] powerpc/boot: Fix treeboot-currituck " Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 095/396] powerpc/boot: Fix treeboot-akebono " Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 096/396] net: udp_tunnel: fix memory leak in udp_tunnel_nic_unregister() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 097/396] wifi: mac80211: validate individual TWT params before driver setup Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 098/396] netfs: clear PG_private_2 on copy-to-cache append failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 099/396] netfs: handle single writeback rolling buffer allocation failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 100/396] netfs: release readahead folios on iterator preparation failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 101/396] net: ethernet: mtk_eth_soc: pass eth to mtk_handle_irq_rx in poll_controller Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 102/396] hwmon: (pmbus) Fix return value from pmbus_update_byte_data() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 103/396] idpf: adjust TxQ ring count minimum Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 104/396] idpf: Fix mailbox IRQ name leak on request failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 105/396] ice: suppress DPLL errors during reset recovery Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 106/396] Bluetooth: ISO: clear iso_data always when detaching conn from hcon Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 107/396] Bluetooth: L2CAP: fix UAF in l2cap_le_connect_rsp Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 108/396] Bluetooth: ISO: lock sk in iso_sock_getname Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 109/396] Bluetooth: HCI: Add initial support for PAST Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 110/396] Bluetooth: ISO: Fix data-race on iso_pi(sk) in socket and HCI event paths Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 111/396] Bluetooth: ISO: lock sk in iso_connect_ind Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 112/396] Bluetooth: ISO: fix timeout vs sync_timeout typo in check_bcast_qos Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 113/396] Bluetooth: ISO: validate sockaddr_iso first in iso_sock_rebind_bis() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 114/396] Bluetooth: ISO: Fix not updating BIS sender source address Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 115/396] Bluetooth: ISO: fix CONNECTED -> CLOSED transition on shutdown/release Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 116/396] Bluetooth: ISO: hold sk properly in iso_conn_ready Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 117/396] Bluetooth: ISO: fix leaking sk after socket release Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 118/396] Bluetooth: ISO: avoid deadlocks in iso_sock_timeout Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 119/396] Bluetooth: ISO: ensure no dangling hcon references in iso_conn Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 120/396] Bluetooth: ISO: fix refcounting of iso_conn Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 121/396] Bluetooth: btintel: Validate length before parsing diagnostics TLV Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 122/396] Bluetooth: hci_sync: make hci_cmd_sync_run_once return -EEXIST if exists Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 123/396] Bluetooth: hci_conn: hold conn reference in abort_conn_sync() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 124/396] Bluetooth: hci_sync: fix hci_conn_del() use in hci_le_create_conn_sync Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 125/396] Bluetooth: hci_sync: remove unnecessary hci_conn_get in create_conn_sync Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 126/396] x86/boot: Add volatile, clobbers and zero-length test in memcmp() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 127/396] net: phylink: put link_gpio if phylink_create fails Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 128/396] scsi: target: iblock: Fix wrong PR ops NULL check for PREEMPT/RELEASE Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 129/396] scsi: ufs: core: Cancel RTC work in active-active suspend Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 130/396] scsi: ufs: core: Avoid IRQ thread wakeup during active UIC command Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 131/396] scsi: ufs: core: Revert "Delegate the interrupt service routine to a threaded IRQ handler" Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 132/396] scsi: zfcp: Fix memory leak during adapter release by destroying gid_pn_req Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 133/396] scsi: target: Clear cmd_cnt when initial counter enrollment fails Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 134/396] net: sxgbe: free TX rings on RX allocation failure Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 135/396] net: sxgbe: check descriptor ring allocation failures Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 136/396] can: isotp: check register_netdevice_notifier() error in module init Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 137/396] drm/i915/dp: Ignore the sinks DSC max FRL rate without a PCON DSC encoder Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 138/396] fprobe: Fix module reference count leak on error in register_fprobe() Greg Kroah-Hartman
2026-08-07 14:34 ` [PATCH 6.18 139/396] tracing/mmiotrace: Reset dropped_count in mmio_reset_data() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 140/396] tracing/mmiotrace: Add NULL check for mmio_trace_array in logging functions Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 141/396] riscv: drop __init from vec_check_unaligned_access_speed_all_cpus Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 142/396] accel/qaic: use sizeof(*trans_hdr) for transaction length check Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 143/396] riscv: mm: Fix out-of-bounds page-table walk during memory hot-remove Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 144/396] net: dsa: mt7530: check bus->read() errors in the MDIO regmap backend Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 145/396] net: dsa: mt7530: error out on failed reads in MT7531 PHY polling Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 146/396] ptp: netc: fix potential interrupt storm caused by incorrect unbind order Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 147/396] net: libwx: fix FDIR ATR queue mismatch for software VLAN packets Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 148/396] octeontx2-pf: Set correct sequence for carrier off and tx queue stop Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 149/396] sched/deadline: Use revised wakeup rule only for running dl_server Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 150/396] spi: spi-nxp-fspi: add per-SoC SDR/DTR clock rate limits for all supported SoCs Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 151/396] qede: sync udp_tunnel ports outside qede_lock in the recovery path Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 152/396] drm/i915/hdmi: Poll for 200 msec for TMDS_Scrambler_Status Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 153/396] ksmbd: return success for deferred final close Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 154/396] ksmbd: fix use-after-free in __close_file_table_ids() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 155/396] iomap: add a separate bio_set for iomap_split_ioend Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 156/396] mshv: Fix race in mshv_irqfd_deassign Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 157/396] mshv: adjust interrupt control structure for ARM64 Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 158/396] mshv: Fix level-triggered check on uninitialized data Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 159/396] mshv: Order pt_vp_array publish against irqfd assertion path Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 160/396] iommufd/viommu: Release the igroup lock on the vdevice_size error path Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 161/396] iommufd/viommu: Publish a vDEVICE only after vdevice_init() succeeds Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 162/396] iommufd: Fix wrong hwpt passed to iommufd_auto_response_faults on replace Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 163/396] iommu/iommufd: Fix IOPF group ownership UAF Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 164/396] pinctrl: microchip-sgpio: add missing select REGMAP_MMIO Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 165/396] pinctrl: devicetree: dont free uninitialized dev_name on error path Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 166/396] erofs: cap LZMA stream pool size Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 167/396] pinctrl: bm1880: add missing select GENERIC_PINCONF Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 168/396] fortify: Disable -Wstringop-overread in tests Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 169/396] mm: migrate_device: fix pte_pfn/pte_dirty called on non-present PTE Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 170/396] mm/util: dont read __page_2 for order-1 folios in snapshot_page() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 171/396] selftest: fix headers in fclog.c Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 172/396] fs/proc/task_mmu: fix PAGEMAP_SCAN written state for PMD holes Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 173/396] mm/percpu-km: fix bitmap overflow and accounting in pcpu_create_chunk() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 174/396] mm/hugetlb: fix list corruption in allocate_file_region_entries() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 175/396] mm/vmstat: fold stranded per-cpu node stats when a node comes online Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 176/396] tracing/probes: Reject $arg0 in meta argument expansion Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 177/396] tracing/fprobe: Roll back on enable_trace_fprobe() failure Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 178/396] KVM: VMX: add memory clobber to asm for VMX instructions Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 179/396] KVM: SVM: Update x2APIC MSR intercepts if AVIC is inhibited while L2 is active Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 180/396] KVM: s390: pci: Reject adapter interrupt forwarding if already enabled Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 181/396] KVM: s390: pci: Fix memory accounting for pinned/unpinned pages Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 182/396] KVM: s390: pci: Fix missing error codes and memory unaccounting Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 183/396] KVM: s390: pci: Fix NULL dereference on AIBV allocation failure Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 184/396] KVM: s390: pci: Validate AIBV and AISB before pinning guest pages Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 185/396] dibs: fix use-after-free of dmb_node in loopback attach/detach/unregister Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 186/396] sctp: validate Adaptation Indication parameter length Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 187/396] audit: fix potential integer overflow in audit_log_n_string() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 188/396] audit: fix potential use-after-free in audit_del_rule() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 189/396] Bluetooth: btusb: Fix short read errors in btusb_qca_send_vendor_req() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 190/396] Bluetooth: btmtk: Fix short read errors in btmtk_usb_uhw_reg_read() Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 191/396] Bluetooth: mgmt: fix pending command UAF in EIR updates Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 192/396] Bluetooth: SCO: give the socket its own sco_conn reference Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 193/396] Bluetooth: mgmt: fix UAF in pair command cancellation Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 194/396] Bluetooth: hci_sync: Fix advertising data UAFs Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 195/396] Bluetooth: HIDP: reject frames without a transaction header Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 196/396] Bluetooth: HIDP: validate numbered report payloads Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 197/396] bpf: lwt: Fix dst reference leak on reroute failure Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 198/396] afs: Fix afs_fs_fetch_data() to set call->async Greg Kroah-Hartman
2026-08-07 14:35 ` [PATCH 6.18 199/396] afs: Fix afs_fs_fetch_data() to subtract transferred from len Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 200/396] afs: Fix UAF when sending a message Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 201/396] ALSA: 6fire: Fix UAF at error handling during probe Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 202/396] ALSA: hda/realtek: Add quirk for TongFang X6SP45xU Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 203/396] ALSA: lx6464es: fix period byte count for 16-bit streams Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 204/396] ALSA: pcm: wake linked drain waiters on unlink Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 205/396] ALSA: seq: Fix division by zero in initialize_timer() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 206/396] ALSA: timer: Clear SNDRV_TIMER_IFLG_DEAD once the close completes Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 207/396] ALSA: ump: fix double free of out_cvts on rawmidi error Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 208/396] ASoC: fsl_asrc: fix m2m_init error path to use goto instead of bare return Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 209/396] ASoC: fsl_easrc: " Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 210/396] ASoC: tas2562: fix DVC coefficient write order Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 211/396] ASoC: tas2562: fix broken entries in the volume lookup table Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 212/396] ata: libata-eh: Increase STANDBY IMMEDIATE timeout Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 213/396] ata: libata-sata: fix ata_scsi_lpm_supported() iteration Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 214/396] ALSA: usb-audio: fix use-after-free in ump_to_endpoint() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 215/396] ALSA: usb-audio: fix stack info leak in RME Digiface status Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 216/396] ALSA: usb-audio: fix OOB write in snd_usbmidi_akai_output() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 217/396] ALSA: usb-audio: Fix DMA buffer out-of-bounds write when fill_max is set Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 218/396] ALSA: usb-audio: Clamp frame size in implicit-feedback mode Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 219/396] dmaengine: qcom: bam_dma: Fix command element mask field for BAM v1.6.0+ Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 220/396] e1000: fix memory leak in e1000_probe() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 221/396] igbvf: Fix leak in TX DMA error cleanup Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 222/396] igc: remove napi_synchronize() in igc_down() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 223/396] ipvs: do not propagate one-packet flag to synced conns Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 224/396] ksmbd: reject repeated SMB2 NEGOTIATE requests Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 225/396] mshv: fix hv_input_get_system_property struct Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 226/396] net/smc: fix socket use-after-free during link group termination Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 227/396] netfilter: ipset: do not update comments from kernel-side hash adds Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 228/396] of/address: Fix NULL bus dereference in of_pci_range_parser_one() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 229/396] tipc: avoid use-after-free in poll trace queue dumps Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 230/396] wifi: mwifiex: use the subframe length when parsing A-MSDU TDLS frames Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 231/396] binfmt_misc: restore write access when removing an entry Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 232/396] binfmt_misc: use exe_file_deny_write_access() for the interpreter clone Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 233/396] binfmt_misc: reject a flag character as the field delimiter Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 234/396] binfmt_misc: dont let an F entry pin its own instance Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 235/396] io_uring/net: initialize mshot_len for send Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 236/396] mm/page_reporting: use system_freezable_wq to fix UAF during suspend Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 237/396] mm: memcg: initialize *locked in memcg1_oom_prepare() stub Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 238/396] net: bridge: stop fast-leave after deleting a port group Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 239/396] net: ipv6: clear suppressed fib6 rule result Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 240/396] net: pktgen: fix proc entry use-after-free Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 241/396] powerpc/ps3: Fix map failure path in dma_ioc0_map_pages() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 242/396] um: vector: fix use-after-free in vector_mmsg_rx() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 243/396] uprobes: Fix NULL pointer dereference in hprobe_expire() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 244/396] veth: convert frag_list skbs before running XDP Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 245/396] vxlan: re-fetch eth header after route_shortcircuit() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 246/396] vxlan: unclone skb head before modifying eth header in route_shortcircuit() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 247/396] vxlan: use neigh_ha_snapshot() " Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 248/396] vxlan: use pskb_network_may_pull() for transmit path header pulls Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 249/396] vxlan: use pskb_network_may_pull() in route_shortcircuit() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 250/396] ublk: reset kernel-owned dev_info fields in ublk_ctrl_add_dev() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 251/396] tracing: Check return value of __register_event() in trace_module_add_events() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 252/396] tracing/filters: Fix false positive match in regex_match_full() Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 253/396] spi: spi-qpic-snand: write the feature value before executing SET_FEATURE Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 254/396] spi: qcom-qspi: Correct max DMA length to avoid 64K boundary failure Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 255/396] selftests/mm: fix potential wild pointer access of getline due to missing init Greg Kroah-Hartman
2026-08-07 14:36 ` Greg Kroah-Hartman [this message]
2026-08-07 14:36 ` [PATCH 6.18 257/396] scsi: scsi_debug: Fix REPORT ZONES alloc_len underflow OOB write Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 258/396] sctp: reject stale cookies with mismatched verification tags Greg Kroah-Hartman
2026-08-07 14:36 ` [PATCH 6.18 259/396] sctp: prevent peer transport count overflow Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 260/396] hwmon: (npcm750-pwm-fan): stop fan timer on device detach Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 261/396] hwmon: (pmbus/core) notify on the hwmon device, not the i2c client Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 262/396] i2c: amd-mp2: Unregister callback on adapter add failure Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 263/396] gpio: pca953x: fix cache_only and IRQ state on restore_context() failure Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 264/396] gpio: pch: use raw_spinlock_t for the register lock Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 265/396] cifs: add fscache_resize_cookie() to cifs_setsize() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 266/396] cpufreq: powernow-k8: Fix possible memory leak in powernowk8_cpu_init() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 267/396] cpufreq: schedutil: Publish util hooks only after all sg_cpu are initialized Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 268/396] power: supply: bq25890: fix the -10 C NTC lookup entry Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 269/396] power: supply: max17040: handle missing status supplier Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 270/396] s390/pci: Fix s390_pci_mmio_write syscall error return without MIO Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 271/396] s390/qeth: Check CAP_NET_ADMIN for private ioctls Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 272/396] s390/dasd: Fix potential NULL pointer dereference Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 273/396] s390/dasd: Fix undersized format-check buffer Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 274/396] s390/zcrypt: Fix wrong domain value verification with EP11 CPRBs Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 275/396] s390/zcrypt: Fix buffer over-read in cca_cipher2protkey Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 276/396] s390/zcrypt: Fix missing mem scrub at clear key import in cca_clr2cipherkey() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 277/396] s390/zcrypt: Validate length for CCA AES cipher key requests Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 278/396] s390/zcrypt: Validate length for CCA ECC private " Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 279/396] phy: zynqmp: fix L0_TM_DISABLE_SCRAMBLE_ENCODER mask Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 280/396] phy: zynqmp: use read-modify-write for SERDES scrambler bypass Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 281/396] phy: zynqmp: keep SERDES scrambler and 8b/10b enabled for USB Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 282/396] net: openvswitch: fix potential UAF on meter attach failure Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 283/396] net: openvswitch: fix skb leak on flow key update failure during recirculation Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 284/396] net: openvswitch: fix skb leak on flow key update failure during ct Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 285/396] ice: wait for reset completion in ice_resume() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 286/396] ice: fix VF interrupts cleanup Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 287/396] ice: fix memory leak in ice_lbtest_prepare_rings() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 288/396] i2c: spacemit: request IRQ after controller initialization Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 289/396] i2c: qcom-cci: drop custom suspend/resume and rely on runtime PM helpers Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 290/396] i2c: jz4780: Cache host clock rate at probe to prevent CCF prepare_lock deadlock Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 291/396] i2c: iproc: reset bus after timeout if START_BUSY is stuck Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 292/396] i2c: imx: mark I2C adapter when hardware is powered down Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 293/396] i2c: imx: Fix slave registration race and error handling Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 294/396] i2c: imx: Cancel hrtimer before clearing slave pointer Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 295/396] can: c_can: c_can_chip_config(): keep controller in init mode until bittiming is configured Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 296/396] can: ems_usb: validate CPC message lengths Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 297/396] can: etas_es58x: es58x_read_bulk_callback(): fix RX buffer leak on URB resubmit failure Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 298/396] can: gs_usb: gs_usb_receive_bulk_callback(): resubmit URB on skb allocation failure Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 299/396] can: j1939: transport: j1939_session_fresh_new(): initialize receive buffer Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 300/396] can: j1939: use netdevice_tracker for j1939_{priv,session,ecu} tracking Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 301/396] can: kvaser_usb: kvaser_usb_hydra_get_busparams(): fix memory leak in kvaser_usb_hydra_get_busparams() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 302/396] can: kvaser_usb_leaf: kvaser_usb_leaf_wait_cmd(): validate received command extents Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 303/396] can: softing: fw_parse(): validate firmware record spans Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 304/396] can: peak_usb: add bounds check for USB channel index Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 305/396] can: peak_usb: peak_usb_start(): fix double free of transfer buffer on URB submit error Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 306/396] can: peak_usb: validate uCAN receive record lengths Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 307/396] can: ctucanfd: add missing MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 308/396] can: ctucanfd: use self-test mode for PRESUME_ACK Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 309/396] can: ctucanfd: unmap BAR0 using base address Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 310/396] can: ctucanfd: handle bus error interrupts Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 311/396] can: ctucanfd: mark error-active controller status valid Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 312/396] drm/dp: Read the PCON max FRL bandwidth only for HDMI DFPs Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 313/396] drm/vc4: Supply the overflow slot size in BPOS, not the whole bin BO size Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 314/396] drm/vc4: Zero the tile state data array before each BIN job Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 315/396] drm/bridge: display-connector: Fix I2C adapter resource leak Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 316/396] drm/panthor: reject firmware sections with oversized data Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 317/396] drm/panthor: validate firmware interface structure sizes Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 318/396] drm/mediatek: ovl_adaptor: balance component registrations Greg Kroah-Hartman
2026-08-07 14:37 ` [PATCH 6.18 319/396] drm/amdgpu: move debug_vm handling to amdgpu_cs_parser_fini Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 320/396] drm/amdgpu: restore UMD profile pstate after runtime resume Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 321/396] drm/amdgpu: cap GTT size to physical RAM on APUs Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 322/396] drm/amd/pm: fix torn gpu metrics reads Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 323/396] drm/amd/display: Increase HDMI AV mute wait from 2 to 3 frames Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 324/396] drm/amd/display: use proper context for logging Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 325/396] drm/amdkfd: Fix missing authorization check in KFD_IOC_DBG_TRAP_DISABLE Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 326/396] drm/amdkfd: fix QID bit leak in pqm_create_queue() Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 327/396] drm/amdkfd: fix uint32_t overflow in EOP ring buffer size alignment Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 328/396] drm/amdkfd: Handle invalid event type in CRIU event restore Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 329/396] drm/amdkfd: hold event_mutex while checkpointing CRIU events Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 330/396] drm/vmwgfx: fix guest_memory_dirty bitfield clobbered as size Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 331/396] drm/vmwgfx: reject DX_BIND_QUERY without a DX context Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 332/396] drm/vmwgfx: clamp dirty-page range with min, not max Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 333/396] drm/vmwgfx: take fman->lock around fence list mutation in fifo_down Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 334/396] drm/vmwgfx: drop dma_buf reference on foreign-fd prime import Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 335/396] drm/vmwgfx: validate DRAW_PRIMITIVES header size before division Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 336/396] drm/vmwgfx: bound DMA command body size against suffix pointer Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 337/396] drm/vmwgfx: avoid destroy_workqueue(NULL) on vkms init failure Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 338/396] drm/vmwgfx: enforce cursor size limits for MOB cursors Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 339/396] drm/vmwgfx: use check_add_overflow for shader size+offset bound Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 340/396] drm/vmwgfx: validate external BO copy bounds for both stride paths Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 341/396] spi: spi-cadence: enable SPI_CONTROLLER_MUST_TX Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 342/396] HID: logitech-dj: Fix maxfield check in DJ short report validation Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 343/396] drm/xe/rtp: Refactor OAG MMIO trigger register whitelisting Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 344/396] drm/xe/rtp: Add RING_FORCE_TO_NONPRIV_DENY to OA whitelists Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 345/396] drm/xe/rtp: Maintain OA whitelists separately Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 346/396] drm/xe/rtp: Keep track of non-OA nonpriv slots Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 347/396] drm/xe/rtp: Generalize whitelist_apply_to_hwe Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 348/396] drm/xe/rtp: Save OA nonpriv registers to register save/restore lists Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 349/396] drm/xe/rtp: Toggle deny bit to (de-)whitelist OA regs Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 350/396] drm/xe/rtp: (De-)whitelist OA registers for all hwes for a gt Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 351/396] drm/xe/oa: (De-)whitelist OA registers on OA stream open/release Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 352/396] drm/xe/rtp: Ensure locking/ref counting for OA whitelists Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 353/396] mm/hugetlb: fix swap entry corruption when clearing uffd-wp at fork() Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 354/396] fs/proc/task_mmu: fix PAGEMAP_SCAN written state for unpopulated ptes Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 355/396] mm/huge_memory: unlock i_mmap_rwsem before releasing after-split folios Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 356/396] file: add FD_{ADD,PREPARE}() Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 357/396] file: ensure cleanup Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 358/396] net/handshake: convert handshake_nl_accept_doit() to FD_PREPARE() Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 359/396] net/handshake: Fix null-ptr-deref in handshake_complete() Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 360/396] net/handshake: Take a long-lived file reference at submit Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 361/396] net/handshake: hand off the pinned file reference to accept_doit Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 362/396] net/handshake: Close the submit-side sock_hold race Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 363/396] net/handshake: Drain pending requests at net namespace exit Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 364/396] usb: typec: ucsi: split connector lock classes Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 365/396] usb: typec: ucsi: Fix race condition and ordering in port unregistration Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 366/396] media: chips-media: wave5: Support CBP profile Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 367/396] media: qcom: camss: csid-340: Fix unused variables Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 368/396] media: qcom: camss: Fix RDI streaming for CSID 340 Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 369/396] media: uapi: rkisp: Correct name version enum Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 370/396] wifi: brcmfmac: drain bus_reset work on device removal Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 371/396] userfaultfd: prevent registration of special VMAs Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 372/396] drm/fb-helper: Allocate and release fb_info in single place Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 373/396] drm/tegra: fbdev: Remove offset into framebuffer memory Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 374/396] drm/amdgpu: Fix context pstate override handling Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 375/396] drm/amdgpu: Respect placement requirements in amdgpu_gtt_mgr functions Greg Kroah-Hartman
2026-08-07 14:38 ` [PATCH 6.18 377/396] drm/amd/display: check GRPH_FLIP status before sending event Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 385/396] drm/xe: Wait on external BO kernel fences in exec IOCTL Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 387/396] drm/i915/vrr: require valid min/max vfreq for VRR Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 388/396] drm/xe: Use SVM range helpers in PT layer Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 389/396] drm/xe: Stub out new pagefault layer Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 390/396] drm/xe: Add page reclamation info to device info Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 391/396] drm/xe/pt: Reset current_op in xe_pt_update_ops_init() Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 392/396] can: use skb hash instead of private variable in headroom Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 393/396] can: isotp: fix timer drain order, wakeup handling and tx_gen ordering Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 394/396] usb: typec: ucsi: Correct teardown ordering in ucsi_init() error path Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 395/396] drm/fb-helper: Fix a locking bug in an " Greg Kroah-Hartman
2026-08-07 14:39 ` [PATCH 6.18 396/396] drm/tegra: fbdev: Do not assign to struct drm_fb_helper.info Greg Kroah-Hartman
2026-08-07 18:31 ` [PATCH 6.18 000/396] 6.18.44-rc1 review Pavel Machek
2026-08-07 23:52 ` Wentao Guan
2026-08-08  0:31 ` Shuah Khan
2026-08-08 10:22 ` Brett A C Sheffield
2026-08-08 17:47 ` Peter Schneider
2026-08-08 22:47 ` Ron Economos
2026-08-09  8:32 ` Miguel Ojeda
2026-08-09 11:54 ` Mark Brown

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=20260807143429.770751335@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=akpm@linux-foundation.org \
    --cc=brauner@kernel.org \
    --cc=christian.gellermann@codasip.com \
    --cc=david@kernel.org \
    --cc=liam@infradead.org \
    --cc=ljs@kernel.org \
    --cc=mhocko@suse.com \
    --cc=patches@lists.linux.dev \
    --cc=rppt@kernel.org \
    --cc=shuah@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=surenb@google.com \
    --cc=vbabka@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