linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Florian Fainelli <f.fainelli@gmail.com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 180/287] tools/thermal: Fix possible path truncations
Date: Tue, 23 Aug 2022 10:25:49 +0200	[thread overview]
Message-ID: <20220823080106.841588426@linuxfoundation.org> (raw)
In-Reply-To: <20220823080100.268827165@linuxfoundation.org>

From: Florian Fainelli <f.fainelli@gmail.com>

[ Upstream commit 6c58cf40e3a1d2f47c09d3489857e9476316788a ]

A build with -D_FORTIFY_SOURCE=2 enabled will produce the following warnings:

sysfs.c:63:30: warning: '%s' directive output may be truncated writing up to 255 bytes into a region of size between 0 and 255 [-Wformat-truncation=]
  snprintf(filepath, 256, "%s/%s", path, filename);
                              ^~
Bump up the buffer to PATH_MAX which is the limit and account for all of
the possible NUL and separators that could lead to exceeding the
allocated buffer sizes.

Fixes: 94f69966faf8 ("tools/thermal: Introduce tmon, a tool for thermal subsystem")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 tools/thermal/tmon/sysfs.c | 24 +++++++++++++-----------
 1 file changed, 13 insertions(+), 11 deletions(-)

diff --git a/tools/thermal/tmon/sysfs.c b/tools/thermal/tmon/sysfs.c
index 18f523557983..1b17cbc54c9d 100644
--- a/tools/thermal/tmon/sysfs.c
+++ b/tools/thermal/tmon/sysfs.c
@@ -22,6 +22,7 @@
 #include <stdint.h>
 #include <dirent.h>
 #include <libintl.h>
+#include <limits.h>
 #include <ctype.h>
 #include <time.h>
 #include <syslog.h>
