All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stefan Lippers-Hollmann <s.l-h@gmx.de>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: stable@vger.kernel.org, patches@lists.linux.dev,
	Hyunwoo Kim <imv4bel@gmail.com>,
	Mauro Carvalho Chehab <mchehab@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 6.3 136/286] media: dvb-core: Fix use-after-free on race condition at dvb_frontend
Date: Tue, 13 Jun 2023 05:33:14 +0200	[thread overview]
Message-ID: <20230613053314.70839926@mir> (raw)
In-Reply-To: <20230607200927.531074599@linuxfoundation.org>

Hi

On 2023-06-07, Greg Kroah-Hartman wrote:
> From: Hyunwoo Kim <imv4bel@gmail.com>
>
> [ Upstream commit 6769a0b7ee0c3b31e1b22c3fadff2bfb642de23f ]
>
> If the device node of dvb_frontend is open() and the device is
> disconnected, many kinds of UAFs may occur when calling close()
> on the device node.
>
> The root cause of this is that wake_up() for dvbdev->wait_queue
> is implemented in the dvb_frontend_release() function, but
> wait_event() is not implemented in the dvb_frontend_stop() function.
>
> So, implement wait_event() function in dvb_frontend_stop() and
> add 'remove_mutex' which prevents race condition for 'fe->exit'.
>
> [mchehab: fix a couple of checkpatch warnings and some mistakes at the error handling logic]
>
> Link: https://lore.kernel.org/linux-media/20221117045925.14297-2-imv4bel@gmail.com
[...]

I'm noticing a regression relative to kernel v6.3.6 with this change
as part of kernel v6.3.7 on my ivy-bridge system running
Debian/unstable (amd64) with vdr 2.6.0-1.1[0] and two DVB cards
TeVii S480 V2.1 (DVB-S2, dw2102) and an Xbox One Digital TV Tuner
(DVB-T2, dvb_usb_dib0700). The systemd unit starting vdr just times
out and hangs forever, with vdr never coming up and also preventing
a clean system shutdown (hard reset required). Apart from the systemd
unit timing out, there don't really appear to be any further issues
logged.

# systemctl status -l vdr.service | cat
● vdr.service - Video Disk Recorder
     Loaded: loaded (/lib/systemd/system/vdr.service; enabled; preset: enabled)
    Drop-In: /etc/systemd/system/vdr.service.d
             └─override.conf, umask.conf
     Active: deactivating (stop-sigterm) (Result: timeout)
    Process: 762 ExecStartPre=/bin/sh /usr/lib/vdr/merge-commands.sh commands (code=exited, status=0/SUCCESS)
    Process: 1070 ExecStartPre=/bin/sh /usr/lib/vdr/merge-commands.sh reccmds (code=exited, status=0/SUCCESS)
   Main PID: 1088 (vdr)
      Tasks: 1 (limit: 38073)
     Memory: 215.8M
        CPU: 738ms
     CGroup: /system.slice/vdr.service
             └─1088 /usr/bin/vdr

Jun 13 05:15:35 system vdr[1088]: [1088] detected /dev/dvb/adapter1/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] detected /dev/dvb/adapter0/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] probing /dev/dvb/adapter0/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] creating cDvbDevice
Jun 13 05:15:35 system vdr[1088]: [1088] new device number 1 (card index 1)
Jun 13 05:15:35 system vdr[1088]: [1088] DVB API version is 0x050B (VDR was built with 0x050B)
Jun 13 05:15:35 system vdr[1088]: [1088] frontend 0/0 provides DVB-T,DVB-T2,DVB-C with QPSK,QAM16,QAM32,QAM64,QAM128,QAM256 ("Panasonic MN88472")
Jun 13 05:15:35 system vdr[1088]: [1090] epg data reader thread ended (pid=1088, tid=1090)
Jun 13 05:15:37 system vdr[1088]: [1089] video directory scanner thread ended (pid=1088, tid=1089)
Jun 13 05:17:04 system systemd[1]: vdr.service: start operation timed out. Terminating.

TeVii S480 V2.1 (this is effectively a PCIe card with a USB hub and
two TeVii s660 card on the same PCB):

lspci -nn:
04:00.0 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.1 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.2 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.3 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.4 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.5 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.6 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]
04:00.7 USB controller [0c03]: MosChip Semiconductor Technology Ltd. MCS9990 PCIe to 4-Port USB 2.0 Host Controller [9710:9990]

lsusb:
Bus 002 Device 003: ID 9022:d660 TeVii Technology Ltd. DVB-S2 S660
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 003: ID 9022:d660 TeVii Technology Ltd. DVB-S2 S660
Bus 004 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

Xbox One Digital TV Tuner

lsusb:
Bus 001 Device 005: ID 045e:02d5 Microsoft Corp. Xbox One Digital TV Tuner

dmesg (excerpt):

