All of lore.kernel.org
 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,
	"Javier Martinez Canillas" <javierm@redhat.com>,
	"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
	"Daniel Vetter" <daniel.vetter@intel.com>,
	"Alex Deucher" <alexander.deucher@amd.com>,
	shlomo@fastmail.com, "Michel Dänzer" <michel@daenzer.net>,
	"Noralf Trønnes" <noralf@tronnes.org>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"Maxime Ripard" <mripard@kernel.org>,
	"David Airlie" <airlied@linux.ie>,
	"Daniel Vetter" <daniel@ffwll.ch>,
	dri-devel@lists.freedesktop.org,
	"Bartlomiej Zolnierkiewicz" <b.zolnierkie@samsung.com>,
	"Geert Uytterhoeven" <geert@linux-m68k.org>,
	"Nathan Chancellor" <natechancellor@gmail.com>,
	"Qiujun Huang" <hqjagain@gmail.com>,
	"Peter Rosin" <peda@axentia.se>,
	linux-fbdev@vger.kernel.org, "Helge Deller" <deller@gmx.de>,
	"Sam Ravnborg" <sam@ravnborg.org>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	"Samuel Thibault" <samuel.thibault@ens-lyon.org>,
	"Tetsuo Handa" <penguin-kernel@I-love.SAKURA.ne.jp>,
	"Shigeru Yoshida" <syoshida@redhat.com>
Subject: [PATCH 6.2 020/139] fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace
Date: Tue, 18 Apr 2023 14:21:25 +0200	[thread overview]
Message-ID: <20230418120314.413344564@linuxfoundation.org> (raw)
In-Reply-To: <20230418120313.725598495@linuxfoundation.org>

From: Daniel Vetter <daniel.vetter@ffwll.ch>

commit 6fd33a3333c7916689b8f051a185defe4dd515b0 upstream.