@@ -42,9 +43,9 @@ int sysfs_set_ulong(char *path, char *filename, unsigned long val)
 {
 	FILE *fd;
 	int ret = -1;
-	char filepath[256];
+	char filepath[PATH_MAX + 2]; /* NUL and '/' */
 
-	snprintf(filepath, 256, "%s/%s", path, filename);
+	snprintf(filepath, sizeof(filepath), "%s/%s", path, filename);
 
 	fd = fopen(filepath, "w");
 	if (!fd) {
@@ -66,9 +67,9 @@ static int sysfs_get_ulong(char *path, char *filename, unsigned long *p_ulong)
 {
 	FILE *fd;
 	int ret = -1;
-	char filepath[256];
+	char filepath[PATH_MAX + 2]; /* NUL and '/' */
 
-	snprintf(filepath, 256, "%s/%s", path, filename);
+	snprintf(filepath, sizeof(filepath), "%s/%s", path, filename);
 
 	fd = fopen(filepath, "r");
 	if (!fd) {
@@ -85,9 +86,9 @@ static int sysfs_get_string(char *path, char *filename, char *str)
 {
 	FILE *fd;
 	int ret = -1;
-	char filepath[256];
+	char filepath[PATH_MAX + 2]; /* NUL and '/' */
 
-	snprintf(filepath, 256, "%s/%s", path, filename);
+	snprintf(filepath, sizeof(filepath), "%s/%s", path, filename);
 
 	fd = fopen(filepath, "r");
 	if (!fd) {
@@ -208,8 +209,8 @@ static int find_tzone_cdev(struct dirent *nl, char *tz_name,
 {
 	unsigned long trip_instance = 0;
 	char cdev_name_linked[256];
-	char cdev_name[256];
-	char cdev_trip_name[256];
+	char cdev_name[PATH_MAX];
+	char cdev_trip_name[PATH_MAX];
 	int cdev_id;
 
 	if (nl->d_type == DT_LNK) {
@@ -222,7 +223,8 @@ static int find_tzone_cdev(struct dirent *nl, char *tz_name,
 			return -EINVAL;
 		}
 		/* find the link to real cooling device record binding */
-		snprintf(cdev_name, 256, "%s/%s", tz_name, nl->d_name);
+		snprintf(cdev_name, sizeof(cdev_name) - 2, "%s/%s",
+			 tz_name, nl->d_name);
 		memset(cdev_name_linked, 0, sizeof(cdev_name_linked));
 		if (readlink(cdev_name, cdev_name_linked,
 				sizeof(cdev_name_linked) - 1) != -1) {
@@ -235,8 +237,8 @@ static int find_tzone_cdev(struct dirent *nl, char *tz_name,
 			/* find the trip point in which the cdev is binded to
 			 * in this tzone
 			 */
-			snprintf(cdev_trip_name, 256, "%s%s", nl->d_name,
-				"_trip_point");
+			snprintf(cdev_trip_name, sizeof(cdev_trip_name) - 1,
+				"%s%s", nl->d_name, "_trip_point");
 			sysfs_get_ulong(tz_name, cdev_trip_name,
 					&trip_instance);
 			/* validate trip point range, e.g. trip could return -1
-- 
2.35.1




  parent reply	other threads:[~2022-08-23 10:48 UTC|newest]

Thread overview: 298+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-23  8:22 [PATCH 4.19 000/287] 4.19.256-rc1 review Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 001/287] Makefile: link with -z noexecstack --no-warn-rwx-segments Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 002/287] x86: link vdso and boot " Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 003/287] ALSA: bcd2000: Fix a UAF bug on the error path of probing Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 004/287] wifi: mac80211_hwsim: fix race condition in pending packet Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 005/287] wifi: mac80211_hwsim: add back erroneously removed cast Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 006/287] wifi: mac80211_hwsim: use 32-bit skb cookie Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 007/287] add barriers to buffer_uptodate and set_buffer_uptodate Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 008/287] HID: wacom: Dont register pad_input for touch switch Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 009/287] KVM: SVM: Dont BUG if userspace injects an interrupt with GIF=0 Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 4.19 010/287] KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 011/287] KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 012/287] ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 013/287] ALSA: hda/cirrus - support for iMac 12,1 model Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 014/287] tty: vt: initialize unicode screen buffer Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 015/287] vfs: Check the truncate maximum size in inode_newsize_ok() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 016/287] fs: Add missing umask strip in vfs_tmpfile Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 017/287] thermal: sysfs: Fix cooling_device_stats_setup() error code path Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 018/287] fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 019/287] usbnet: Fix linkwatch use-after-free on disconnect Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 020/287] ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 021/287] parisc: Fix device names in /proc/iomem Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 022/287] drm/nouveau: fix another off-by-one in nvbios_addr Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 023/287] drm/amdgpu: Check BOs requested pinning domains against its preferred_domains Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 024/287] bpf: Verifer, adjust_scalar_min_max_vals to always call update_reg_bounds() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 025/287] selftests/bpf: Fix test_align verifier log patterns Greg Kroah-Hartman
2022-08-24 16:13   ` Jean-Philippe Brucker
2022-08-24 16:20     ` Greg Kroah-Hartman
2022-08-25 10:11     ` Ovidiu Panait
2022-08-23  8:23 ` [PATCH 4.19 026/287] selftests/bpf: Fix "dubious pointer arithmetic" test Greg Kroah-Hartman
2022-08-23  9:58   ` Jean-Philippe Brucker
2022-08-23 11:12     ` Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 027/287] iio: light: isl29028: Fix the warning in isl29028_remove() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 028/287] fuse: limit nsec Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 029/287] serial: mvebu-uart: uart2 error bits clearing Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 030/287] md-raid10: fix KASAN warning Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 031/287] ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 032/287] PCI: Add defines for normal and subtractive PCI bridges Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 033/287] powerpc/fsl-pci: Fix Class Code of PCIe Root Port Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 034/287] powerpc/powernv: Avoid crashing if rng is NULL Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 035/287] MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 036/287] USB: HCD: Fix URB giveback issue in tasklet function Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 037/287] netfilter: nf_tables: do not allow SET_ID to refer to another table Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 038/287] netfilter: nf_tables: fix null deref due to zeroed list head Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 039/287] arm64: Do not forget syscall when starting a new thread Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 040/287] arm64: fix oops in concurrently setting insn_emulation sysctls Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 041/287] ext2: Add more validity checks for inode counts Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 042/287] ARM: dts: imx6ul: add missing properties for sram Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 043/287] ARM: dts: imx6ul: change operating-points to uint32-matrix Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 044/287] ARM: dts: imx6ul: fix lcdif node compatible Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 045/287] ARM: dts: imx6ul: fix qspi " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 046/287] ARM: OMAP2+: display: Fix refcount leak bug Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 047/287] ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 048/287] ACPI: PM: save NVS memory for Lenovo G40-45 Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 049/287] ACPI: LPSS: Fix missing check in register_device_clock() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 050/287] arm64: dts: qcom: ipq8074: fix NAND node name Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 051/287] PM: hibernate: defer device probing when resuming from hibernation Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 052/287] selinux: Add boundary check in put_entry() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 053/287] ARM: findbit: fix overflowing offset Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 054/287] meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 055/287] ARM: bcm: Fix refcount leak in bcm_kona_smc_init Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 056/287] x86/pmem: Fix platform-device leak in error path Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 057/287] ARM: dts: ast2500-evb: fix board compatible Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 058/287] soc: fsl: guts: machine variable might be unset Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 059/287] ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 060/287] cpufreq: zynq: Fix refcount leak in zynq_get_revision Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 061/287] ARM: dts: qcom: pm8841: add required thermal-sensor-cells Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 062/287] bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 063/287] arm64: dts: qcom: msm8916: Fix typo in pronto remoteproc node Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 064/287] regulator: of: Fix refcount leak bug in of_get_regulation_constraints() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 065/287] nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 066/287] thermal/tools/tmon: Include pthread and time headers in tmon.h Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 067/287] dm: return early from dm_pr_call() if DM device is suspended Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 068/287] ath10k: do not enforce interrupt trigger type Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 069/287] wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 4.19 070/287] drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 071/287] drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 072/287] i2c: Fix a potential use after free Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 073/287] media: tw686x: Register the irq at the end of probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 074/287] ath9k: fix use-after-free in ath9k_hif_usb_rx_cb Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 075/287] wifi: iwlegacy: 4965: fix potential off-by-one overflow in il4965_rs_fill_link_cmd() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 076/287] drm: bridge: adv7511: Add check for mipi_dsi_driver_register Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 077/287] media: hdpvr: fix error value returns in hdpvr_read Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 078/287] drm/vc4: dsi: Correct DSI divider calculations Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 079/287] drm/rockchip: vop: Dont crash for invalid duplicate_state() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 080/287] drm/mediatek: dpi: Remove output format of YUV Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 081/287] drm: bridge: sii8620: fix possible off-by-one Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 082/287] drm/msm/mdp5: Fix global state lock backoff Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 083/287] crypto: hisilicon - Kunpeng916 crypto driver dont sleep when in softirq Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 084/287] media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 085/287] mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 086/287] tcp: make retransmitted SKB fit into the send window Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 087/287] libbpf: Fix the name of a reused map Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 088/287] selftests: timers: valid-adjtimex: build fix for newer toolchains Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 089/287] selftests: timers: clocksource-switch: fix passing errors from child Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 090/287] fs: check FMODE_LSEEK to control internal pipe splicing Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 091/287] wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 092/287] wifi: p54: Fix an error handling path in p54spi_probe() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 093/287] wifi: p54: add missing parentheses in p54_flush() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 094/287] can: pch_can: do not report txerr and rxerr during bus-off Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 095/287] can: rcar_can: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 096/287] can: sja1000: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 097/287] can: hi311x: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 098/287] can: sun4i_can: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 099/287] can: kvaser_usb_hydra: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 100/287] can: kvaser_usb_leaf: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 101/287] can: usb_8dev: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 102/287] can: error: specify the values of data[5..7] of CAN error frames Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 103/287] can: pch_can: pch_can_error(): initialize errc before using it Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 104/287] Bluetooth: hci_intel: Add check for platform_driver_register Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 105/287] i2c: cadence: Support PEC for SMBus block read Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 106/287] i2c: mux-gpmux: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 107/287] wifi: wil6210: debugfs: fix uninitialized variable use in `wil_write_file_wmi()` Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 108/287] wifi: libertas: Fix possible refcount leak in if_usb_probe() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 109/287] net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 110/287] netdevsim: Avoid allocation warnings triggered from user space Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 111/287] net: rose: fix netdev reference changes Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 112/287] dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 113/287] clk: renesas: r9a06g032: Fix UART clkgrp bitsel Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 114/287] mtd: maps: Fix refcount leak in of_flash_probe_versatile Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 115/287] mtd: maps: Fix refcount leak in ap_flash_init Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 116/287] HID: cp2112: prevent a buffer overflow in cp2112_xfer() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 117/287] mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 118/287] mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()s error path Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 119/287] fpga: altera-pr-ip: fix unsigned comparison with less than zero Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 120/287] usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 121/287] usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 122/287] misc: rtsx: Fix an error handling path in rtsx_pci_probe() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 123/287] clk: qcom: ipq8074: fix NSS port frequency tables Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 124/287] clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 125/287] soundwire: bus_type: fix remove and shutdown support Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 126/287] staging: rtl8192u: Fix sleep in atomic context bug in dm_fsync_timer_callback Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 127/287] mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 128/287] memstick/ms_block: Fix some incorrect memory allocation Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 129/287] memstick/ms_block: Fix a memory leak Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 4.19 130/287] mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 131/287] PCI/portdrv: Dont disable AER reporting in get_port_device_capability() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 132/287] scsi: smartpqi: Fix DMA direction for RAID requests Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 133/287] usb: gadget: udc: amd5536 depends on HAS_DMA Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 134/287] RDMA/hfi1: fix potential memory leak in setup_base_ctxt() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 135/287] gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 136/287] mmc: cavium-octeon: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 137/287] mmc: cavium-thunderx: " Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 138/287] HID: alps: Declare U1_UNICORN_LEGACY support Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 139/287] USB: serial: fix tty-port initialized comments Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 140/287] platform/olpc: Fix uninitialized data in debugfs write Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 141/287] mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 142/287] RDMA/rxe: Fix error unwind in rxe_create_qp() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 143/287] null_blk: fix ida error handling in null_add_dev() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 144/287] ext4: recover csum seed of tmp_inode after migrating to extents Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 145/287] jbd2: fix assertion jh->b_frozen_data == NULL failure when journal aborted Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 146/287] ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 147/287] ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 148/287] ASoC: codecs: da7210: add check for i2c_add_driver Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 149/287] ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 150/287] serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 151/287] profiling: fix shift too large makes kernel panic Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 152/287] tty: n_gsm: fix non flow control frames during mux flow off Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 153/287] tty: n_gsm: fix packet re-transmission without open control channel Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 154/287] tty: n_gsm: fix race condition in gsmld_write() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 155/287] remoteproc: qcom: wcnss: Fix handling of IRQs Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 156/287] vfio/ccw: Do not change FSM state in subchannel event Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 157/287] tty: n_gsm: fix wrong T1 retry count handling Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 158/287] tty: n_gsm: fix DM command Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 159/287] tty: n_gsm: fix missing corner cases in gsmld_poll() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 160/287] iommu/exynos: Handle failed IOMMU device registration properly Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 161/287] rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 162/287] kfifo: fix kfifo_to_user() return type Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 163/287] mfd: t7l66xb: Drop platform disable callback Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 164/287] iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 165/287] s390/zcore: fix race when reading from hardware system area Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 166/287] ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 167/287] video: fbdev: amba-clcd: Fix refcount leak bugs Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 168/287] video: fbdev: sis: fix typos in SiS_GetModeID() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 169/287] powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 170/287] powerpc/pci: Prefer PCI domain assignment via DT linux,pci-domain and alias Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 171/287] powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 172/287] powerpc/xive: Fix refcount leak in xive_get_max_prio Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 173/287] powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 174/287] kprobes: Forbid probing on trampoline and BPF code areas Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 175/287] powerpc/pci: Fix PHB numbering when using opal-phbid Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 176/287] genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 177/287] scripts/faddr2line: Fix vmlinux detection on arm64 Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 178/287] x86/numa: Use cpumask_available instead of hardcoded NULL check Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 179/287] video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() Greg Kroah-Hartman
2022-08-23  8:25 ` Greg Kroah-Hartman [this message]
2022-08-23  8:25 ` [PATCH 4.19 181/287] video: fbdev: vt8623fb: Check the size of screen before memset_io() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 182/287] video: fbdev: arkfb: " Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 183/287] video: fbdev: s3fb: " Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 184/287] scsi: zfcp: Fix missing auto port scan and thus missing target ports Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 185/287] x86/olpc: fix logical not is only applied to the left hand side Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 186/287] spmi: trace: fix stack-out-of-bound access in SPMI tracing functions Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 187/287] ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 188/287] ext4: make sure ext4_append() always allocates new block Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 189/287] ext4: fix use-after-free in ext4_xattr_set_entry Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 4.19 190/287] ext4: update s_overhead_clusters in the superblock during an on-line resize Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 191/287] ext4: fix extent status tree race in writeback error recovery path Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 192/287] ext4: correct max_inline_xattr_value_size computing Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 193/287] ext4: correct the misjudgment in ext4_iget_extra_inode Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 194/287] intel_th: pci: Add Raptor Lake-S CPU support Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 195/287] intel_th: pci: Add Raptor Lake-S PCH support Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 196/287] intel_th: pci: Add Meteor Lake-P support Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 197/287] dm raid: fix address sanitizer warning in raid_resume Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 198/287] dm raid: fix address sanitizer warning in raid_status Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 199/287] dm writecache: set a default MAX_WRITEBACK_JOBS Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 200/287] ACPI: CPPC: Do not prevent CPPC from working in the future Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 201/287] net_sched: cls_route: remove from list when handle is 0 Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 202/287] btrfs: reject log replay if there is unsupported RO compat flag Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 203/287] KVM: Add infrastructure and macro to mark VM as bugged Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 204/287] KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 205/287] KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 206/287] tcp: fix over estimation in sk_forced_mem_schedule() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 207/287] scsi: sg: Allow waiting for commands to complete on removed device Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 208/287] Revert "net: usb: ax88179_178a needs FLAG_SEND_ZLP" Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 209/287] Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 210/287] net/9p: Initialize the iounit field during fid creation Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 211/287] net_sched: cls_route: disallow handle of 0 Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 212/287] firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 213/287] powerpc/mm: Split dump_pagelinuxtables flag_array table Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 214/287] powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 215/287] ALSA: info: Fix llseek return value when using callback Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 216/287] rds: add missing barrier to release_refill Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 217/287] ata: libata-eh: Add missing command name Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 218/287] mmc: pxamci: Fix another error handling path in pxamci_probe() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 219/287] mmc: pxamci: Fix an " Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 220/287] btrfs: fix lost error handling when looking up extended ref on log replay Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 221/287] tracing: Have filter accept "common_cpu" to be consistent Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 222/287] can: ems_usb: fix clangs -Wunaligned-access warning Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 223/287] apparmor: fix quiet_denied for file rules Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 224/287] apparmor: fix absroot causing audited secids to begin with = Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 225/287] apparmor: Fix failed mount permission check error message Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 226/287] apparmor: fix aa_label_asxprint return check Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 227/287] apparmor: fix overlapping attachment computation Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 228/287] apparmor: fix reference count leak in aa_pivotroot() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 229/287] apparmor: Fix memleak in aa_simple_write_to_buffer() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 230/287] NFSv4: Fix races in the legacy idmapper upcall Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 231/287] NFSv4.1: RECLAIM_COMPLETE must handle EACCES Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 232/287] NFSv4/pnfs: Fix a use-after-free bug in open Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 233/287] SUNRPC: Reinitialise the backchannel request buffers before reuse Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 234/287] pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 235/287] pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 236/287] ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 237/287] geneve: do not use RT_TOS for IPv6 flowlabel Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 238/287] vsock: Fix memory leak in vsock_connect() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 239/287] vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 240/287] tools build: Switch to new openssl API for test-libcrypto Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 241/287] NTB: ntb_tool: uninitialized heap data in tool_fn_write() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 242/287] xen/xenbus: fix return type in xenbus_file_read() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 243/287] atm: idt77252: fix use-after-free bugs caused by tst_timer Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 244/287] nios2: page fault et.al. are *not* restartable syscalls Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 245/287] nios2: dont leave NULLs in sys_call_table[] Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 246/287] nios2: traced syscall does need to check the syscall number Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 247/287] nios2: fix syscall restart checks Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 248/287] nios2: restarts apply only to the first sigframe we build Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 249/287] nios2: add force_successful_syscall_return() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 4.19 250/287] netfilter: nf_tables: really skip inactive sets when allocating name Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 251/287] powerpc/pci: Fix get_phb_number() locking Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 252/287] i40e: Fix to stop tx_timeout recovery if GLOBR fails Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 253/287] fec: Fix timer capture timing in `fec_ptp_enable_pps()` Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 254/287] igb: Add lock to avoid data race Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 255/287] gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 256/287] locking/atomic: Make test_and_*_bit() ordered on failure Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 257/287] drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 258/287] PCI: Add ACS quirk for Broadcom BCM5750x NICs Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 259/287] irqchip/tegra: Fix overflow implicit truncation warnings Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 260/287] usb: host: ohci-ppc-of: Fix refcount leak bug Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 261/287] usb: renesas: " Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 262/287] vboxguest: Do not use devm for irq Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 263/287] clk: qcom: ipq8074: dont disable gcc_sleep_clk_src Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 264/287] gadgetfs: ep_io - wait until IRQ finishes Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 265/287] cxl: Fix a memory leak in an error handling path Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 266/287] dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 267/287] drivers:md:fix a potential use-after-free bug Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 268/287] ext4: avoid remove directory when directory is corrupted Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 269/287] ext4: avoid resizing to a partial cluster size Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 270/287] lib/list_debug.c: Detect uninitialized lists Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 271/287] tty: serial: Fix refcount leak bug in ucc_uart.c Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 272/287] vfio: Clear the caps->buf to NULL after free Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 273/287] mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 274/287] riscv: mmap with PROT_WRITE but no PROT_READ is invalid Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 275/287] RISC-V: Add fast call path of crash_kexec() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 276/287] watchdog: export lockup_detector_reconfigure Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 277/287] ALSA: core: Add async signal helpers Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 278/287] ALSA: timer: Use deferred fasync helper Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 279/287] f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 280/287] smb3: check xattr value length earlier Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 281/287] powerpc/64: Init jump labels before parse_early_param() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 282/287] video: fbdev: i740fb: Check the argument of i740_calc_vclk() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 283/287] MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 284/287] tee: add overflow check in register_shm_helper() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 285/287] tracing/probes: Have kprobes and uprobes use $COMM too Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 286/287] btrfs: only write the sectors in the vertical stripe which has data stripes Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 4.19 287/287] btrfs: raid56: dont trust any cached sector in __raid56_parity_recover() Greg Kroah-Hartman
2022-08-23 10:09 ` [PATCH 4.19 000/287] 4.19.256-rc1 review Pavel Machek
2022-08-23 21:01 ` Guenter Roeck
2022-08-23 22:17 ` Shuah Khan
2022-08-24  6:43 ` Naresh Kamboju
2022-08-24 11:03 ` Sudip Mukherjee (Codethink)

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=20220823080106.841588426@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=f.fainelli@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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