[    1.452325] usb 3-1: config 1 interface 0 altsetting 0 bulk endpoint 0x81 has invalid maxpacket 2
[    1.453824] usb 3-1: New USB device found, idVendor=9022, idProduct=d660, bcdDevice= 0.00
[    1.453829] usb 3-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.453831] usb 3-1: Product: DVBS2BOX
[    1.453833] usb 3-1: Manufacturer: TBS-Tech
...
[    1.475380] usb 6-1: config 1 interface 0 altsetting 0 bulk endpoint 0x81 has invalid maxpacket 2
[    1.476504] usb 6-1: New USB device found, idVendor=9022, idProduct=d660, bcdDevice= 0.00
[    1.476510] usb 6-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.476513] usb 6-1: Product: DVBS2BOX
[    1.476515] usb 6-1: Manufacturer: TBS-Tech
[    1.711179] usb 1-1.5: new full-speed USB device number 3 using ehci-pci
[    1.719179] usb 2-1.3: new full-speed USB device number 3 using ehci-pci
...
[    2.209899] usb 2-1.6: New USB device found, idVendor=045e, idProduct=02d5, bcdDevice= 1.10
[    2.209903] usb 2-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.209905] usb 2-1.6: Product: Xbox USB Tuner
[    2.209907] usb 2-1.6: Manufacturer: Microsoft Corp.
[    2.209908] usb 2-1.6: SerialNumber: 005099070515
[    2.256025] usb 1-1.8: New USB device found, idVendor=046d, idProduct=c069, bcdDevice=56.01
[    2.256030] usb 1-1.8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
...
[    3.208796] dvb-usb: found a 'TeVii S660 USB' in cold state, will try to load a firmware
[    3.209147] dvb-usb: downloading firmware from file 'dvb-usb-s660.fw'
[    3.209154] dw2102: start downloading DW210X firmware
[    3.211830] IR RC6 protocol handler initialized
...
[    3.221848] dvb-usb: found a 'Microsoft Xbox One Digital TV Tuner' in warm state.
[    3.221930] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[    3.222327] dvbdev: DVB: registering new adapter (Microsoft Xbox One Digital TV Tuner)
[    3.222333] usb 2-1.6: media controller created
...
[    3.221848] dvb-usb: found a 'Microsoft Xbox One Digital TV Tuner' in warm state.
[    3.221930] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[    3.222327] dvbdev: DVB: registering new adapter (Microsoft Xbox One Digital TV Tuner)
[    3.222333] usb 2-1.6: media controller created
[    3.222552] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
...
[    3.367164] dvb-usb: found a 'TeVii S660 USB' in warm state.
[    3.367241] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[    3.367597] dvbdev: DVB: registering new adapter (TeVii S660 USB)
[    3.367603] usb 3-1: media controller created
[    3.397279] mn88472 10-0018: Panasonic MN88472 successfully identified
[    3.400166] tda18250 10-0060: NXP TDA18250BHN/M successfully identified
[    3.403933] usb 2-1.6: DVB: registering adapter 0 frontend 0 (Panasonic MN88472)...
[    3.403941] dvbdev: dvb_create_media_entity: media entity 'Panasonic MN88472' registered.
[    3.404241] dvb-usb: Microsoft Xbox One Digital TV Tuner successfully initialized and connected.
[    3.404461] usbcore: registered new interface driver dvb_usb_dib0700
[    3.414990] memfd_create() without MFD_EXEC nor MFD_NOEXEC_SEAL, pid=635 'alsactl'
...
[    3.616707] dvb-usb: MAC address: 00:18:bd:5a:be:8c
[    3.616946] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
[    3.628076] DS3000 chip version: 0.192 attached.
[    3.690739] ts2020 11-0060: Montage Technology TS2020 successfully identified
[    3.691064] dw2102: Attached ds3000+ts2020!
[    3.691070] usb 3-1: DVB: registering adapter 1 frontend 0 (Montage Technology DS3000)...
[    3.691078] dvbdev: dvb_create_media_entity: media entity 'Montage Technology DS3000' registered.
[    3.717182] Registered IR keymap rc-tevii-nec
[    3.717231] rc rc1: TeVii S660 USB as /devices/pci0000:00/0000:00:1c.5/0000:04:00.3/usb3/3-1/rc/rc1
[    3.717346] rc rc1: lirc_dev: driver dw2102 registered at minor = 1, scancode receiver, no transmitter
[    3.717412] input: TeVii S660 USB as /devices/pci0000:00/0000:00:1c.5/0000:04:00.3/usb3/3-1/rc/rc1/input20
[    3.717480] dvb-usb: schedule remote query interval to 150 msecs.
[    3.717484] dvb-usb: TeVii S660 USB successfully initialized and connected.
[    3.717531] dvb-usb: found a 'TeVii S660 USB' in cold state, will try to load a firmware
[    3.717566] dvb-usb: downloading firmware from file 'dvb-usb-s660.fw'
[    3.717569] dw2102: start downloading DW210X firmware
[    3.871216] dvb-usb: found a 'TeVii S660 USB' in warm state.
[    3.871389] dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
[    3.871785] dvbdev: DVB: registering new adapter (TeVii S660 USB)
[    3.871794] usb 6-1: media controller created
...
[    4.109692] dvb-usb: MAC address: 00:18:bd:5a:be:8b
[    4.109930] dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
[    4.113052] DS3000 chip version: 0.192 attached.
[    4.162597] ts2020 12-0060: Montage Technology TS2020 successfully identified
[    4.162967] dw2102: Attached ds3000+ts2020!
[    4.162975] usb 6-1: DVB: registering adapter 2 frontend 0 (Montage Technology DS3000)...
[    4.162984] dvbdev: dvb_create_media_entity: media entity 'Montage Technology DS3000' registered.
[    4.164314] Registered IR keymap rc-tevii-nec
[    4.164381] rc rc2: TeVii S660 USB as /devices/pci0000:00/0000:00:1c.5/0000:04:00.1/usb6/6-1/rc/rc2
[    4.164474] rc rc2: lirc_dev: driver dw2102 registered at minor = 2, scancode receiver, no transmitter
[    4.164578] input: TeVii S660 USB as /devices/pci0000:00/0000:00:1c.5/0000:04:00.1/usb6/6-1/rc/rc2/input21
[    4.164671] dvb-usb: schedule remote query interval to 150 msecs.
[    4.164676] dvb-usb: TeVii S660 USB successfully initialized and connected.
[    4.164756] usbcore: registered new interface driver dw2102
...

