From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Mark Rutland <mark.rutland@arm.com>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
Andrew Morton <akpm@linux-foundation.org>,
Tim Chen <tim.c.chen@linux.intel.com>,
Vincent Donnefort <vdonnefort@google.com>,
Sven Schnelle <svens@linux.ibm.com>,
Mete Durlu <meted@linux.ibm.com>,
"Masami Hiramatsu (Google)" <mhiramat@kernel.org>,
"Steven Rostedt (Google)" <rostedt@goodmis.org>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 442/518] tracing: Have saved_cmdlines arrays all in one allocation
Date: Tue, 15 Oct 2024 14:45:46 +0200 [thread overview]
Message-ID: <20241015123934.065019192@linuxfoundation.org> (raw)
In-Reply-To: <20241015123916.821186887@linuxfoundation.org>
5.10-stable review patch. If anyone has any objections, please let me know.
------------------
From: Steven Rostedt (Google) <rostedt@goodmis.org>
[ Upstream commit 0b18c852cc6fb8284ac0ab97e3e840974a6a8a64 ]
The saved_cmdlines have three arrays for mapping PIDs to COMMs:
- map_pid_to_cmdline[]
- map_cmdline_to_pid[]
- saved_cmdlines
The map_pid_to_cmdline[] is PID_MAX_DEFAULT in size and holds the index
into the other arrays. The map_cmdline_to_pid[] is a mapping back to the
full pid as it can be larger than PID_MAX_DEFAULT. And the
saved_cmdlines[] just holds the COMMs associated to the pids.
Currently the map_pid_to_cmdline[] and saved_cmdlines[] are allocated
together (in reality the saved_cmdlines is just in the memory of the
rounding of the allocation of the structure as it is always allocated in
powers of two). The map_cmdline_to_pid[] array is allocated separately.
Since the rounding to a power of two is rather large (it allows for 8000
elements in saved_cmdlines), also include the map_cmdline_to_pid[] array.
(This drops it to 6000 by default, which is still plenty for most use
cases). This saves even more memory as the map_cmdline_to_pid[] array
doesn't need to be allocated.
Link: https://lore.kernel.org/linux-trace-kernel/20240212174011.068211d9@gandalf.local.home/
Link: https://lore.kernel.org/linux-trace-kernel/20240220140703.182330529@goodmis.org
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Tim Chen <tim.c.chen@linux.intel.com>
Cc: Vincent Donnefort <vdonnefort@google.com>
Cc: Sven Schnelle <svens@linux.ibm.com>
Cc: Mete Durlu <meted@linux.ibm.com>
Fixes: 44dc5c41b5b1 ("tracing: Fix wasted memory in saved_cmdlines logic")
Acked-by: Masami Hiramatsu (Google) <mhiramat@kernel.org>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
kernel/trace/trace.c | 18 ++++++++----------
1 file changed, 8 insertions(+), 10 deletions(-)
diff --git a/kernel/trace/trace.c b/kernel/trace/trace.c
index b16291f4c5731..9f5b9036f001d 100644
--- a/kernel/trace/trace.c
+++ b/kernel/trace/trace.c
@@ -2244,6 +2244,10 @@ struct saved_cmdlines_buffer {
};
static struct saved_cmdlines_buffer *savedcmd;
+/* Holds the size of a cmdline and pid element */
+#define SAVED_CMDLINE_MAP_ELEMENT_SIZE(s) \
+ (TASK_COMM_LEN + sizeof((s)->map_cmdline_to_pid[0]))
+
static inline char *get_saved_cmdlines(int idx)
{
return &savedcmd->saved_cmdlines[idx * TASK_COMM_LEN];
@@ -2258,7 +2262,6 @@ static void free_saved_cmdlines_buffer(struct saved_cmdlines_buffer *s)
{
int order = get_order(sizeof(*s) + s->cmdline_num * TASK_COMM_LEN);
- kfree(s->map_cmdline_to_pid);
kmemleak_free(s);
free_pages((unsigned long)s, order);
}
@@ -2271,7 +2274,7 @@ static struct saved_cmdlines_buffer *allocate_cmdlines_buffer(unsigned int val)
int order;
/* Figure out how much is needed to hold the given number of cmdlines */
- orig_size = sizeof(*s) + val * TASK_COMM_LEN;
+ orig_size = sizeof(*s) + val * SAVED_CMDLINE_MAP_ELEMENT_SIZE(s);
order = get_order(orig_size);
size = 1 << (order + PAGE_SHIFT);
page = alloc_pages(GFP_KERNEL, order);
@@ -2283,16 +2286,11 @@ static struct saved_cmdlines_buffer *allocate_cmdlines_buffer(unsigned int val)
memset(s, 0, sizeof(*s));
/* Round up to actual allocation */
- val = (size - sizeof(*s)) / TASK_COMM_LEN;
+ val = (size - sizeof(*s)) / SAVED_CMDLINE_MAP_ELEMENT_SIZE(s);
s->cmdline_num = val;
- s->map_cmdline_to_pid = kmalloc_array(val,
- sizeof(*s->map_cmdline_to_pid),
- GFP_KERNEL);
- if (!s->map_cmdline_to_pid) {
- free_saved_cmdlines_buffer(s);
- return NULL;
- }
+ /* Place map_cmdline_to_pid array right after saved_cmdlines */
+ s->map_cmdline_to_pid = (unsigned *)&s->saved_cmdlines[val * TASK_COMM_LEN];
s->cmdline_idx = 0;
memset(&s->map_pid_to_cmdline, NO_CMDLINE_MAP,
--
2.43.0
next prev parent reply other threads:[~2024-10-15 13:20 UTC|newest]
Thread overview: 529+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-15 12:38 [PATCH 5.10 000/518] 5.10.227-rc1 review Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 001/518] usb: dwc3: Decouple USB 2.0 L1 & L2 events Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 002/518] usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after resume bug Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 003/518] usb: dwc3: core: update LC timer as per USB Spec V3.2 Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 004/518] usbnet: ipheth: fix carrier detection in modes 1 and 4 Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 005/518] net: ethernet: use ip_hdrlen() instead of bit shift Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 006/518] net: phy: vitesse: repair vsc73xx autonegotiation Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 007/518] powerpc/mm: Fix boot warning with hugepages and CONFIG_DEBUG_VIRTUAL Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 008/518] btrfs: update target inodes ctime on unlink Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 009/518] Input: ads7846 - ratelimit the spi_sync error message Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 010/518] Input: synaptics - enable SMBus for HP Elitebook 840 G2 Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 011/518] scripts: kconfig: merge_config: config files: add a trailing newline Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 012/518] drm/msm/adreno: Fix error return if missing firmware-name Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 013/518] Input: i8042 - add Fujitsu Lifebook E756 to i8042 quirk table Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 014/518] NFS: Avoid unnecessary rescanning of the per-server delegation list Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 015/518] arm64: dts: rockchip: override BIOS_DISABLE signal via GPIO hog on RK3399 Puma Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 016/518] minmax: reduce min/max macro expansion in atomisp driver Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 017/518] hwmon: (pmbus) Introduce and use write_byte_data callback Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 018/518] hwmon: (pmbus) Conditionally clear individual status bits for pmbus rev >= 1.2 Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 019/518] ice: fix accounting for filters shared by multiple VSIs Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 020/518] net/mlx5: Update the list of the PCI supported devices Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 021/518] net/mlx5e: Add missing link modes to ptys2ethtool_map Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 022/518] fou: fix initialization of grc Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 023/518] net: ftgmac100: Enable TX interrupt to avoid TX timeout Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 024/518] net: dpaa: Pad packets to ETH_ZLEN Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 025/518] spi: nxp-fspi: fix the KASAN report out-of-bounds bug Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 026/518] soundwire: stream: Revert "soundwire: stream: fix programming slave ports for non-continous port maps" Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 027/518] ASoC: meson: axg-card: fix use-after-free Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 028/518] dma-buf: heaps: Fix off-by-one in CMA heap fault handler Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 029/518] ASoC: allow module autoloading for table db1200_pids Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 030/518] ALSA: hda/realtek - Fixed ALC256 headphone no sound Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 031/518] ALSA: hda/realtek - FIxed ALC285 " Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 032/518] pinctrl: at91: make it work with current gpiolib Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 033/518] microblaze: dont treat zero reserved memory regions as error Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 034/518] net: ftgmac100: Ensure tx descriptor updates are visible Greg Kroah-Hartman
2024-10-15 12:38 ` [PATCH 5.10 035/518] wifi: iwlwifi: lower message level for FW buffer destination Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 036/518] wifi: iwlwifi: mvm: dont wait for tx queues if firmware is dead Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 037/518] ASoC: intel: fix module autoloading Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 038/518] ASoC: tda7419: " Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 039/518] drm: komeda: Fix an issue related to normalized zpos Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 040/518] spi: bcm63xx: Enable module autoloading Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 041/518] x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides frequency Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 042/518] ocfs2: add bounds checking to ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 043/518] ocfs2: strict bound check before memcmp in ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 044/518] cgroup: Make operations on the cgroup root_list RCU safe Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 045/518] netfilter: nft_set_pipapo: walk over current view on netlink dump Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 046/518] netfilter: nf_tables: missing iterator type in lookup walk Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 047/518] gpio: prevent potential speculation leaks in gpio_device_get_desc() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 048/518] mptcp: export lookup_anno_list_by_saddr Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 049/518] mptcp: validate id when stopping the ADD_ADDR retransmit timer Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 050/518] mptcp: pm: Fix uaf in __timer_delete_sync Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 051/518] inet: inet_defrag: prevent sk release while still in use Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 052/518] x86/ibt,ftrace: Search for __fentry__ location Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 053/518] ftrace: Fix possible use-after-free issue in ftrace_location() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 054/518] gpiolib: cdev: Ignore reconfiguration without direction Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 055/518] cgroup: Move rcu_head up near the top of cgroup_root Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 056/518] usb: dwc3: Fix a typo in field name Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 057/518] USB: serial: pl2303: add device id for Macrosilicon MS3020 Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 058/518] USB: usbtmc: prevent kernel-usb-infoleak Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 059/518] wifi: rtw88: always wait for both firmware loading attempts Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 060/518] ACPI: PMIC: Remove unneeded check in tps68470_pmic_opregion_probe() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 061/518] fs: explicitly unregister per-superblock BDIs Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 062/518] mount: warn only once about timestamp range expiration Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 063/518] fs/namespace: fnic: Switch to use %ptTd Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 064/518] mount: handle OOM on mnt_warn_timestamp_expiry Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 065/518] padata: Honor the callers alignment in case of chunk_size 0 Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 066/518] can: j1939: use correct function name in comment Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 067/518] netfilter: nf_tables: elements with timeout below CONFIG_HZ never expire Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 068/518] netfilter: nf_tables: reject element expiration with no timeout Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 069/518] netfilter: nf_tables: reject expiration higher than timeout Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 070/518] cpufreq: ti-cpufreq: Introduce quirks to handle syscon fails appropriately Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 071/518] wifi: cfg80211: fix UBSAN noise in cfg80211_wext_siwscan() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 072/518] wifi: mt76: mt7915: fix rx filter setting for bfee functionality Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 073/518] wifi: cfg80211: fix two more possible UBSAN-detected off-by-one errors Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 074/518] wifi: mac80211: use two-phase skb reclamation in ieee80211_do_stop() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 075/518] wifi: wilc1000: fix potential RCU dereference issue in wilc_parse_join_bss_param Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 076/518] sock_map: Add a cond_resched() in sock_hash_free() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 077/518] can: bcm: Clear bo->bcm_proc_read after remove_proc_entry() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 078/518] can: m_can: Add support for transceiver as phy Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 079/518] can: m_can: m_can_close(): stop clocks after device has been shut down Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 080/518] Bluetooth: btusb: Fix not handling ZPL/short-transfer Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 081/518] bareudp: allow redirecting bareudp packets to eth devices Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 082/518] bareudp: Pull inner IP header in bareudp_udp_encap_recv() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 083/518] net: geneve: support IPv4/IPv6 as inner protocol Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 084/518] geneve: Fix incorrect inner network header offset when innerprotoinherit is set Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 085/518] bareudp: Pull inner IP header on xmit Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 086/518] net: enetc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 087/518] r8169: disable ALDPS per default for RTL8125 Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 088/518] net: ipv6: rpl_iptunnel: Fix memory leak in rpl_input Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 089/518] net: tipc: avoid possible garbage value Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 090/518] block, bfq: fix possible UAF for bfqq->bic with merge chain Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 091/518] block, bfq: choose the last bfqq from merge chain in bfq_setup_cooperator() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 092/518] block, bfq: dont break merge chain in bfq_split_bfqq() Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 093/518] block: print symbolic error name instead of error code Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 094/518] block: fix potential invalid pointer dereference in blk_add_partition Greg Kroah-Hartman
2024-10-15 12:39 ` [PATCH 5.10 095/518] spi: ppc4xx: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 096/518] spi: ppc4xx: Avoid returning 0 when failed to parse and map IRQ Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 097/518] ARM: dts: microchip: sam9x60: Fix rtc/rtt clocks Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 098/518] ARM: dts: imx7d-zii-rmu2: fix Ethernet PHY pinctrl property Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 099/518] ARM: versatile: fix OF node leak in CPUs prepare Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 100/518] reset: berlin: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 101/518] clocksource/drivers/qcom: Add missing iounmap() on errors in msm_dt_timer_init() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 102/518] m68k: Fix kernel_clone_args.flags in m68k_clone() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 103/518] hwmon: (max16065) Fix overflows seen when writing limits Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 104/518] i2c: Add i2c_get_match_data() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 105/518] hwmon: (max16065) Remove use of i2c_match_id() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 106/518] hwmon: (max16065) Fix alarm attributes Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 107/518] mtd: slram: insert break after errors in parsing the map Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 108/518] hwmon: (ntc_thermistor) fix module autoloading Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 109/518] power: supply: axp20x_battery: allow disabling battery charging Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 110/518] power: supply: axp20x_battery: Remove design from min and max voltage Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 111/518] power: supply: max17042_battery: Fix SOC threshold calc w/ no current sense Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 112/518] fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 113/518] mtd: powernv: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 114/518] drm/stm: Fix an error handling path in stm_drm_platform_probe() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 115/518] drm/amdgpu: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 116/518] drm/amdgpu: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 117/518] drm/radeon: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 118/518] drm/radeon: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 119/518] drm/rockchip: vop: Allow 4096px width scaling Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 120/518] drm/rockchip: dw_hdmi: Fix reading EDID when using a forced mode Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 121/518] drm/radeon/evergreen_cs: fix int overflow errors in cs track offsets Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 122/518] jfs: fix out-of-bounds in dbNextAG() and diAlloc() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 123/518] drm/msm: Fix incorrect file name output in adreno_request_fw() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 124/518] drm/msm/a5xx: disable preemption in submits by default Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 125/518] drm/msm/a5xx: properly clear preemption records on resume Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 126/518] drm/msm/a5xx: fix races in preemption evaluation stage Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 127/518] drm/msm: Add priv->mm_lock to protect active/inactive lists Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 128/518] drm/msm: Drop priv->lastctx Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 129/518] drm/msm/a5xx: workaround early ring-buffer emptiness check Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 130/518] ipmi: docs: dont advertise deprecated sysfs entries Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 131/518] drm/msm: fix %s null argument error Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 132/518] drivers:drm:exynos_drm_gsc:Fix wrong assignment in gsc_bind() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 133/518] xen: use correct end address of kernel for conflict checking Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 134/518] xen/swiotlb: add alignment check for dma buffers Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 135/518] tpm: Clean up TPM space after command failure Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 136/518] selftests/bpf: Fix compile error from rlim_t in sk_storage_map.c Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 137/518] selftests/bpf: Fix missing ARRAY_SIZE() definition in bench.c Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 138/518] selftests/bpf: Fix compiling kfree_skb.c with musl-libc Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 139/518] selftests/bpf: Fix compiling flow_dissector.c " Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 140/518] selftests/bpf: Fix compiling tcp_rtt.c " Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 141/518] selftests/bpf: Fix errors compiling cg_storage_multi.h with musl libc Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 142/518] selftests/bpf: Fix error compiling test_lru_map.c Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 143/518] selftests/bpf: Fix C++ compile error from missing _Bool type Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 144/518] xz: cleanup CRC32 edits from 2018 Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 145/518] kthread: add kthread_work tracepoints Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 146/518] kthread: fix task state in kthread worker if being frozen Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 147/518] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 148/518] smackfs: Use rcu_assign_pointer() to ensure safe assignment in smk_set_cipso Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 149/518] ext4: avoid buffer_head leak in ext4_mark_inode_used() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 150/518] ext4: avoid potential buffer_head leak in __ext4_new_inode() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 151/518] ext4: avoid negative min_clusters in find_group_orlov() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 152/518] ext4: return error on ext4_find_inline_entry Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 153/518] ext4: avoid OOB when system.data xattr changes underneath the filesystem Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 154/518] nilfs2: fix potential null-ptr-deref in nilfs_btree_insert() Greg Kroah-Hartman
2024-10-15 12:40 ` [PATCH 5.10 155/518] nilfs2: determine empty node blocks as corrupted Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 156/518] nilfs2: fix potential oob read in nilfs_btree_check_delete() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 157/518] bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 158/518] perf sched timehist: Fix missing free of session in perf_sched__timehist() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 159/518] perf sched timehist: Fixed timestamp error when unable to confirm event sched_in time Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 160/518] perf time-utils: Fix 32-bit nsec parsing Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 161/518] clk: imx: imx8mp: fix clock tree update of TF-A managed clocks Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 162/518] clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228 Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 163/518] drivers: media: dvb-frontends/rtl2832: fix an out-of-bounds write error Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 164/518] drivers: media: dvb-frontends/rtl2830: " Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 165/518] PCI: keystone: Fix if-statement expression in ks_pcie_quirk() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 166/518] PCI: xilinx-nwl: Fix register misspelling Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 167/518] RDMA/iwcm: Fix WARNING:at_kernel/workqueue.c:#check_flush_dependency Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 168/518] pinctrl: single: fix missing error code in pcs_probe() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 169/518] clk: ti: dra7-atl: Fix leak of of_nodes Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 170/518] nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 171/518] nfsd: fix refcount leak when file is unhashed after being found Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 172/518] pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 173/518] pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 174/518] watchdog: imx_sc_wdt: Dont disable WDT in suspend Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 175/518] RDMA/hns: Add mapped page count checking for MTR Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 176/518] RDMA/hns: Refactor root BT allocation " Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 177/518] RDMA/hns: Fix the overflow risk of hem_list_calc_ba_range() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 178/518] RDMA/hns: Fix spin_unlock_irqrestore() called with IRQs enabled Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 179/518] RDMA/hns: Optimize hem allocation performance Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 180/518] riscv: Fix fp alignment bug in perf_callchain_user() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 181/518] RDMA/cxgb4: Added NULL check for lookup_atid Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 182/518] ntb: intel: Fix the NULL vs IS_ERR() bug for debugfs_create_dir() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 183/518] ntb_perf: Fix printk format Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 184/518] nfsd: call cache_put if xdr_reserve_space returns NULL Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 185/518] nfsd: return -EINVAL when namelen is 0 Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 186/518] f2fs: enhance to update i_mode and acl atomically in f2fs_setattr() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 187/518] f2fs: fix typo Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 188/518] f2fs: fix to update i_ctime in __f2fs_setxattr() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 189/518] f2fs: remove unneeded check condition " Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 190/518] f2fs: reduce expensive checkpoint trigger frequency Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 191/518] spi: lpspi: Silence error message upon deferred probe Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 192/518] spi: lpspi: release requested DMA channels Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 193/518] spi: spi-fsl-lpspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 194/518] iio: adc: ad7606: fix oversampling gpio array Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 195/518] iio: adc: ad7606: fix standby gpio state to match the documentation Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 196/518] coresight: tmc: sg: Do not leak sg_table Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 197/518] interconnect: qcom: sm8250: Enable sync_state Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 198/518] vdpa: Add eventfd for the vdpa callback Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 199/518] vhost_vdpa: assign irq bypass producer token correctly Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 200/518] Revert "dm: requeue IO if mapping table not yet available" Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 201/518] netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 202/518] net: seeq: Fix use after free vulnerability in ether3 Driver Due to Race Condition Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 203/518] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 204/518] tcp: check skb is non-NULL in tcp_rto_delta_us() Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 205/518] net: qrtr: Update packets cloning when broadcasting Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 206/518] netfilter: nf_tables: Keep deleted flowtable hooks until after RCU Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 207/518] netfilter: ctnetlink: compile ctnetlink_label_size with CONFIG_NF_CONNTRACK_EVENTS Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 208/518] drm/amd/display: Fix Synaptics Cascaded Panamera DSC Determination Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 209/518] Input: goodix - use the new soc_intel_is_byt() helper Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 210/518] powercap: RAPL: fix invalid initialization for pl4_supported field Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 211/518] x86/mm: Switch to new Intel CPU model defines Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 212/518] Revert "bpf: Fix DEVMAP_HASH overflow check on 32-bit arches" Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 213/518] Revert "bpf: Eliminate rlimit-based memory accounting for devmap maps" Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 214/518] bpf: Fix DEVMAP_HASH overflow check on 32-bit arches Greg Kroah-Hartman
2024-10-15 12:41 ` [PATCH 5.10 215/518] selinux,smack: dont bypass permissions check in inode_setsecctx hook Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 216/518] mptcp: fix sometimes-uninitialized warning Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 217/518] Remove *.orig pattern from .gitignore Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 218/518] ASoC: rt5682: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 219/518] soc: versatile: integrator: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 220/518] Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk table Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 221/518] Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 " Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 222/518] Input: i8042 - add another board name for TUXEDO Stellaris Gen5 AMD line Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 223/518] drm/amd/display: Round calculated vtotal Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 224/518] USB: appledisplay: close race between probe and completion handler Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 225/518] USB: misc: cypress_cy7c63: check for short transfer Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 226/518] USB: class: CDC-ACM: fix race between get_serial and set_serial Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 227/518] bus: integrator-lm: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 228/518] firmware_loader: Block path traversal Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 229/518] tty: rp2: Fix reset with non forgiving PCIe host bridges Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 230/518] crypto: ccp - Properly unregister /dev/sev on sev PLATFORM_STATUS failure Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 231/518] drbd: Fix atomicity violation in drbd_uuid_set_bm() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 232/518] drbd: Add NULL check for net_conf to prevent dereference in state validation Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 233/518] ACPI: sysfs: validate return type of _STR method Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 234/518] ACPI: resource: Add another DMI match for the TongFang GMxXGxx Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 235/518] efistub/tpm: Use ACPI reclaim memory for event log to avoid corruption Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 236/518] perf/x86/intel/pt: Fix sampling synchronization Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 237/518] wifi: rtw88: 8822c: Fix reported RX band width Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 238/518] debugobjects: Fix conditions in fill_pool() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 239/518] f2fs: prevent possible int overflow in dir_block_index() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 240/518] f2fs: avoid potential int overflow in sanity_check_area_boundary() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 241/518] hwrng: mtk - Use devm_pm_runtime_enable Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 242/518] hwrng: cctrng - Add missing clk_disable_unprepare in cctrng_resume Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 243/518] arm64: dts: rockchip: Raise Pinebook Pros panel backlight PWM frequency Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 244/518] arm64: dts: rockchip: Correct the Pinebook Pro battery design capacity Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 245/518] vfs: fix race between evice_inodes() and find_inode()&iput() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 246/518] fs: Fix file_set_fowner LSM hook inconsistencies Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 247/518] nfs: fix memory leak in error path of nfs4_do_reclaim Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 248/518] padata: use integer wrap around to prevent deadlock on seq_nr overflow Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 249/518] PCI: xilinx-nwl: Use irq_data_get_irq_chip_data() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 250/518] PCI: xilinx-nwl: Fix off-by-one in INTx IRQ handler Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 251/518] soc: versatile: realview: fix memory leak during device remove Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 252/518] soc: versatile: realview: fix soc_dev " Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 253/518] usb: yurex: Replace snprintf() with the safer scnprintf() variant Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 254/518] USB: misc: yurex: fix race between read and write Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 255/518] pps: remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 256/518] pps: add an error check in parport_attach Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 257/518] usb: renesas-xhci: Remove renesas_xhci_pci_exit() Greg Kroah-Hartman
2024-10-17 12:18 ` Vinod Koul
2024-10-17 12:58 ` Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 258/518] xhci: Set quirky xHC PCI hosts to D3 _after_ stopping and freeing them Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 259/518] io_uring/sqpoll: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-15 13:20 ` MOESSBAUER, Felix
2024-10-17 8:46 ` gregkh
2024-10-17 8:57 ` MOESSBAUER, Felix
2024-10-15 12:42 ` [PATCH 5.10 260/518] lockdep: fix deadlock issue between lockdep and rcu Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 261/518] mm: only enforce minimum stack gap size if its sensible Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 262/518] i2c: aspeed: Update the stop sw state when the bus recovery occurs Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 263/518] i2c: isch: Add missed else Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 264/518] usb: yurex: Fix inconsistent locking bug in yurex_read() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 265/518] spi: lpspi: Simplify some error message Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 266/518] mailbox: rockchip: fix a typo in module autoloading Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 267/518] mailbox: bcm2835: Fix timeout during suspend mode Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 268/518] ceph: remove the incorrect Fw reference check when dirtying pages Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 269/518] ieee802154: Fix build error Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 270/518] net/mlx5: Fix error path in multi-packet WQE transmit Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 271/518] net/mlx5: Added cond_resched() to crdump collection Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 272/518] netfilter: uapi: NFTA_FLOWTABLE_HOOK is NLA_NESTED Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 273/518] net: ieee802154: mcr20a: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 274/518] netfilter: nf_tables: prevent nf_skb_duplicated corruption Greg Kroah-Hartman
2024-10-15 12:42 ` [PATCH 5.10 275/518] Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 276/518] net: ethernet: lantiq_etop: fix memory disclosure Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 277/518] net: avoid potential underflow in qdisc_pkt_len_init() with UFO Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 278/518] net: add more sanity checks to qdisc_pkt_len_init() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 279/518] ipv4: ip_gre: Fix drops of small packets in ipgre_xmit Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 280/518] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 281/518] i2c: xiic: Fix broken locking on tx_msg Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 282/518] i2c: xiic: Switch from waitqueue to completion Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 283/518] i2c: xiic: Fix RX IRQ busy check Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 284/518] i2c: xiic: xiic_xfer(): Fix runtime PM leak on error path Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 285/518] i2c: xiic: improve error message when transfer fails to start Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 286/518] i2c: xiic: Try re-initialization on bus busy timeout Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 287/518] media: usbtv: Remove useless locks in usbtv_video_free() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 288/518] Bluetooth: L2CAP: Fix not validating setsockopt user input Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 289/518] ALSA: mixer_oss: Remove some incorrect kfree_const() usages Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 290/518] ALSA: hda/realtek: Fix the push button function for the ALC257 Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 291/518] ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 292/518] ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 293/518] f2fs: Require FMODE_WRITE for atomic write ioctls Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 294/518] wifi: ath9k: fix possible integer overflow in ath9k_get_et_stats() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 295/518] wifi: ath9k_htc: Use __skb_set_length() for resetting urb before resubmit Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 296/518] ice: Adjust over allocation of memory in ice_sched_add_root_node() and ice_sched_add_node() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 297/518] net/xen-netback: prevent UAF in xenvif_flush_hash() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 298/518] net: hisilicon: hip04: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 299/518] net: hisilicon: hns_dsaf_mac: fix OF node leak in hns_mac_get_info() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 300/518] net: hisilicon: hns_mdio: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 301/518] ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 302/518] ACPICA: Fix memory leak if acpi_ps_get_next_field() fails Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 303/518] net: sched: consistently use rcu_replace_pointer() in taprio_change() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 304/518] blk_iocost: fix more out of bound shifts Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 305/518] wifi: ath11k: fix array out-of-bound access in SoC stats Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 306/518] wifi: rtw88: select WANT_DEV_COREDUMP Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 307/518] ACPI: EC: Do not release locks during operation region accesses Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 308/518] ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in acpi_db_convert_to_package() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 309/518] tipc: guard against string buffer overrun Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 310/518] net: mvpp2: Increase size of queue_name buffer Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 311/518] ipv4: Check !in_dev earlier for ioctl(SIOCSIFADDR) Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 312/518] ipv4: Mask upper DSCP bits and ECN bits in NETLINK_FIB_LOOKUP family Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 313/518] net: atlantic: Avoid warning about potential string truncation Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 314/518] tcp: avoid reusing FIN_WAIT2 when trying to find port in connect() process Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 315/518] ACPICA: iasl: handle empty connection_node Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 316/518] proc: add config & param to block forcing mem writes Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 317/518] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_cmd_802_11_scan_ext() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 318/518] nfp: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 319/518] signal: Replace BUG_ON()s Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 320/518] ALSA: usb-audio: Define macros for quirk table entries Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 321/518] ALSA: usb-audio: Add logitech Audio profile quirk Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 322/518] ALSA: asihpi: Fix potential OOB array access Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 323/518] ALSA: hdsp: Break infinite MIDI input flush loop Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 324/518] x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 325/518] fbdev: pxafb: Fix possible use after free in pxafb_task() Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 326/518] rcuscale: Provide clear error when async specified without primitives Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 327/518] iommu/arm-smmu-qcom: hide last LPASS SMMU context bank from linux Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 328/518] power: reset: brcmstb: Do not go into infinite loop if reset fails Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 329/518] iommu/vt-d: Always reserve a domain ID for identity setup Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 330/518] iommu/vt-d: Fix potential lockup if qi_submit_sync called with 0 count Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 331/518] drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 332/518] ata: sata_sil: Rename sil_blacklist to sil_quirks Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 333/518] drm/amd/display: Check null pointers before using dc->clk_mgr Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 334/518] jfs: UBSAN: shift-out-of-bounds in dbFindBits Greg Kroah-Hartman
2024-10-15 12:43 ` [PATCH 5.10 335/518] jfs: Fix uaf in dbFreeBits Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 336/518] jfs: check if leafidx greater than num leaves per dmap tree Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 337/518] jfs: Fix uninit-value access of new_ea in ea_buffer Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 338/518] drm/amdgpu: add raven1 gfxoff quirk Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 339/518] drm/amdgpu: enable gfxoff quirk on HP 705G4 Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 340/518] platform/x86: touchscreen_dmi: add nanote-next quirk Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 341/518] drm/amd/display: Check stream before comparing them Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 342/518] drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 343/518] drm/amd/display: Fix index out of bounds in " Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 344/518] drm/amd/display: Fix index out of bounds in DCN30 color transformation Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 345/518] drm/amd/display: Initialize get_bytes_per_elements default to 1 Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 346/518] drm/printer: Allow NULL data in devcoredump printer Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 347/518] scsi: aacraid: Rearrange order of struct aac_srb_unit Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 348/518] drm/radeon/r100: Handle unknown family in r100_cp_init_microcode() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 349/518] drm/amd/pm: ensure the fw_info is not null before using it Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 350/518] of/irq: Refer to actual buffer size in of_irq_parse_one() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 351/518] ext4: ext4_search_dir should return a proper error Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 352/518] ext4: avoid use-after-free in ext4_ext_show_leaf() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 353/518] ext4: fix i_data_sem unlock order in ext4_ind_migrate() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 354/518] spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 355/518] spi: s3c64xx: fix timeout counters in flush_fifo Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 356/518] selftests: breakpoints: use remaining time to check if suspend succeed Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 357/518] selftests: vDSO: fix vDSO symbols lookup for powerpc64 Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 358/518] selftests/mm: fix charge_reserved_hugetlb.sh test Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 359/518] i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 360/518] i2c: qcom-geni: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 361/518] i2c: xiic: Wait for TX empty to avoid missed TX NAKs Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 362/518] firmware: tegra: bpmp: Drop unused mbox_client_to_bpmp() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 363/518] spi: bcm63xx: Fix module autoloading Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 364/518] perf/core: Fix small negative period being ignored Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 365/518] parisc: Fix itlb miss handler for 64-bit programs Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 366/518] drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 367/518] ALSA: core: add isascii() check to card ID generator Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 368/518] ALSA: line6: add hw monitor volume control to POD HD500X Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 369/518] ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 370/518] ext4: no need to continue when the number of entries is 1 Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 371/518] ext4: fix slab-use-after-free in ext4_split_extent_at() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 372/518] ext4: propagate errors from ext4_find_extent() in ext4_insert_range() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 373/518] ext4: fix incorrect tid assumption in __jbd2_log_wait_for_space() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 374/518] ext4: drop ppath from ext4_ext_replay_update_ex() to avoid double-free Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 375/518] ext4: aovid use-after-free in ext4_ext_insert_extent() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 376/518] ext4: fix double brelse() the buffer of the extents path Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 377/518] ext4: update orig_path in ext4_find_extent() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 378/518] ext4: fix incorrect tid assumption in ext4_wait_for_tail_page_commit() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 379/518] parisc: Fix 64-bit userspace syscall path Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 380/518] parisc: Fix stack start for ADDR_NO_RANDOMIZE personality Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 381/518] of/irq: Support #msi-cells=<0> in of_msi_get_domain Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 382/518] drm: omapdrm: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 383/518] jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 384/518] jbd2: correctly compare tids with tid_geq function in jbd2_fc_begin_commit Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 385/518] mm: krealloc: consider spare memory for __GFP_ZERO Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 386/518] ocfs2: fix the la space leak when unmounting an ocfs2 volume Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 387/518] ocfs2: fix uninit-value in ocfs2_get_block() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 388/518] ocfs2: reserve space for inline xattr before attaching reflink tree Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 389/518] ocfs2: cancel dqi_sync_work before freeing oinfo Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 390/518] ocfs2: remove unreasonable unlock in ocfs2_read_blocks Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 391/518] ocfs2: fix null-ptr-deref when journal load failed Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 392/518] ocfs2: fix possible null-ptr-deref in ocfs2_set_buffer_uptodate Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 393/518] riscv: define ILLEGAL_POINTER_VALUE for 64bit Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 394/518] exfat: fix memory leak in exfat_load_bitmap() Greg Kroah-Hartman
2024-10-15 12:44 ` [PATCH 5.10 395/518] nfsd: fix delegation_blocked() to block correctly for at least 30 seconds Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 396/518] nfsd: map the EBADMSG to nfserr_io to avoid warning Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 397/518] NFSD: Fix NFSv4s PUTPUBFH operation Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 398/518] aoe: fix the potential use-after-free problem in more places Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 399/518] clk: rockchip: fix error for unknown clocks Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 400/518] media: sun4i_csi: Implement link validate for sun4i_csi subdev Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 401/518] media: uapi/linux/cec.h: cec_msg_set_reply_to: zero flags Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 402/518] clk: qcom: clk-rpmh: Fix overflow in BCM vote Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 403/518] media: venus: fix use after free bug in venus_remove due to race condition Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 404/518] clk: qcom: gcc-sm8250: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 405/518] iio: magnetometer: ak8975: Fix reading for ak099xx sensors Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 406/518] tomoyo: fallback to realpath if symlinks pathname does not exist Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 407/518] net: stmmac: Fix zero-division error when disabling tc cbs Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 408/518] rtc: at91sam9: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 409/518] Input: adp5589-keys - fix adp5589_gpio_get_value() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 410/518] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 411/518] ACPI: resource: Add Asus ExpertBook B2502CVA " Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 412/518] btrfs: fix a NULL pointer dereference when failed to start a new trasacntion Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 413/518] btrfs: wait for fixup workers before stopping cleaner kthread during umount Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 414/518] gpio: davinci: fix lazy disable Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 415/518] drm/sched: Add locking to drm_sched_entity_modify_sched Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 416/518] kconfig: qconf: fix buffer overflow in debug links Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 417/518] i2c: xiic: Simplify with dev_err_probe() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 418/518] i2c: xiic: Use devm_clk_get_enabled() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 419/518] i2c: xiic: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 420/518] ext4: properly sync file size update after O_SYNC direct IO Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 421/518] ext4: dax: fix overflowing extents beyond inode size when partially writing Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 422/518] arm64: Add Cortex-715 CPU part definition Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 423/518] arm64: cputype: Add Neoverse-N3 definitions Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 424/518] arm64: errata: Expand speculative SSBS workaround once more Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 425/518] uprobes: fix kernel info leak via "[uprobes]" vma Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 426/518] drm/rockchip: define gamma registers for RK3399 Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 427/518] drm/rockchip: support gamma control on RK3399 Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 428/518] drm/rockchip: vop: clear DMA stop bit on RK3066 Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 429/518] clk: qcom: dispcc-sm8250: use CLK_SET_RATE_PARENT for branch clocks Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 430/518] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 431/518] r8169: add tally counter fields added with RTL8125 Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 432/518] ACPI: battery: Simplify battery hook locking Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 433/518] ACPI: battery: Fix possible crash when unregistering a battery hook Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 434/518] ext4: fix inode tree inconsistency caused by ENOMEM Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 435/518] vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 436/518] unicode: Dont special case ignorable code points Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 437/518] net: ethernet: cortina: Drop TSO support Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 438/518] tracing: Remove precision vsnprintf() check from print event Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 439/518] drm/crtc: fix uninitialized variable use even harder Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 440/518] s390/zcore: no need to check return value of debugfs_create functions Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 441/518] s390/zcore: release dump save area on restart or power down Greg Kroah-Hartman
2024-10-15 12:45 ` Greg Kroah-Hartman [this message]
2024-10-15 12:45 ` [PATCH 5.10 443/518] virtio_console: fix misc probe bugs Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 444/518] kallsyms: Make kallsyms_on_each_symbol generally available Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 445/518] kallsyms: Make module_kallsyms_on_each_symbol " Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 446/518] tracing/kprobes: Return EADDRNOTAVAIL when func matches several symbols Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 447/518] tracing/kprobes: Fix symbol counting logic by looking at modules as well Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 448/518] Input: synaptics-rmi4 - fix UAF of IRQ domain on driver removal Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 449/518] bpf: Check percpu map value size first Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 450/518] s390/facility: Disable compile time optimization for decompressor code Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 451/518] s390/mm: Add cond_resched() to cmm_alloc/free_pages() Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 452/518] ext4: nested locking for xattr inode Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 453/518] s390/cpum_sf: Remove WARN_ON_ONCE statements Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 454/518] ktest.pl: Avoid false positives with grub2 skip regex Greg Kroah-Hartman
2024-10-15 12:45 ` [PATCH 5.10 455/518] RDMA/mad: Improve handling of timed out WRs of mad agent Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 456/518] PCI: Add function 0 DMA alias quirk for Glenfly Arise chip Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 457/518] clk: bcm: bcm53573: fix OF node leak in init Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 458/518] PCI: Add ACS quirk for Qualcomm SA8775P Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 459/518] i2c: i801: Use a different adapter-name for IDF adapters Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 460/518] PCI: Mark Creative Labs EMU20k2 INTx masking as broken Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 461/518] ntb: ntb_hw_switchtec: Fix use after free vulnerability in switchtec_ntb_remove due to race condition Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 462/518] media: videobuf2-core: clear memory related fields in __vb2_plane_dmabuf_put() Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 463/518] clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 464/518] usb: chipidea: udc: enable suspend interrupt after usb reset Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 465/518] usb: dwc2: Adjust the timing of USB Driver Interrupt Registration in the Crashkernel Scenario Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 466/518] virtio_pmem: Check device status before requesting flush Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 467/518] tools/iio: Add memory allocation failure check for trigger_name Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 468/518] driver core: bus: Return -EIO instead of 0 when show/store invalid bus attribute Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 469/518] drm/amd/display: Check null pointer before dereferencing se Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 470/518] fbdev: sisfb: Fix strbuf array overflow Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 471/518] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 472/518] NFSD: Mark filecache "down" if init fails Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 473/518] ice: fix VLAN replay after reset Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 474/518] SUNRPC: Fix integer overflow in decode_rc_list() Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 475/518] NFSv4: Prevent NULL-pointer dereference in nfs42_complete_copies() Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 476/518] net: phy: dp83869: fix memory corruption when enabling fiber Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 477/518] tcp: fix to allow timestamp undo if no retransmits were sent Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 478/518] tcp: fix tcp_enter_recovery() to zero retrans_stamp when its safe Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 479/518] netfilter: br_netfilter: fix panic with metadata_dst skb Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 480/518] Bluetooth: RFCOMM: FIX possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 481/518] net: phy: bcm84881: Fix some error handling paths Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 482/518] net: dsa: b53: fix jumbo frame mtu check Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 483/518] net: dsa: b53: fix max MTU for 1g switches Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 484/518] net: dsa: b53: fix max MTU for BCM5325/BCM5365 Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 485/518] net: dsa: b53: allow lower MTUs on BCM5325/5365 Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 486/518] net: dsa: b53: fix jumbo frames on 10/100 ports Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 487/518] gpio: aspeed: Add the flush write to ensure the write complete Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 488/518] gpio: aspeed: Use devm_clk api to manage clock source Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 489/518] igb: Do not bring the device up after non-fatal error Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 490/518] net/sched: accept TCA_STAB only for root qdisc Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 491/518] net: ibm: emac: mal: fix wrong goto Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 492/518] sctp: ensure sk_state is set to CLOSED if hashing fails in sctp_listen_start Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 493/518] net: Add l3mdev index to flow struct and avoid oif reset for port devices Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 494/518] netfilter: rpfilter/fib: Populate flowic_l3mdev field Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 495/518] netfilter: rpfilter/fib: Set ->flowic_uid correctly for user namespaces Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 496/518] netfilter: fib: check correct rtable in vrf setups Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 497/518] ppp: fix ppp_async_encode() illegal access Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 498/518] slip: make slhc_remember() more robust against malicious packets Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 499/518] resource: fix region_intersects() vs add_memory_driver_managed() Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 500/518] hwmon: (tmp513) Add missing dependency on REGMAP_I2C Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 501/518] hwmon: (adm9240) " Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 502/518] HID: plantronics: Workaround for an unexcepted opposite volume key Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 503/518] Revert "usb: yurex: Replace snprintf() with the safer scnprintf() variant" Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 504/518] usb: dwc3: core: Stop processing of pending events if controller is halted Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 505/518] usb: xhci: Fix problem with xhci resume from suspend Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 506/518] usb: storage: ignore bogus device raised by JieLi BR21 USB sound chip Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 507/518] hid: intel-ish-hid: Fix uninitialized variable rv in ish_fw_xfer_direct_dma Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 508/518] net: Fix an unsafe loop on the list Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 509/518] net: dsa: lan9303: ensure chip reset and wait for READY status Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 510/518] nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy error Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 511/518] net: geneve: add missing netlink policy and size for IFLA_GENEVE_INNER_PROTO_INHERIT Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 512/518] xfrm: Pass flowi_oif or l3mdev as oif to xfrm_dst_lookup Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 513/518] net: Handle l3mdev in ip_tunnel_init_flow Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 514/518] net: seg6: fix seg6_lookup_any_nexthop() to handle VRFs using flowi_l3mdev Greg Kroah-Hartman
2024-10-15 12:46 ` [PATCH 5.10 515/518] net: vrf: determine the dst using the original ifindex for multicast Greg Kroah-Hartman
2024-10-15 12:47 ` [PATCH 5.10 516/518] netfilter: ip6t_rpfilter: Fix regression with VRF interfaces Greg Kroah-Hartman
2024-10-15 12:47 ` [PATCH 5.10 517/518] ext4: fix warning in ext4_dio_write_end_io() Greg Kroah-Hartman
2024-10-15 12:47 ` [PATCH 5.10 518/518] RDMA/hns: Fix uninitialized variable Greg Kroah-Hartman
2024-10-15 13:52 ` [PATCH 5.10 000/518] 5.10.227-rc1 review Naresh Kamboju
2024-10-17 9:32 ` Greg Kroah-Hartman
2024-10-15 16:58 ` Florian Fainelli
2024-10-16 10:01 ` Jon Hunter
2024-10-17 13:10 ` Muhammad Usama Anjum
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=20241015123934.065019192@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=akpm@linux-foundation.org \
--cc=mark.rutland@arm.com \
--cc=mathieu.desnoyers@efficios.com \
--cc=meted@linux.ibm.com \
--cc=mhiramat@kernel.org \
--cc=patches@lists.linux.dev \
--cc=rostedt@goodmis.org \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=svens@linux.ibm.com \
--cc=tim.c.chen@linux.intel.com \
--cc=vdonnefort@google.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 NNTP newsgroup(s).