Archive-only list for patches
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	"Jiri Slaby (SUSE)" <jirislaby@kernel.org>,
	Geert Uytterhoeven <geert+renesas@glider.be>,
	Helge Deller <deller@gmx.de>,
	"James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>,
	Daniel Vetter <daniel@ffwll.ch>,
	linux-fbdev@vger.kernel.org, dri-devel@lists.freedesktop.org,
	linux-parisc@vger.kernel.org, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 053/160] tty: vt: make init parameter of consw::con_init() a bool
Date: Tue,  8 Jul 2025 18:21:30 +0200	[thread overview]
Message-ID: <20250708162233.011657193@linuxfoundation.org> (raw)
In-Reply-To: <20250708162231.503362020@linuxfoundation.org>

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

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

From: Jiri Slaby (SUSE) <jirislaby@kernel.org>

[ Upstream commit dae3e6b6180f1a2394b984c596d39ed2c57d25fe ]

The 'init' parameter of consw::con_init() is true for the first call of
the hook on a particular console. So make the parameter a bool.

And document the hook.

Signed-off-by: "Jiri Slaby (SUSE)" <jirislaby@kernel.org>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Helge Deller <deller@gmx.de>
Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: linux-fbdev@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
Cc: linux-parisc@vger.kernel.org
Tested-by: Helge Deller <deller@gmx.de> # parisc STI console
Link: https://lore.kernel.org/r/20240122110401.7289-21-jirislaby@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Stable-dep-of: 03bcbbb3995b ("dummycon: Trigger redraw when switching consoles with deferred takeover")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/tty/vt/vt.c                 | 8 ++++----
 drivers/video/console/dummycon.c    | 2 +-
 drivers/video/console/mdacon.c      | 2 +-
 drivers/video/console/newport_con.c | 2 +-
 drivers/video/console/sticon.c      | 2 +-
 drivers/video/console/vgacon.c      | 4 ++--
 drivers/video/fbdev/core/fbcon.c    | 2 +-
 include/linux/console.h             | 4 +++-
 8 files changed, 14 insertions(+), 12 deletions(-)

diff --git a/drivers/tty/vt/vt.c b/drivers/tty/vt/vt.c
index bd125ea5c51f4..0e3d7d8f5e75a 100644
--- a/drivers/tty/vt/vt.c
+++ b/drivers/tty/vt/vt.c
@@ -1050,7 +1050,7 @@ int vc_cons_allocated(unsigned int i)
 	return (i < MAX_NR_CONSOLES && vc_cons[i].d);
 }
 