journalctl (filtered):
# journalctl -b | grep -i -e dvb -e vdr
Jun 13 05:15:21 system kernel: usb 2-1: Product: DVBS2BOX
Jun 13 05:15:21 system kernel: usb 6-1: Product: DVBS2BOX
Jun 13 05:15:21 system udevadm[415]: systemd-udev-settle.service is deprecated. Please fix vdr.service not to pull it in.
Jun 13 05:15:21 system systemd[1]: Found device dev-vg\x2dsystem-vdr.device - /dev/vg-system/vdr.
Jun 13 05:15:22 system kernel: dvb-usb: found a 'TeVii S660 USB' in cold state, will try to load a firmware
Jun 13 05:15:22 system kernel: dvb-usb: downloading firmware from file 'dvb-usb-s660.fw'
Jun 13 05:15:22 system kernel: dvb-usb: found a 'Microsoft Xbox One Digital TV Tuner' in warm state.
Jun 13 05:15:22 system kernel: dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
Jun 13 05:15:22 system kernel: dvbdev: DVB: registering new adapter (Microsoft Xbox One Digital TV Tuner)
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
Jun 13 05:15:22 system systemd[1]: Starting systemd-fsck@dev-vg\x2dsystem-vdr.service - File System Check on /dev/vg-system/vdr...
Jun 13 05:15:22 system kernel: dvb-usb: found a 'TeVii S660 USB' in warm state.
Jun 13 05:15:22 system kernel: dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
Jun 13 05:15:22 system kernel: dvbdev: DVB: registering new adapter (TeVii S660 USB)
Jun 13 05:15:22 system kernel: usb 3-1.6: DVB: registering adapter 0 frontend 0 (Panasonic MN88472)...
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'Panasonic MN88472' registered.
Jun 13 05:15:22 system kernel: dvb-usb: Microsoft Xbox One Digital TV Tuner successfully initialized and connected.
Jun 13 05:15:22 system kernel: usbcore: registered new interface driver dvb_usb_dib0700
Jun 13 05:15:22 system systemd-fsck[650]: vdr: clean, 472/19660800 files, 65559385/78643200 blocks
Jun 13 05:15:22 system systemd[1]: Finished systemd-fsck@dev-vg\x2dsystem-vdr.service - File System Check on /dev/vg-system/vdr.
Jun 13 05:15:22 system kernel: dvb-usb: MAC address: 00:18:bd:5a:be:8c
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
Jun 13 05:15:22 system kernel: usb 2-1: DVB: registering adapter 1 frontend 0 (Montage Technology DS3000)...
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'Montage Technology DS3000' registered.
Jun 13 05:15:22 system kernel: dvb-usb: schedule remote query interval to 150 msecs.
Jun 13 05:15:22 system kernel: dvb-usb: TeVii S660 USB successfully initialized and connected.
Jun 13 05:15:22 system kernel: dvb-usb: found a 'TeVii S660 USB' in cold state, will try to load a firmware
Jun 13 05:15:22 system kernel: dvb-usb: downloading firmware from file 'dvb-usb-s660.fw'
Jun 13 05:15:22 system kernel: dvb-usb: found a 'TeVii S660 USB' in warm state.
Jun 13 05:15:22 system kernel: dvb-usb: will pass the complete MPEG2 transport stream to the software demuxer.
Jun 13 05:15:22 system kernel: dvbdev: DVB: registering new adapter (TeVii S660 USB)
Jun 13 05:15:22 system systemd[1]: Mounting srv-vdr.mount - /srv/vdr...
Jun 13 05:15:22 system systemd[1]: Mounted srv-vdr.mount - /srv/vdr.
Jun 13 05:15:22 system kernel: dvb-usb: MAC address: 00:18:bd:5a:be:8b
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'dvb-demux' registered.
Jun 13 05:15:22 system kernel: usb 6-1: DVB: registering adapter 2 frontend 0 (Montage Technology DS3000)...
Jun 13 05:15:22 system kernel: dvbdev: dvb_create_media_entity: media entity 'Montage Technology DS3000' registered.
Jun 13 05:15:22 system kernel: dvb-usb: schedule remote query interval to 150 msecs.
Jun 13 05:15:22 system kernel: dvb-usb: TeVii S660 USB successfully initialized and connected.
Jun 13 05:15:28 system systemd[1]: Starting vdr.service - Video Disk Recorder...
Jun 13 05:15:34 system vdr[1088]: [1088] VDR version 2.6.0 started
Jun 13 05:15:34 system vdr[1088]: [1088] switched to user 'vdr'
Jun 13 05:15:34 system vdr[1088]: [1088] codeset is 'UTF-8' - known
Jun 13 05:15:34 system vdr[1088]: [1088] found 28 locales in /usr/share/locale
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'alb,sqi'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'bos'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'bul'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'chi,zho'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'eus,baq'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'iri,gle'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'jpn'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'lav'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'ltz'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'mlt'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'por'
Jun 13 05:15:34 system vdr[1088]: [1088] no locale for language code 'smi'
Jun 13 05:15:34 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-conflictcheckonly.so.2.6.0
Jun 13 05:15:34 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearch.so.2.6.0
Jun 13 05:15:34 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-epgsearchonly.so.2.6.0
Jun 13 05:15:34 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-femon.so.2.6.0
Jun 13 05:15:34 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-live.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] live: INFO: validating server ip '0.0.0.0'
Jun 13 05:15:35 system vdr[1088]: INFO: validating live server ip '0.0.0.0'
Jun 13 05:15:35 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-osdteletext.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-quickepgsearch.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-streamdev-client.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-streamdev-server.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] loading plugin: /usr/lib/vdr/plugins/libvdr-xineliboutput.so.2.6.0
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/setup.conf
Jun 13 05:15:35 system vdr[1088]: [1088] [xine..put] Skipping configuration entry Remote.ListenPort=37890 (overridden in command line)
Jun 13 05:15:35 system vdr[1088]: [1088] [xine..put] Skipping configuration entry RemoteMode=1 (overridden in command line)
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/sources.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/diseqc.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/scr.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/channels.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/timers.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/commands.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/reccmds.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/svdrphosts.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/remote.conf
Jun 13 05:15:35 system vdr[1088]: [1088] loading /var/lib/vdr/keymacros.conf
Jun 13 05:15:35 system vdr[1088]: [1088] registered source parameters for 'A - ATSC'
Jun 13 05:15:35 system vdr[1088]: [1088] registered source parameters for 'C - DVB-C'
Jun 13 05:15:35 system vdr[1088]: [1088] registered source parameters for 'S - DVB-S'
Jun 13 05:15:35 system vdr[1088]: [1089] video directory scanner thread started (pid=1088, tid=1089, prio=low)
Jun 13 05:15:35 system vdr[1088]: [1088] registered source parameters for 'T - DVB-T'
Jun 13 05:15:35 system vdr[1088]: [1090] epg data reader thread started (pid=1088, tid=1090, prio=high)
Jun 13 05:15:35 system vdr[1088]: [1090] reading EPG data from /var/cache/vdr/epg.data
Jun 13 05:15:35 system vdr[1088]: [1088] detected /dev/dvb/adapter2/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] detected /dev/dvb/adapter1/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] detected /dev/dvb/adapter0/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] probing /dev/dvb/adapter0/frontend0
Jun 13 05:15:35 system vdr[1088]: [1088] creating cDvbDevice
Jun 13 05:15:35 system vdr[1088]: [1088] new device number 1 (card index 1)
Jun 13 05:15:35 system kernel: mn88472 10-0018: downloading firmware from file 'dvb-demod-mn88472-02.fw'
Jun 13 05:15:35 system vdr[1088]: [1088] DVB API version is 0x050B (VDR was built with 0x050B)
Jun 13 05:15:35 system vdr[1088]: [1088] frontend 0/0 provides DVB-T,DVB-T2,DVB-C with QPSK,QAM16,QAM32,QAM64,QAM128,QAM256 ("Panasonic MN88472")
Jun 13 05:15:35 system vdr[1088]: [1090] epg data reader thread ended (pid=1088, tid=1090)
Jun 13 05:15:37 system vdr[1088]: [1089] video directory scanner thread ended (pid=1088, tid=1089)
Jun 13 05:17:04 system systemd[1]: vdr.service: start operation timed out. Terminating.
Jun 13 05:18:34 system systemd[1]: vdr.service: State 'stop-sigterm' timed out. Killing.
Jun 13 05:18:34 system systemd[1]: vdr.service: Killing process 1088 (vdr) with signal SIGKILL.
Jun 13 05:20:05 system systemd[1]: vdr.service: Processes still around after SIGKILL. Ignoring.