This is an oversight from dc5bdb68b5b3 ("drm/fb-helper: Fix vt
restore") - I failed to realize that nasty userspace could set this.

It's not pretty to mix up kernel-internal and userspace uapi flags
like this, but since the entire fb_var_screeninfo structure is uapi
we'd need to either add a new parameter to the ->fb_set_par callback
and fb_set_par() function, which has a _lot_ of users. Or some other
fairly ugly side-channel int fb_info. Neither is a pretty prospect.

Instead just correct the issue at hand by filtering out this
kernel-internal flag in the ioctl handling code.

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Fixes: dc5bdb68b5b3 ("drm/fb-helper: Fix vt restore")
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: shlomo@fastmail.com
Cc: Michel Dänzer <michel@daenzer.net>
Cc: Noralf Trønnes <noralf@tronnes.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Daniel Vetter <daniel.vetter@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: dri-devel@lists.freedesktop.org
Cc: <stable@vger.kernel.org> # v5.7+
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Nathan Chancellor <natechancellor@gmail.com>
Cc: Qiujun Huang <hqjagain@gmail.com>
Cc: Peter Rosin <peda@axentia.se>
Cc: linux-fbdev@vger.kernel.org
Cc: Helge Deller <deller@gmx.de>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Shigeru Yoshida <syoshida@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230404193934.472457-1-daniel.vetter@ffwll.ch
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/video/fbdev/core/fbmem.c |    2 ++
 1 file changed, 2 insertions(+)

--- a/drivers/video/fbdev/core/fbmem.c
+++ b/drivers/video/fbdev/core/fbmem.c
@@ -1117,6 +1117,8 @@ static long do_fb_ioctl(struct fb_info *
 	case FBIOPUT_VSCREENINFO:
 		if (copy_from_user(&var, argp, sizeof(var)))
 			return -EFAULT;
+		/* only for kernel-internal use */
+		var.activate &= ~FB_ACTIVATE_KD_TEXT;
 		console_lock();
 		lock_fb_info(info);
 		ret = fbcon_modechange_possible(info, &var);



WARNING: multiple messages have this Message-ID (diff)
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: linux-fbdev@vger.kernel.org,
	"Shigeru Yoshida" <syoshida@redhat.com>,
	"Geert Uytterhoeven" <geert+renesas@glider.be>,
	"David Airlie" <airlied@linux.ie>,
	dri-devel@lists.freedesktop.org,
	"Daniel Vetter" <daniel.vetter@intel.com>,
	"Sam Ravnborg" <sam@ravnborg.org>, "Helge Deller" <deller@gmx.de>,
	"Javier Martinez Canillas" <javierm@redhat.com>,
	"Tetsuo Handa" <penguin-kernel@I-love.SAKURA.ne.jp>,
	"Geert Uytterhoeven" <geert@linux-m68k.org>,
	"Samuel Thibault" <samuel.thibault@ens-lyon.org>,
	"Thomas Zimmermann" <tzimmermann@suse.de>,
	"Bartlomiej Zolnierkiewicz" <b.zolnierkie@samsung.com>,
	"Michel Dänzer" <michel@daenzer.net>,
	shlomo@fastmail.com,
	"Nathan Chancellor" <natechancellor@gmail.com>,
	"Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, "Noralf Trønnes" <noralf@tronnes.org>,
	"Alex Deucher" <alexander.deucher@amd.com>,
	"Peter Rosin" <peda@axentia.se>,
	"Qiujun Huang" <hqjagain@gmail.com>
Subject: [PATCH 6.2 020/139] fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace
Date: Tue, 18 Apr 2023 14:21:25 +0200	[thread overview]
Message-ID: <20230418120314.413344564@linuxfoundation.org> (raw)
In-Reply-To: <20230418120313.725598495@linuxfoundation.org>

From: Daniel Vetter <daniel.vetter@ffwll.ch>

commit 6fd33a3333c7916689b8f051a185defe4dd515b0 upstream.

This is an oversight from dc5bdb68b5b3 ("drm/fb-helper: Fix vt
restore") - I failed to realize that nasty userspace could set this.

It's not pretty to mix up kernel-internal and userspace uapi flags
like this, but since the entire fb_var_screeninfo structure is uapi
we'd need to either add a new parameter to the ->fb_set_par callback
and fb_set_par() function, which has a _lot_ of users. Or some other
fairly ugly side-channel int fb_info. Neither is a pretty prospect.

Instead just correct the issue at hand by filtering out this
kernel-internal flag in the ioctl handling code.

Reviewed-by: Javier Martinez Canillas <javierm@redhat.com>
Acked-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Fixes: dc5bdb68b5b3 ("drm/fb-helper: Fix vt restore")
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: shlomo@fastmail.com
Cc: Michel Dänzer <michel@daenzer.net>
Cc: Noralf Trønnes <noralf@tronnes.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: Daniel Vetter <daniel.vetter@intel.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: dri-devel@lists.freedesktop.org
Cc: <stable@vger.kernel.org> # v5.7+
Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Nathan Chancellor <natechancellor@gmail.com>
Cc: Qiujun Huang <hqjagain@gmail.com>
Cc: Peter Rosin <peda@axentia.se>
Cc: linux-fbdev@vger.kernel.org
Cc: Helge Deller <deller@gmx.de>
Cc: Sam Ravnborg <sam@ravnborg.org>
Cc: Geert Uytterhoeven <geert+renesas@glider.be>
Cc: Samuel Thibault <samuel.thibault@ens-lyon.org>
Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
Cc: Shigeru Yoshida <syoshida@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230404193934.472457-1-daniel.vetter@ffwll.ch
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/video/fbdev/core/fbmem.c |    2 ++
 1 file changed, 2 insertions(+)

--- a/drivers/video/fbdev/core/fbmem.c
+++ b/drivers/video/fbdev/core/fbmem.c
@@ -1117,6 +1117,8 @@ static long do_fb_ioctl(struct fb_info *
 	case FBIOPUT_VSCREENINFO:
 		if (copy_from_user(&var, argp, sizeof(var)))
 			return -EFAULT;
+		/* only for kernel-internal use */
+		var.activate &= ~FB_ACTIVATE_KD_TEXT;
 		console_lock();
 		lock_fb_info(info);
 		ret = fbcon_modechange_possible(info, &var);



  parent reply	other threads:[~2023-04-18 12:48 UTC|newest]

Thread overview: 152+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-04-18 12:21 [PATCH 6.2 000/139] 6.2.12-rc1 review Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 001/139] Revert "pinctrl: amd: Disable and mask interrupts on resume" Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 002/139] drm/amd/display: Pass the right info to drm_dp_remove_payload Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 003/139] drm/i915: Workaround ICL CSC_MODE sticky arming Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 004/139] ALSA: emu10k1: fix capture interrupt handler unlinking Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 005/139] ALSA: hda/sigmatel: add pin overrides for Intel DP45SG motherboard Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 006/139] ALSA: i2c/cs8427: fix iec958 mixer control deactivation Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 007/139] ALSA: hda: patch_realtek: add quirk for Asus N7601ZM Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 008/139] ALSA: hda/realtek: Add quirks for Lenovo Z13/Z16 Gen2 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 009/139] ALSA: firewire-tascam: add missing unwind goto in snd_tscm_stream_start_duplex() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 010/139] ALSA: emu10k1: dont create old pass-through playback device on Audigy Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 011/139] ALSA: hda/sigmatel: fix S/PDIF out on Intel D*45* motherboards Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 012/139] ALSA: hda/hdmi: disable KAE for Intel DG2 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 013/139] Bluetooth: L2CAP: Fix use-after-free in l2cap_disconnect_{req,rsp} Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 014/139] Bluetooth: Fix race condition in hidp_session_thread Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 015/139] bluetooth: btbcm: Fix logic error in forming the board name Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 016/139] Bluetooth: Free potentially unfreed SCO connection Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 017/139] Bluetooth: hci_conn: Fix possible UAF Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 018/139] btrfs: restore the thread_pool= behavior in remount for the end I/O workqueues Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 019/139] btrfs: fix fast csum implementation detection Greg Kroah-Hartman
2023-04-18 12:21 ` Greg Kroah-Hartman [this message]
2023-04-18 12:21   ` [PATCH 6.2 020/139] fbmem: Reject FB_ACTIVATE_KD_TEXT from userspace Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 021/139] mtdblock: tolerate corrected bit-flips Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 022/139] mtd: rawnand: meson: fix bitmask for length in command word Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 023/139] mtd: rawnand: stm32_fmc2: remove unsupported EDO mode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 024/139] mtd: rawnand: stm32_fmc2: use timings.mode instead of checking tRC_min Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 025/139] KVM: arm64: PMU: Restore the guests EL0 event counting after migration Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 026/139] fbcon: Fix error paths in set_con2fb_map Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 027/139] fbcon: set_con2fb_map needs to set con2fb_map! Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 028/139] drm/i915/dsi: fix DSS CTL register offsets for TGL+ Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 029/139] io_uring: complete request via task work in case of DEFER_TASKRUN Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 030/139] clk: sprd: set max_register according to mapping range Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 031/139] RDMA/irdma: Do not generate SW completions for NOPs Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 032/139] RDMA/irdma: Fix memory leak of PBLE objects Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 033/139] RDMA/irdma: Increase iWARP CM default rexmit count Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 034/139] RDMA/irdma: Add ipv4 check to irdma_find_listener() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 035/139] IB/mlx5: Add support for 400G_8X lane speed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 036/139] RDMA/erdma: Fix some typos Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 037/139] RDMA/erdma: Update default EQ depth to 4096 and max_send_wr to 8192 Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 038/139] RDMA/erdma: Inline mtt entries into WQE if supported Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 039/139] RDMA/erdma: Defer probing if netdevice can not be found Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 040/139] clk: rs9: Fix suspend/resume Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 041/139] RDMA/cma: Allow UD qp_type to join multicast only Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 042/139] bpf: tcp: Use sock_gen_put instead of sock_put in bpf_iter_tcp Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 043/139] LoongArch, bpf: Fix jit to skip speculation barrier opcode Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 044/139] dmaengine: apple-admac: Handle global interrupt flags Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 045/139] dmaengine: apple-admac: Set src_addr_widths capability Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 046/139] dmaengine: apple-admac: Fix current_tx not getting freed Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 047/139] 9p/xen : Fix use after free bug in xen_9pfs_front_remove due to race condition Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 048/139] bpf, arm64: Fixed a BTI error on returning to patched function Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 049/139] KVM: arm64: Advertise ID_AA64PFR0_EL1.CSV2/3 to protected VMs Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 050/139] niu: Fix missing unwind goto in niu_alloc_channels() Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 051/139] tcp: restrict net.ipv4.tcp_app_win Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 052/139] bonding: fix ns validation on backup slaves Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 053/139] iavf: refactor VLAN filter states Greg Kroah-Hartman
2023-04-18 12:21 ` [PATCH 6.2 054/139] iavf: remove active_cvlans and active_svlans bitmaps Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 055/139] net: openvswitch: fix race on port output Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 056/139] Bluetooth: hci_conn: Fix not cleaning up on LE Connection failure Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 057/139] Bluetooth: Fix printing errors if LE Connection times out Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 058/139] Bluetooth: SCO: Fix possible circular locking dependency sco_sock_getsockopt Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 059/139] Bluetooth: Set ISO Data Path on broadcast sink Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 060/139] drm/nouveau/fb: add missing sysmen flush callbacks Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 061/139] drm/armada: Fix a potential double free in an error handling path Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 062/139] qlcnic: check pci_reset_function result Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 063/139] smc: Fix use-after-free in tcp_write_timer_handler() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 064/139] net: wwan: iosm: Fix error handling path in ipc_pcie_probe() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 065/139] cgroup,freezer: hold cpu_hotplug_lock before freezer_mutex Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 066/139] rtnetlink: Restore RTM_NEW/DELLINK notification behavior Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 067/139] net: qrtr: Fix an uninit variable access bug in qrtr_tx_resume() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 068/139] sctp: fix a potential overflow in sctp_ifwdtsn_skip Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 069/139] RDMA/core: Fix GID entry ref leak when create_ah fails Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 070/139] selftests: openvswitch: adjust datapath NL message declaration Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 071/139] udp6: fix potential access to stale information Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 072/139] selftests: add the missing CONFIG_IP_SCTP in net config Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 073/139] net: macb: fix a memory corruption in extended buffer descriptor mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 074/139] skbuff: Fix a race between coalescing and releasing SKBs Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 075/139] ARM: 9290/1: uaccess: Fix KASAN false-positives Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 076/139] ARM: dts: qcom: apq8026-lg-lenok: add missing reserved memory Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 077/139] arm64: dts: qcom: sa8540p-ride: correct name of remoteproc_nsp0 firmware Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 078/139] power: supply: rk817: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 079/139] power: supply: cros_usbpd: reclassify "default case!" as debug Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 080/139] power: supply: axp288_fuel_gauge: Added check for negative values Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 081/139] selftests/bpf: Fix progs/find_vma_fail1.c build error Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 082/139] wifi: mwifiex: mark OF related data as maybe unused Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 083/139] i2c: imx-lpi2c: clean rx/tx buffers upon new message Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 084/139] i2c: hisi: Avoid redundant interrupts Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 085/139] efi: sysfb_efi: Add quirk for Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 086/139] block: ublk_drv: mark device as LIVE before adding disk Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 087/139] ACPI: video: Add backlight=native DMI quirk for Acer Aspire 3830TG Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 088/139] drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Book X90F Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 089/139] hwmon: (peci/cputemp) Fix miscalculated DTS for SKX Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 090/139] hwmon: (xgene) Fix ioremap and memremap leak Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 091/139] verify_pefile: relax wrapper length check Greg Kroah-Hartman
2023-04-18 12:22   ` Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 092/139] asymmetric_keys: log on fatal failures in PE/pkcs7 Greg Kroah-Hartman
2023-04-18 12:22   ` Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 093/139] nvme: send Identify with CNS 06h only to I/O controllers Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 094/139] wifi: iwlwifi: mvm: fix mvmtxq->stopped handling Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 095/139] wifi: iwlwifi: mvm: protect TXQ list manipulation Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 096/139] drm/amdgpu: add mes resume when do gfx post soft reset Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 097/139] drm/amdgpu: Force signal hw_fences that are embedded in non-sched jobs Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 098/139] drm/amdgpu/gfx: set cg flags to enter/exit safe mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 099/139] ACPI: resource: Add Medion S17413 to IRQ override quirk Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 100/139] tracing: Add trace_array_puts() to write into instance Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 101/139] tracing: Have tracing_snapshot_instance_cond() write errors to the appropriate instance Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 102/139] maple_tree: fix write memory barrier of nodes once dead for RCU mode Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 103/139] ksmbd: avoid out of bounds access in decode_preauth_ctxt() Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 104/139] riscv: Do not set initial_boot_params to the linear address of the dtb Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 105/139] riscv: Move early dtb mapping into the fixmap region Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 106/139] riscv: add icache flush for nommu sigreturn trampoline Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 107/139] HID: intel-ish-hid: Fix kernel panic during warm reset Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 108/139] net: sfp: initialize sfp->i2c_block_size at sfp allocation Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 109/139] net: phy: nxp-c45-tja11xx: add remove callback Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 110/139] net: phy: nxp-c45-tja11xx: fix unsigned long multiplication overflow Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 111/139] scsi: ses: Handle enclosure with just a primary component gracefully Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 112/139] thermal: intel: Avoid updating unsupported THERM_STATUS_CLEAR mask bits Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 113/139] drm/amd/pm: correct the pcie link state check for SMU13 Greg Kroah-Hartman
2023-04-18 12:22 ` [PATCH 6.2 114/139] PCI: Fix use-after-free in pci_bus_release_domain_nr() Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 115/139] PCI/MSI: Provide missing stub for pci_msix_can_alloc_dyn() Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 116/139] x86/PCI: Add quirk for AMD XHCI controller that loses MSI-X state in D3hot Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 117/139] cgroup: fix display of forceidle time at root Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 118/139] cgroup/cpuset: Fix partition roots cpuset.cpus update bug Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 119/139] cgroup/cpuset: Wake up cpuset_attach_wq tasks in cpuset_cancel_attach() Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 120/139] cgroup/cpuset: Make cpuset_fork() handle CLONE_INTO_CGROUP properly Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 121/139] cgroup/cpuset: Add cpuset_can_fork() and cpuset_cancel_fork() methods Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 122/139] drm/amd/pm: correct SMU13.0.7 pstate profiling clock settings Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 123/139] drm/amd/pm: correct SMU13.0.7 max shader clock reporting Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 124/139] mptcp: use mptcp_schedule_work instead of open-coding it Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 125/139] mptcp: stricter state check in mptcp_worker Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 126/139] mptcp: fix NULL pointer dereference on fastopen early fallback Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 127/139] selftests: mptcp: userspace pm: uniform verify events Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 128/139] ubi: Fix failure attaching when vid_hdr offset equals to (sub)page size Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 129/139] ubi: Fix deadlock caused by recursively holding work_sem Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 130/139] i2c: mchp-pci1xxxx: Update Timing registers Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 131/139] powerpc/papr_scm: Update the NUMA distance table for the target node Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 132/139] sched/fair: Fix imbalance overflow Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 133/139] x86/rtc: Remove __init for runtime functions Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 134/139] i2c: ocores: generate stop condition after timeout in polling mode Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 135/139] cifs: fix negotiate context parsing Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 136/139] RISC-V: add infrastructure to allow different str* implementations Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 137/139] purgatory: fix disabling debug info Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 138/139] nvme-pci: mark Lexar NM760 as IGNORE_DEV_SUBNQN Greg Kroah-Hartman
2023-04-18 12:23 ` [PATCH 6.2 139/139] nvme-pci: add NVME_QUIRK_BOGUS_NID for T-FORCE Z330 SSD Greg Kroah-Hartman
2023-04-18 14:13 ` [PATCH 6.2 000/139] 6.2.12-rc1 review Chris Paterson
2023-04-18 17:13 ` Markus Reichelt
2023-04-18 21:22 ` Shuah Khan
2023-04-18 21:47 ` Justin Forbes
2023-04-18 23:11 ` Ron Economos
2023-04-18 23:18 ` Florian Fainelli
2023-04-19  3:35 ` Guenter Roeck
2023-04-19  4:12 ` Bagas Sanjaya
2023-04-19  6:27 ` Naresh Kamboju

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=20230418120314.413344564@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=b.zolnierkie@samsung.com \
    --cc=daniel.vetter@intel.com \
    --cc=daniel@ffwll.ch \
    --cc=deller@gmx.de \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert+renesas@glider.be \
    --cc=geert@linux-m68k.org \
    --cc=hqjagain@gmail.com \
    --cc=javierm@redhat.com \
    --cc=linux-fbdev@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=michel@daenzer.net \
    --cc=mripard@kernel.org \
    --cc=natechancellor@gmail.com \
    --cc=noralf@tronnes.org \
    --cc=patches@lists.linux.dev \
    --cc=peda@axentia.se \
    --cc=penguin-kernel@I-love.SAKURA.ne.jp \
    --cc=sam@ravnborg.org \
    --cc=samuel.thibault@ens-lyon.org \
    --cc=shlomo@fastmail.com \
    --cc=stable@vger.kernel.org \
    --cc=syoshida@redhat.com \
    --cc=tzimmermann@suse.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.