-static void visual_init(struct vc_data *vc, int num, int init)
+static void visual_init(struct vc_data *vc, int num, bool init)
 {
 	/* ++Geert: vc->vc_sw->con_init determines console size */
 	if (vc->vc_sw)
@@ -1134,7 +1134,7 @@ int vc_allocate(unsigned int currcons)	/* return 0 on success */
 	vc->port.ops = &vc_port_ops;
 	INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
 
-	visual_init(vc, currcons, 1);
+	visual_init(vc, currcons, true);
 
 	if (!*vc->vc_uni_pagedir_loc)
 		con_set_default_unimap(vc);
@@ -3521,7 +3521,7 @@ static int __init con_init(void)
 		vc_cons[currcons].d = vc = kzalloc(sizeof(struct vc_data), GFP_NOWAIT);
 		INIT_WORK(&vc_cons[currcons].SAK_work, vc_SAK);
 		tty_port_init(&vc->port);
-		visual_init(vc, currcons, 1);
+		visual_init(vc, currcons, true);
 		/* Assuming vc->vc_{cols,rows,screenbuf_size} are sane here. */
 		vc->vc_screenbuf = kzalloc(vc->vc_screenbuf_size, GFP_NOWAIT);
 		vc_init(vc, vc->vc_rows, vc->vc_cols,
@@ -3692,7 +3692,7 @@ static int do_bind_con_driver(const struct consw *csw, int first, int last,
 		old_was_color = vc->vc_can_do_color;
 		vc->vc_sw->con_deinit(vc);
 		vc->vc_origin = (unsigned long)vc->vc_screenbuf;
-		visual_init(vc, i, 0);
+		visual_init(vc, i, false);
 		set_origin(vc);
 		update_attr(vc);
 
diff --git a/drivers/video/console/dummycon.c b/drivers/video/console/dummycon.c
index f1711b2f9ff05..9a19eb72a18b9 100644
--- a/drivers/video/console/dummycon.c
+++ b/drivers/video/console/dummycon.c
@@ -97,7 +97,7 @@ static const char *dummycon_startup(void)
     return "dummy device";
 }
 
-static void dummycon_init(struct vc_data *vc, int init)
+static void dummycon_init(struct vc_data *vc, bool init)
 {
     vc->vc_can_do_color = 1;
     if (init) {
diff --git a/drivers/video/console/mdacon.c b/drivers/video/console/mdacon.c
index ef29b321967f0..c5b255c968794 100644
--- a/drivers/video/console/mdacon.c
+++ b/drivers/video/console/mdacon.c
@@ -352,7 +352,7 @@ static const char *mdacon_startup(void)
 	return "MDA-2";
 }
 
-static void mdacon_init(struct vc_data *c, int init)
+static void mdacon_init(struct vc_data *c, bool init)
 {
 	c->vc_complement_mask = 0x0800;	 /* reverse video */
 	c->vc_display_fg = &mda_display_fg;
diff --git a/drivers/video/console/newport_con.c b/drivers/video/console/newport_con.c
index d9c682ae03926..4b7161a81b2f6 100644
--- a/drivers/video/console/newport_con.c
+++ b/drivers/video/console/newport_con.c
@@ -324,7 +324,7 @@ static const char *newport_startup(void)
 	return NULL;
 }
 
-static void newport_init(struct vc_data *vc, int init)
+static void newport_init(struct vc_data *vc, bool init)
 {
 	int cols, rows;
 
diff --git a/drivers/video/console/sticon.c b/drivers/video/console/sticon.c
index f304163e87e99..10302df885147 100644
--- a/drivers/video/console/sticon.c
+++ b/drivers/video/console/sticon.c
@@ -272,7 +272,7 @@ static int sticon_font_set(struct vc_data *vc, struct console_font *font,
 	return sticon_set_font(vc, font);
 }
 
-static void sticon_init(struct vc_data *c, int init)
+static void sticon_init(struct vc_data *c, bool init)
 {
     struct sti_struct *sti = sticon_sti;
     int vc_cols, vc_rows;
diff --git a/drivers/video/console/vgacon.c b/drivers/video/console/vgacon.c
index 9bfe451050209..a9777fd38ad92 100644
--- a/drivers/video/console/vgacon.c
+++ b/drivers/video/console/vgacon.c
@@ -353,7 +353,7 @@ static const char *vgacon_startup(void)
 	return display_desc;
 }
 
-static void vgacon_init(struct vc_data *c, int init)
+static void vgacon_init(struct vc_data *c, bool init)
 {
 	struct uni_pagedict *p;
 
@@ -370,7 +370,7 @@ static void vgacon_init(struct vc_data *c, int init)
 	c->vc_scan_lines = vga_scan_lines;
 	c->vc_font.height = c->vc_cell_height = vga_video_font_height;
 
-	/* set dimensions manually if init != 0 since vc_resize() will fail */
+	/* set dimensions manually if init is true since vc_resize() will fail */
 	if (init) {
 		c->vc_cols = vga_video_num_columns;
 		c->vc_rows = vga_video_num_lines;
diff --git a/drivers/video/fbdev/core/fbcon.c b/drivers/video/fbdev/core/fbcon.c
index a3af7aacfaf11..f47dbba972fbb 100644
--- a/drivers/video/fbdev/core/fbcon.c
+++ b/drivers/video/fbdev/core/fbcon.c
@@ -983,7 +983,7 @@ static const char *fbcon_startup(void)
 	return display_desc;
 }
 
-static void fbcon_init(struct vc_data *vc, int init)
+static void fbcon_init(struct vc_data *vc, bool init)
 {
 	struct fb_info *info;
 	struct fbcon_ops *ops;
diff --git a/include/linux/console.h b/include/linux/console.h
index a97f277cfdfa3..9258cb8e0841e 100644
--- a/include/linux/console.h
+++ b/include/linux/console.h
@@ -34,6 +34,8 @@ enum vc_intensity;
 /**
  * struct consw - callbacks for consoles
  *
+ * @con_init:   initialize the console on @vc. @init is true for the very first
+ *		call on this @vc.
  * @con_scroll: move lines from @top to @bottom in direction @dir by @lines.
  *		Return true if no generic handling should be done.
  *		Invoked by csi_M and printing to the console.
@@ -44,7 +46,7 @@ enum vc_intensity;
 struct consw {
 	struct module *owner;
 	const char *(*con_startup)(void);
-	void	(*con_init)(struct vc_data *vc, int init);
+	void	(*con_init)(struct vc_data *vc, bool init);
 	void	(*con_deinit)(struct vc_data *vc);
 	void	(*con_clear)(struct vc_data *vc, int sy, int sx, int height,
 			int width);
-- 
2.39.5




  parent reply	other threads:[~2025-07-08 16:58 UTC|newest]

Thread overview: 172+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-07-08 16:20 [PATCH 5.15 000/160] 5.15.187-rc1 review Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 001/160] cifs: Fix cifs_query_path_info() for Windows NT servers Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 002/160] NFSv4: Always set NLINK even if the server doesnt support it Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 003/160] NFSv4.2: fix listxattr to return selinux security label Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 004/160] mailbox: Not protect module_put with spin_lock_irqsave Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 005/160] mfd: max14577: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 006/160] leds: multicolor: Fix intensity setting while SW blinking Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 007/160] hwmon: (pmbus/max34440) Fix support for max34451 Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 008/160] ksmbd: allow a filename to contain special characters on SMB3.1.1 posix extension Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 009/160] dmaengine: xilinx_dma: Set dma_device directions Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 010/160] md/md-bitmap: fix dm-raid max_write_behind setting Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 011/160] bcache: fix NULL pointer in cache_set_flush() Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 012/160] iio: pressure: zpa2326: Use aligned_s64 for the timestamp Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 013/160] um: Add cmpxchg8b_emu and checksum functions to asm-prototypes.h Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 014/160] coresight: Only check bottom two claim bits Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 015/160] usb: dwc2: also exit clock_gating when stopping udc while suspended Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 016/160] usb: potential integer overflow in usbg_make_tpg() Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 017/160] tty: serial: uartlite: register uart driver in init Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 018/160] usb: common: usb-conn-gpio: use a unique name for usb connector device Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 019/160] usb: Add checks for snprintf() calls in usb_alloc_dev() Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 020/160] usb: cdc-wdm: avoid setting WDM_READ for ZLP-s Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 021/160] usb: typec: displayport: Receive DP Status Update NAK request exit dp altmode Greg Kroah-Hartman
2025-07-08 16:20 ` [PATCH 5.15 022/160] ALSA: hda: Ignore unsol events for cards being shut down Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 023/160] ALSA: hda: Add new pci id for AMD GPU display HD audio controller Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 024/160] ALSA: usb-audio: Add a quirk for Lenovo Thinkpad Thunderbolt 3 dock Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 025/160] ceph: fix possible integer overflow in ceph_zero_objects() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 026/160] ovl: Check for NULL d_inode() in ovl_dentry_upper() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 027/160] fs/jfs: consolidate sanity checking in dbMount Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 028/160] jfs: validate AG parameters in dbMount() to prevent crashes Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 029/160] media: davinci: vpif: Fix memory leak in probe error path Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 030/160] media: omap3isp: use sgtable-based scatterlist wrappers Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 031/160] clk: ti: am43xx: Add clkctrl data for am43xx ADC1 Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 032/160] media: imx-jpeg: Drop the first error frames Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 033/160] regulator: core: Allow drivers to define their init data as const Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 034/160] regulator: Add devm helpers for get and enable Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 035/160] ASoC: codecs: wcd9335: Handle nicer probe deferral and simplify with dev_err_probe() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 036/160] ASoC: codec: wcd9335: Convert to GPIO descriptors Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 037/160] ASoC: codecs: wcd9335: Fix missing free of regulator supplies Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 038/160] f2fs: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 039/160] fbcon: Use delayed work for cursor Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 040/160] fbcon: Extract fbcon_open/release helpers Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 041/160] fbcon: move more common code into fb_open() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 042/160] fbcon: use lock_fb_info in fbcon_open/release Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 043/160] fbcon: Move console_lock for register/unlink/unregister Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 044/160] fbdev: Fix do_register_framebuffer to prevent null-ptr-deref in fb_videomode_to_var Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 045/160] Drivers: hv: Rename alloced to allocated Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 046/160] Drivers: hv: vmbus: Add utility function for querying ring size Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 047/160] uio_hv_generic: Query the ringbuffer size for device Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 048/160] uio_hv_generic: Align ring size to system page Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 049/160] fbcon: delete a few unneeded forward decl Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 050/160] tty/vt: consolemap: rename and document struct uni_pagedir Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 051/160] vgacon: switch vgacon_scrolldelta() and vgacon_restore_screen() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 052/160] vgacon: remove unneeded forward declarations Greg Kroah-Hartman
2025-07-08 16:21 ` Greg Kroah-Hartman [this message]
2025-07-08 16:21 ` [PATCH 5.15 054/160] tty: vt: sanitize arguments of consw::con_clear() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 055/160] tty: vt: make consw::con_switch() return a bool Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 056/160] dummycon: Trigger redraw when switching consoles with deferred takeover Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 057/160] platform/x86: ideapad-laptop: use usleep_range() for EC polling Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 058/160] i2c: tiny-usb: disable zero-length read messages Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 059/160] i2c: robotfuzz-osif: " Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 060/160] s390/pkey: Prevent overflow in size calculation for memdup_user() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 061/160] atm: clip: prevent NULL deref in clip_push() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 062/160] ALSA: usb-audio: Fix out-of-bounds read in snd_usb_get_audioformat_uac3() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 063/160] attach_recursive_mnt(): do not lock the covering tree when sliding something under it Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 064/160] libbpf: Fix null pointer dereference in btf_dump__free on allocation failure Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 065/160] wifi: mac80211: fix beacon interval calculation overflow Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 066/160] af_unix: Dont set -ECONNRESET for consumed OOB skb Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 067/160] vsock/uapi: fix linux/vm_sockets.h userspace compilation errors Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 068/160] um: ubd: Add missing error check in start_io_thread() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 069/160] net: enetc: Correct endianness handling in _enetc_rd_reg64 Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 070/160] atm: Release atm_dev_mutex after removing procfs in atm_dev_deregister() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 071/160] net: selftests: fix TCP packet checksum Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 072/160] staging: rtl8723bs: Avoid memset() in aes_cipher() and aes_decipher() Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 073/160] dt-bindings: serial: 8250: Make clocks and clock-frequency exclusive Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 074/160] Bluetooth: L2CAP: Fix L2CAP MTU negotiation Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 075/160] dm-raid: fix variable in journal device check Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 076/160] btrfs: update superblocks device bytes_used when dropping chunk Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 077/160] HID: wacom: fix memory leak on kobject creation failure Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 078/160] HID: wacom: fix memory leak on sysfs attribute " Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 079/160] HID: wacom: fix kobject reference count leak Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 080/160] drm/tegra: Assign plane type before registration Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 081/160] drm/tegra: Fix a possible null pointer dereference Greg Kroah-Hartman
2025-07-08 16:21 ` [PATCH 5.15 082/160] drm/udl: Unregister device before cleaning up on disconnect Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 083/160] drm/amdkfd: Fix race in GWS queue scheduling Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 084/160] drm/bridge: cdns-dsi: Fix the clock variable for mode_valid() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 085/160] drm/bridge: cdns-dsi: Fix connecting to next bridge Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 086/160] drm/bridge: cdns-dsi: Check return value when getting default PHY config Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 087/160] drm/bridge: cdns-dsi: Wait for Clk and Data Lanes to be ready Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 088/160] drm/amd/display: Add null pointer check for get_first_active_display() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 089/160] PCI: hv: Do not set PCI_COMMAND_MEMORY to reduce VM boot time Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 090/160] media: uvcvideo: Rollback non processed entities on error Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 091/160] s390/entry: Fix last breaking event handling in case of stack corruption Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 092/160] s390: Add -std=gnu11 to decompressor and purgatory CFLAGS Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 093/160] Revert "ipv6: save dontfrag in cork" Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 094/160] arm64: Restrict pagetable teardown to avoid false warning Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 095/160] btrfs: dont drop extent_map for free space inode on write error Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 096/160] ARM: 9354/1: ptrace: Use bitfield helpers Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 097/160] rtc: cmos: use spin_lock_irqsave in cmos_interrupt Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 098/160] vsock/vmci: Clear the vmci transport packet properly when initializing it Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 099/160] mmc: sdhci: Add a helper function for dump register in dynamic debug mode Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 100/160] Revert "mmc: sdhci: Disable SD card clock before changing parameters" Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 101/160] usb: typec: altmodes/displayport: do not index invalid pin_assignments Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 102/160] mtk-sd: Fix a pagefault in dma_unmap_sg() for not prepared data Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 103/160] mtk-sd: Prevent memory corruption from DMA map failure Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 104/160] mtk-sd: reset host->mrq on prepare_data() error Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 105/160] platform/mellanox: mlxbf-tmfifo: fix vring_desc.len assignment Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 106/160] RDMA/mlx5: Initialize obj_event->obj_sub_list before xa_insert Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 107/160] nfs: Clean up /proc/net/rpc/nfs when nfs_fs_proc_net_init() fails Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 108/160] NFSv4/pNFS: Fix a race to wake on NFS_LAYOUT_DRAIN Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 109/160] scsi: qla2xxx: Fix DMA mapping test in qla24xx_get_port_database() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 110/160] scsi: qla4xxx: Fix missing DMA mapping error in qla4xxx_alloc_pdu() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 111/160] scsi: ufs: core: Fix spelling of a sysfs attribute name Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 112/160] RDMA/mlx5: Fix CC counters query for MPV Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 113/160] btrfs: fix missing error handling when searching for inode refs during log replay Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 114/160] drm/exynos: fimd: Guard display clock control with runtime PM calls Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 115/160] spi: spi-fsl-dspi: Clear completion counter before initiating transfer Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 116/160] drm/i915/selftests: Change mock_request() to return error pointers Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 117/160] platform/x86: dell-wmi-sysman: Fix WMI data block retrieval in sysfs callbacks Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 118/160] drm/i915/gt: Fix timeline left held on VMA alloc error Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 119/160] igc: disable L1.2 PCI-E link substate to avoid performance issue Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 120/160] lib: test_objagg: Set error message in check_expect_hints_stats() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 121/160] amd-xgbe: align CL37 AN sequence as per databook Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 122/160] enic: fix incorrect MTU comparison in enic_change_mtu() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 123/160] rose: fix dangling neighbour pointers in rose_rt_device_down() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 124/160] nui: Fix dma_mapping_error() check Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 125/160] net/sched: Always pass notifications when child class becomes empty Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 126/160] drm/msm: Fix a fence leak in submit error path Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 127/160] ALSA: sb: Dont allow changing the DMA mode during operations Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 128/160] ALSA: sb: Force to disable DMAs once when DMA mode is changed Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 129/160] ata: pata_cs5536: fix build on 32-bit UML Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 130/160] powerpc: Fix struct termio related ioctl macros Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 131/160] scsi: target: Fix NULL pointer dereference in core_scsi3_decode_spec_i_port() Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 132/160] wifi: mac80211: drop invalid source address OCB frames Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 133/160] wifi: ath6kl: remove WARN on bad firmware input Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 134/160] ACPICA: Refuse to evaluate a method if arguments are missing Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 135/160] mtd: spinand: fix memory leak of ECC engine conf Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 136/160] rcu: Return early if callback is not specified Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 137/160] mmc: core: sd: Apply BROKEN_SD_DISCARD quirk earlier Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 138/160] regulator: gpio: Add input_supply support in gpio_regulator_config Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 139/160] regulator: gpio: Fix the out-of-bounds access to drvdata::gpiods Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 140/160] drm/v3d: Disable interrupts before resetting the GPU Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 141/160] NFSv4/flexfiles: Fix handling of NFS level errors in I/O Greg Kroah-Hartman
2025-07-08 16:22 ` [PATCH 5.15 142/160] ethernet: atl1: Add missing DMA mapping error checks and count errors Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 143/160] dpaa2-eth: Update dpni_get_single_step_cfg command Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 144/160] dpaa2-eth: Update SINGLE_STEP register access Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 145/160] net: dpaa2-eth: rearrange variable in dpaa2_eth_get_ethtool_stats Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 146/160] dpaa2-eth: fix xdp_rxq_info leak Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 147/160] platform/x86: think-lmi: Fix class device unregistration Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 148/160] platform/x86: dell-wmi-sysman: " Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 149/160] xhci: dbctty: disable ECHO flag by default Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 150/160] xhci: dbc: Flush queued requests before stopping dbc Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 151/160] usb: cdnsp: do not disable slot for disabled slot Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 152/160] i2c/designware: Fix an initialization issue Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 153/160] Logitech C-270 even more broken Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 154/160] platform/x86: think-lmi: Create ksets consecutively Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 155/160] usb: typec: displayport: Fix potential deadlock Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 156/160] x86/bugs: Rename MDS machinery to something more generic Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 157/160] x86/bugs: Add a Transient Scheduler Attacks mitigation Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 158/160] KVM: x86: add support for CPUID leaf 0x80000021 Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 159/160] KVM: SVM: Advertise TSA CPUID bits to guests Greg Kroah-Hartman
2025-07-08 16:23 ` [PATCH 5.15 160/160] x86/process: Move the buffer clearing before MONITOR Greg Kroah-Hartman
2025-07-08 17:20 ` [PATCH 5.15 000/160] 5.15.187-rc1 review Florian Fainelli
2025-07-08 17:23   ` Borislav Petkov
2025-07-08 17:26     ` Florian Fainelli
2025-07-08 17:45       ` Borislav Petkov
2025-07-08 17:51         ` Borislav Petkov
2025-07-08 18:05           ` Greg Kroah-Hartman
2025-07-08 18:04         ` Borislav Petkov
2025-07-08 18:09           ` Greg Kroah-Hartman
2025-07-08 18:37             ` Florian Fainelli
2025-07-08 17:34   ` Greg Kroah-Hartman
2025-07-09 22:12 ` Shuah Khan

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250708162233.011657193@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=James.Bottomley@HansenPartnership.com \
    --cc=daniel@ffwll.ch \
    --cc=deller@gmx.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert+renesas@glider.be \
    --cc=jirislaby@kernel.org \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=linux-parisc@vger.kernel.org \
    --cc=patches@lists.linux.dev \
    --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