git bisection:
$ LANG= git bisect log
git bisect start
# Status: warte auf guten und schlechten Commit
# bad: [e282393f9d0cd66cee8c68a80f4936f46c449b2d] Linux 6.3.7
git bisect bad e282393f9d0cd66cee8c68a80f4936f46c449b2d
# Status: warte auf gute(n) Commit(s), schlechter Commit bekannt
# good: [abfd9cf1c3d4d143a889b76af835078897e46c55] Linux 6.3.6
git bisect good abfd9cf1c3d4d143a889b76af835078897e46c55
# bad: [95055e6eb8319d5e929380bb7246362815890b75] ASoC: SOF: pm: save io region state in case of errors in resume
git bisect bad 95055e6eb8319d5e929380bb7246362815890b75
# good: [7a5427ae3f1da6c61e38060a6c1865b0ab2e8f43] mtd: rawnand: marvell: don't set the NAND frequency select
git bisect good 7a5427ae3f1da6c61e38060a6c1865b0ab2e8f43
# good: [8e4aa73e787cbdc9e58ed41ccc44a48ceab2d890] fbdev: modedb: Add 1920x1080 at 60 Hz video mode
git bisect good 8e4aa73e787cbdc9e58ed41ccc44a48ceab2d890
# good: [722993741c696ebe4855a403c98408d720be2386] media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer()
git bisect good 722993741c696ebe4855a403c98408d720be2386
# good: [ec35bef6256ddc24114c7e6749c0baa1b467bcc4] media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table
git bisect good ec35bef6256ddc24114c7e6749c0baa1b467bcc4
# bad: [47dc2e5f5fb45aff7f9c32f10412125ee13cb5ce] media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*()
git bisect bad 47dc2e5f5fb45aff7f9c32f10412125ee13cb5ce
# bad: [8bade849b15b3ecb62893f328b2cc4cdc65ac0c6] media: dvb-core: Fix use-after-free due on race condition at dvb_net
git bisect bad 8bade849b15b3ecb62893f328b2cc4cdc65ac0c6

Reverting just this patch from v6.3.7 and v6.3.8-rc1 fixes the problem
for me, vdr starts up and is fully usable.

Regards
	Stefan Lippers-Hollmann

[0] packaging at https://salsa.debian.org/vdr-team/vdr.git

  reply	other threads:[~2023-06-13  3:33 UTC|newest]

Thread overview: 300+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07 20:11 [PATCH 6.3 000/286] 6.3.7-rc1 review Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 001/286] RDMA/bnxt_re: Fix the page_size used during the MR creation Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 002/286] phy: amlogic: phy-meson-g12a-mipi-dphy-analog: fix CNTL2_DIF_TX_CTL0 value Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 003/286] RDMA/efa: Fix unsupported page sizes in device Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 004/286] RDMA/hns: Fix timeout attr in query qp for HIP08 Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 005/286] RDMA/hns: Fix base address table allocation Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 006/286] RDMA/hns: Modify the value of long message loopback slice Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 007/286] dmaengine: at_xdmac: fix potential Oops in at_xdmac_prep_interleaved() Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 008/286] RDMA/bnxt_re: Fix a possible memory leak Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 009/286] RDMA/bnxt_re: Fix return value of bnxt_re_process_raw_qp_pkt_rx Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 010/286] iommu: Make IPMMU_VMSA dependencies more strict Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 011/286] iommu/rockchip: Fix unwind goto issue Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 012/286] iommu/amd: Dont block updates to GATag if guest mode is on Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 013/286] iommu/amd: Handle GALog overflows Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 014/286] iommu/amd: Fix up merge conflict resolution Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 015/286] iommu/amd: Add missing domain type checks Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 016/286] nfsd: make a copy of struct iattr before calling notify_change Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 017/286] dmaengine: pl330: rename _start to prevent build error Greg Kroah-Hartman
2023-06-07 20:11   ` Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 018/286] crypto: x86/aria - Use 16 byte alignment for GFNI constant vectors Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 019/286] riscv: Fix unused variable warning when BUILTIN_DTB is set Greg Kroah-Hartman
2023-06-07 20:11 ` [PATCH 6.3 020/286] net/mlx5e: TC, Remove unused vf_tun variable Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 021/286] net/mlx5e: TC, Move main flow attribute cleanup to helper func Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 022/286] net/mlx5e: Extract remaining tunnel encap code to dedicated file Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 023/286] net/mlx5e: Prevent encap offload when neigh update is running Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 024/286] net/mlx5e: Consider internal buffers size in port buffer calculations Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 025/286] net/mlx5e: Do not update SBCM when prio2buffer command is invalid Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 026/286] net/mlx5: Drain health before unregistering devlink Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 027/286] net/mlx5: SF, Drain health before removing device Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 028/286] net/mlx5: fw_tracer, Fix event handling Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 029/286] net/mlx5e: Use query_special_contexts cmd only once per mdev Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 030/286] net/mlx5e: CT: Use per action stats Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 031/286] net/mlx5e: TC, Remove CT action reordering Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 032/286] net/mlx5: Fix post parse infra to only parse every action once Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 033/286] net/mlx5e: Dont attach netdev profile while handling internal error Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 034/286] net/mlx5e: Move Ethernet driver debugfs to profile init callback Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 035/286] net: mellanox: mlxbf_gige: Fix skb_panic splat under memory pressure Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 036/286] net: stmmac: fix call trace when stmmac_xdp_xmit() is invoked Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 037/286] netrom: fix info-leak in nr_write_internal() Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 038/286] af_packet: Fix data-races of pkt_sk(sk)->num Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 039/286] tls: improve lockless access safety of tls_err_abort() Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 040/286] amd-xgbe: fix the false linkup in xgbe_phy_status Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 041/286] perf ftrace latency: Remove unnecessary "--" from --use-nsec option Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 042/286] mtd: rawnand: ingenic: fix empty stub helper definitions Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 043/286] efi: Bump stub image version for macOS HVF compatibility Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 044/286] RDMA/irdma: Prevent QP use after free Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 045/286] RDMA/irdma: Fix Local Invalidate fencing Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 046/286] af_packet: do not use READ_ONCE() in packet_bind() Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 047/286] tcp: deny tcp_disconnect() when threads are waiting Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 048/286] tcp: Return user_mss for TCP_MAXSEG in CLOSE/LISTEN state if user_mss set Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 049/286] rxrpc: Truncate UTS_RELEASE for rxrpc version Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 050/286] net/smc: Scan from current RMB list when no position specified Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 051/286] net/smc: Dont use RMBs not mapped to new link in SMCRv2 ADD LINK Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 052/286] net/sched: sch_ingress: Only create under TC_H_INGRESS Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 053/286] net/sched: sch_clsact: Only create under TC_H_CLSACT Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 054/286] net/sched: Reserve TC_H_INGRESS (TC_H_CLSACT) for ingress (clsact) Qdiscs Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 055/286] net/sched: Prohibit regrafting ingress or clsact Qdiscs Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 056/286] net: sched: fix NULL pointer dereference in mq_attach Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 057/286] net/netlink: fix NETLINK_LIST_MEMBERSHIPS length report Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 058/286] udp6: Fix race condition in udp6_sendmsg & connect Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 059/286] nfsd: fix double fget() bug in __write_ports_addfd() Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 060/286] HID: logitech-hidpp: Handle timeout differently from busy Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 061/286] nvme: fix the name of Zone Append for verbose logging Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 062/286] net/mlx5e: Fix error handling in mlx5e_refresh_tirs Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 063/286] net/mlx5: Read embedded cpu after init bit cleared Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 064/286] sfc: fix error unwinds in TC offload Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 065/286] iommu/mediatek: Flush IOTLB completely only if domain has been attached Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 066/286] net/sched: flower: fix possible OOB write in fl_set_geneve_opt() Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 067/286] tcp: fix mishandling when the sack compression is deferred Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 068/286] net: ipa: Use correct value for IPA_STATUS_SIZE Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 069/286] net: dsa: mv88e6xxx: Increase wait after reset deactivation Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 070/286] mtd: rawnand: marvell: ensure timing values are written Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 071/286] mtd: rawnand: marvell: dont set the NAND frequency select Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 072/286] net: renesas: rswitch: Fix return value in error path of xmit Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 073/286] net: phy: mxl-gpy: extend interrupt fix to all impacted variants Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 074/286] ice: recycle/free all of the fragments from multi-buffer frame Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 075/286] rtnetlink: call validate_linkmsg in rtnl_create_link Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 076/286] rtnetlink: move IFLA_GSO_ tb check to validate_linkmsg Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 077/286] rtnetlink: add the missing IFLA_GRO_ tb check in validate_linkmsg Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 078/286] mptcp: avoid unneeded __mptcp_nmpc_socket() usage Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 079/286] mptcp: add annotations around msk->subflow accesses Greg Kroah-Hartman
2023-06-07 20:12 ` [PATCH 6.3 080/286] mptcp: avoid unneeded address copy Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 081/286] mptcp: simplify subflow_syn_recv_sock() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 082/286] mptcp: consolidate passive msk socket initialization Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 083/286] mptcp: fix data race around msk->first access Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 084/286] mptcp: add annotations around sk->sk_shutdown accesses Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 085/286] drm/amdgpu: release gpu full access after "amdgpu_device_ip_late_init" Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 086/286] watchdog: menz069_wdt: fix watchdog initialisation Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 087/286] ALSA: hda: Glenfly: add HD Audio PCI IDs and HDMI Codec Vendor IDs Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 088/286] drm/amd/display: fix memleak in aconnector->timing_requested Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 089/286] LoongArch: Relay BCE exceptions to userland as SIGSEGV with si_code=SEGV_BNDERR Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 090/286] LoongArch: Add ARCH_HAS_FORTIFY_SOURCE selection Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 091/286] ASoC: Intel: soc-acpi-cht: Add quirk for Nextbook Ares 8A tablet Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 092/286] drm/amdgpu: Use the default reset when loading or reloading the driver Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 093/286] mailbox: mailbox-test: Fix potential double-free in mbox_test_message_write() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 094/286] drm/ast: Fix ARM compatibility Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 095/286] btrfs: abort transaction when sibling keys check fails for leaves Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 096/286] ARM: 9295/1: unwind:fix unwind abort for uleb128 case Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 097/286] perf/x86/intel/ds: Flush PEBS DS when changing PEBS_DATA_CFG Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 098/286] hwmon: (k10temp) Add PCI ID for family 19, model 78h Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 099/286] media: rcar-vin: Gen3 can not scale NV12 Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 100/286] media: rcar-vin: Fix NV12 size alignment Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 101/286] media: rcar-vin: Select correct interrupt mode for V4L2_FIELD_ALTERNATE Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 102/286] platform/x86: intel_scu_pcidrv: Add back PCI ID for Medfield Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 103/286] platform/mellanox: fix potential race in mlxbf-tmfifo driver Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 104/286] gfs2: Dont deref jdesc in evict Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 105/286] drm/amdgpu/nv: update VCN 3 max HEVC encoding resolution Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 106/286] drm/amdgpu: set gfx9 onwards APU atomics support to be true Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 107/286] fbdev: imsttfb: Fix use after free bug in imsttfb_probe Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 108/286] fbdev: modedb: Add 1920x1080 at 60 Hz video mode Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 109/286] fbdev: stifb: Fix info entry in sti_struct on error path Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 110/286] nbd: Fix debugfs_create_dir error checking Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 111/286] block/rnbd: replace REQ_OP_FLUSH with REQ_OP_WRITE Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 112/286] nvme-pci: add NVME_QUIRK_BOGUS_NID for HS-SSD-FUTURE 2048G Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 113/286] nvme-pci: add quirk for missing secondary temperature thresholds Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 114/286] nvme-pci: clamp max_hw_sectors based on DMA optimized limitation Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 115/286] ASoC: amd: yc: Add DMI entry to support System76 Pangolin 12 Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 116/286] ASoC: dwc: limit the number of overrun messages Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 117/286] cpupower:Fix resource leaks in sysfs_get_enabled() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 118/286] ASoC: SOF: amd: Fix NULL pointer crash in acp_sof_ipc_msg_data function Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 119/286] um: harddog: fix modular build Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 120/286] xfrm: Check if_id in inbound policy/secpath match Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 121/286] ASoC: jz4740-i2s: Make I2S divider calculations more robust Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 122/286] ASoC: dt-bindings: Adjust #sound-dai-cells on TIs single-DAI codecs Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 123/286] ALSA: hda/realtek: Add quirks for ASUS GU604V and GU603V Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 124/286] ASoC: ssm2602: Add workaround for playback distortions Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 125/286] media: dvb_demux: fix a bug for the continuity counter Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 126/286] media: dvb-usb: az6027: fix three null-ptr-deref in az6027_i2c_xfer() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 127/286] media: dvb-usb-v2: ec168: fix null-ptr-deref in ec168_i2c_xfer() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 128/286] media: dvb-usb-v2: ce6230: fix null-ptr-deref in ce6230_i2c_master_xfer() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 129/286] media: dvb-usb-v2: rtl28xxu: fix null-ptr-deref in rtl28xxu_i2c_xfer Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 130/286] media: dvb-usb: digitv: fix null-ptr-deref in digitv_i2c_xfer() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 131/286] media: dvb-usb: dw2102: fix uninit-value in su3000_read_mac_address Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 132/286] media: netup_unidvb: fix irq init by register it at the end of probe Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 133/286] media: dvb_ca_en50221: fix a size write bug Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 134/286] media: ttusb-dec: fix memory leak in ttusb_dec_exit_dvb() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 135/286] media: mn88443x: fix !CONFIG_OF error by drop of_match_ptr from ID table Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 136/286] media: dvb-core: Fix use-after-free on race condition at dvb_frontend Greg Kroah-Hartman
2023-06-13  3:33   ` Stefan Lippers-Hollmann [this message]
2023-06-13  9:00     ` Stefan Lippers-Hollmann
2023-06-13  9:27       ` Linux regression tracking (Thorsten Leemhuis)
2023-06-07 20:13 ` [PATCH 6.3 137/286] media: dvb-core: Fix use-after-free due on race condition at dvb_net Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 138/286] media: dvb-core: Fix use-after-free due to race at dvb_register_device() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 139/286] media: dvb-core: Fix kernel WARNING for blocking operation in wait_event*() Greg Kroah-Hartman
2023-06-07 20:13 ` [PATCH 6.3 140/286] media: dvb-core: Fix use-after-free due to race condition at dvb_ca_en50221 Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 141/286] ASoC: SOF: debug: conditionally bump runtime_pm counter on exceptions Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 142/286] ASoC: SOF: pcm: fix pm_runtime imbalance in error handling Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 143/286] ASoC: SOF: sof-client-probes: " Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 144/286] ASoC: SOF: pm: save io region state in case of errors in resume Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 145/286] s390/pkey: zeroize key blobs Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 146/286] s390/topology: honour nr_cpu_ids when adding CPUs Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 147/286] s390/ipl: fix IPIB virtual vs physical address confusion Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 148/286] ACPI: resource: Add IRQ override quirk for LG UltraPC 17U70P Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 149/286] wifi: rtl8xxxu: fix authentication timeout due to incorrect RCR value Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 150/286] ARM: dts: stm32: add pin map for CAN controller on stm32f7 Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 151/286] arm64/mm: mark private VM_FAULT_X defines as vm_fault_t Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 152/286] arm64: vdso: Pass (void *) to virt_to_page() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 153/286] wifi: mac80211: simplify chanctx allocation Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 154/286] wifi: mac80211: consider reserved chanctx for mindef Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 155/286] wifi: mac80211: recalc chanctx mindef before assigning Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 156/286] wifi: iwlwifi: mvm: Add locking to the rate read flow Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 157/286] scsi: ufs: core: Fix MCQ tag calculation Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 158/286] scsi: ufs: core: Rename symbol sizeof_utp_transfer_cmd_desc() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 159/286] scsi: ufs: core: Fix MCQ nr_hw_queues Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 160/286] scsi: core: Decrease scsi_devices iorequest_cnt if dispatch failed Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 161/286] wifi: b43: fix incorrect __packed annotation Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 162/286] net: wwan: t7xx: Ensure init is completed before system sleep Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 163/286] netfilter: conntrack: define variables exp_nat_nla_policy and any_addr with CONFIG_NF_NAT Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 164/286] nvme-multipath: dont call blk_mark_disk_dead in nvme_mpath_remove_disk Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 165/286] nvme: do not let the user delete a ctrl before a complete initialization Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 166/286] ALSA: oss: avoid missing-prototype warnings Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 167/286] drm/msm: Be more shouty if per-process pgtables arent working Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 168/286] atm: hide unused procfs functions Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 169/286] ceph: silence smatch warning in reconnect_caps_cb() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 170/286] drm/amdgpu: skip disabling fence driver src_irqs when device is unplugged Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 171/286] ublk: fix AB-BA lockdep warning Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 172/286] nvme-pci: Add quirk for Teamgroup MP33 SSD Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 173/286] block: Deny writable memory mapping if block is read-only Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 174/286] iio: adc: imx93: fix a signedness bug in imx93_adc_read_raw() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 175/286] KVM: arm64: vgic: Fix a circular locking issue Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 176/286] KVM: arm64: vgic: Wrap vgic_its_create() with config_lock Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 177/286] KVM: arm64: vgic: Fix locking comment Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 178/286] KVM: arm64: Prevent unconditional donation of unmapped regions from the host Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 179/286] scsi: qla2xxx: Fix NULL pointer dereference in target mode Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 180/286] perf/x86/intel: Save/restore cpuc->active_pebs_data_cfg when using guest PEBS Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 181/286] KVM: arm64: Reload PTE after invoking walker callback on preorder traversal Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 182/286] media: mediatek: vcodec: Only apply 4K frame sizes on decoder formats Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 183/286] mailbox: mailbox-test: fix a locking issue in mbox_test_message_write() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 184/286] drivers: base: cacheinfo: Fix shared_cpu_map changes in event of CPU hotplug Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 185/286] drivers: base: cacheinfo: Update cpu_map_populated during CPU Hotplug Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 186/286] dt-bindings: serial: 8250_omap: add rs485-rts-active-high Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 187/286] media: uvcvideo: Dont expose unsupported formats to userspace Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 188/286] selftests/ftrace: Choose target function for filter test from samples Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 189/286] drm/amd/display: Only wait for blank completion if OTG active Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 190/286] iio: accel: st_accel: Fix invalid mount_matrix on devices without ACPI _ONT method Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 191/286] iio: adc: mxs-lradc: fix the order of two cleanup operations Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 192/286] iio: tmag5273: Fix runtime PM leak on measurement error Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 193/286] iio: ad4130: Make sure clock provider gets removed Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 194/286] iio: adc: mt6370: Fix ibus and ibat scaling value of some specific vendor ID chips Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 195/286] HID: google: add jewel USB id Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 196/286] HID: wacom: avoid integer overflow in wacom_intuos_inout() Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 197/286] iio: imu: inv_icm42600: fix timestamp reset Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 198/286] dt-bindings: iio: adc: renesas,rcar-gyroadc: Fix adi,ad7476 compatible value Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 199/286] iio: light: vcnl4035: fixed chip ID check Greg Kroah-Hartman
2023-06-07 20:14 ` [PATCH 6.3 200/286] iio: accel: kx022a fix irq getting Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 201/286] iio: adc: stm32-adc: skip adc-channels setup if none is present Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 202/286] iio: adc: ad_sigma_delta: Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 203/286] iio: dac: mcp4725: Fix i2c_master_send() return value handling Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 204/286] iio: addac: ad74413: fix resistance input processing Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 205/286] iio: adc: ad7192: Change "shorted" channels to differential Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 206/286] iio: adc: stm32-adc: skip adc-diff-channels setup if none is present Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 207/286] iio: dac: build ad5758 driver when AD5758 is selected Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 208/286] net: usb: qmi_wwan: Set DTR quirk for BroadMobi BM818 Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 209/286] dt-bindings: usb: snps,dwc3: Fix "snps,hsphy_interface" type Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 210/286] usb: cdns3: fix NCM gadget RX speed 20x slow than expection at iMX8QM Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 211/286] usb: gadget: f_fs: Add unbind event before functionfs_unbind Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 212/286] md/raid5: fix miscalculation of end_sector in raid5_read_one_chunk() Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 213/286] misc: fastrpc: Reassign memory ownership only for remote heap Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 214/286] misc: fastrpc: return -EPIPE to invocations on device removal Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 215/286] misc: fastrpc: reject new invocations during " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 216/286] scsi: stex: Fix gcc 13 warnings Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 217/286] ata: libata-scsi: Use correct device no in ata_find_dev() Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 218/286] drm/amdgpu: enable tmz by default for GC 11.0.1 Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 219/286] drm/amd/pm: reverse mclk and fclk clocks levels for SMU v13.0.4 Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 220/286] drm/amd/pm: reverse mclk and fclk clocks levels for vangogh Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 221/286] drm/amd/pm: resolve reboot exception for si oland Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 222/286] drm/amd/pm: reverse mclk clocks levels for SMU v13.0.5 Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 223/286] drm/amd/pm: reverse mclk and fclk clocks levels for yellow carp Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 224/286] drm/amd/pm: reverse mclk and fclk clocks levels for renoir Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 225/286] mmc: vub300: fix invalid response handling Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 226/286] mmc: pwrseq: sd8787: Fix WILC CHIP_EN and RESETN toggling order Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 227/286] tty: serial: fsl_lpuart: use UARTCTRL_TXINV to send break instead of UARTCTRL_SBK Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 228/286] btrfs: fix csum_tree_block page iteration to avoid tripping on -Werror=array-bounds Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 229/286] phy: qcom-qmp-combo: fix init-count imbalance Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 230/286] phy: qcom-qmp-pcie-msm8996: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 231/286] block: fix revalidate performance regression Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 232/286] powerpc/iommu: Limit number of TCEs to 512 for H_STUFF_TCE hcall Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 233/286] iommu/amd: Fix domain flush size when syncing iotlb Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 234/286] tpm, tpm_tis: correct tpm_tis_flags enumeration values Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 235/286] module/decompress: Fix error checking on zstd decompression Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 236/286] firmware: qcom_scm: Use fixed width src vm bitmap Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 237/286] misc: fastrpc: Pass proper scm arguments for secure map request Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 238/286] btrfs: call btrfs_orig_bbio_end_io in btrfs_end_bio_work Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 239/286] HID: hidpp: terminate retry loop on success Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 240/286] dmaengine: at_hdmac: Repair bitfield macros for peripheral ID handling Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 241/286] dmaengine: at_hdmac: Extend the Flow Controller bitfield to three bits Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 242/286] riscv: perf: Fix callchain parse error with kernel tracepoint events Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 243/286] io_uring: undeprecate epoll_ctl support Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 244/286] selinux: dont use makes grouped targets feature yet Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 245/286] mtdchar: mark bits of ioctl handler noinline Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 246/286] tracing/timerlat: Always wakeup the timerlat thread Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 247/286] tracing/histograms: Allow variables to have some modifiers Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 248/286] tracing/probe: trace_probe_primary_from_call(): checked list_first_entry Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 249/286] selftests: mptcp: connect: skip if MPTCP is not supported Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 250/286] selftests: mptcp: pm nl: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 251/286] selftests: mptcp: join: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 252/286] selftests: mptcp: join: avoid using cmp --bytes Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 253/286] selftests: mptcp: diag: skip if MPTCP is not supported Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 254/286] selftests: mptcp: simult flows: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 255/286] selftests: mptcp: sockopt: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 256/286] selftests: mptcp: userspace pm: " Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 257/286] mptcp: fix connect timeout handling Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 258/286] mptcp: fix active subflow finalization Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 259/286] ext4: add EA_INODE checking to ext4_iget() Greg Kroah-Hartman
2023-06-07 20:15 ` [PATCH 6.3 260/286] ext4: set lockdep subclass for the ea_inode in ext4_xattr_inode_cache_find() Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 261/286] ext4: disallow ea_inodes with extended attributes Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 262/286] ext4: add lockdep annotations for i_data_sem for ea_inodes Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 263/286] fbcon: Fix null-ptr-deref in soft_cursor Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 264/286] serial: 8250_tegra: Fix an error handling path in tegra_uart_probe() Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 265/286] serial: cpm_uart: Fix a COMPILE_TEST dependency Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 266/286] powerpc/xmon: Use KSYM_NAME_LEN in array size Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 267/286] test_firmware: prevent race conditions by a correct implementation of locking Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 268/286] test_firmware: fix a memory leak with reqs buffer Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 269/286] test_firmware: fix the memory leak of the allocated firmware buffer Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 270/286] KVM: arm64: Populate fault info for watchpoint Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 271/286] KVM: arm64: Drop last page ref in kvm_pgtable_stage2_free_removed() Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 272/286] KVM: x86/mmu: Grab memslot for correct address space in NX recovery worker Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 273/286] KVM: x86: Account fastpath-only VM-Exits in vCPU stats Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 274/286] KVM: x86: Bail from kvm_recalculate_phys_map() if x2APIC ID is out-of-bounds Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 275/286] ksmbd: fix credit count leakage Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 276/286] ksmbd: fix UAF issue from opinfo->conn Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 277/286] ksmbd: fix incorrect AllocationSize set in smb2_get_info Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 278/286] ksmbd: fix slab-out-of-bounds read in smb2_handle_negotiate Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 279/286] ksmbd: fix multiple out-of-bounds read during context decoding Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 280/286] KEYS: asymmetric: Copy sig and digest in public_key_verify_signature() Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 281/286] regmap: Account for register length when chunking Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 282/286] tpm, tpm_tis: Request threaded interrupt handler Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 283/286] iommu/amd/pgtbl_v2: Fix domain max address Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 284/286] xfs: verify buffer contents when we skip log replay Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 285/286] riscv: vmlinux.lds.S: Explicitly handle .got section Greg Kroah-Hartman
2023-06-07 20:16 ` [PATCH 6.3 286/286] ext4: enable the lazy init thread when remounting read/write Greg Kroah-Hartman
2023-06-08  1:20 ` [PATCH 6.3 000/286] 6.3.7-rc1 review Shuah Khan
2023-06-08  3:35 ` Florian Fainelli
2023-06-08  6:36 ` Markus Reichelt
2023-06-08  7:23 ` Chris Paterson
2023-06-08  9:45 ` Conor Dooley
2023-06-08  9:53 ` Ron Economos
2023-06-08 10:51 ` Naresh Kamboju
2023-06-08 11:29 ` Bagas Sanjaya
2023-06-08 17:25 ` Justin Forbes

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=20230613053314.70839926@mir \
    --to=s.l-h@gmx.de \
    --cc=gregkh@linuxfoundation.org \
    --cc=imv4bel@gmail.com \
    --cc=mchehab@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 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.