From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Ricard Wanderlof <ricard2013@butoba.net>,
Takashi Iwai <tiwai@suse.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 015/179] ALSA: usb-audio: Fix CME quirk for UF series keyboards
Date: Tue, 29 Apr 2025 18:39:16 +0200 [thread overview]
Message-ID: <20250429161050.020574796@linuxfoundation.org> (raw)
In-Reply-To: <20250429161049.383278312@linuxfoundation.org>
5.4-stable review patch. If anyone has any objections, please let me know.
------------------
From: Ricard Wanderlof <ricard2013@butoba.net>
[ Upstream commit c2820405ba55a38932aa2177f026b70064296663 ]
Fix quirk for CME master keyboards so it not only handles
sysex but also song position pointer, MIDI timing clock, start
and stop messages, and active sensing. All of these can be
output by the CME UF series master keyboards.
Tested with a CME UF6 in a desktop Linux environment as
well as on the Zynthian Raspberry Pi based platform.
Signed-off-by: Ricard Wanderlof <ricard2013@butoba.net>
Link: https://patch.msgid.link/20250313-cme-fix-v1-1-d404889e4de8@butoba.net
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
sound/usb/midi.c | 80 ++++++++++++++++++++++++++++++++++++++++++++----
1 file changed, 74 insertions(+), 6 deletions(-)
diff --git a/sound/usb/midi.c b/sound/usb/midi.c
index f175c537353a0..2dded1f2ca05e 100644
--- a/sound/usb/midi.c
+++ b/sound/usb/midi.c
@@ -505,16 +505,84 @@ static void ch345_broken_sysex_input(struct snd_usb_midi_in_endpoint *ep,
/*
* CME protocol: like the standard protocol, but SysEx commands are sent as a
- * single USB packet preceded by a 0x0F byte.
+ * single USB packet preceded by a 0x0F byte, as are system realtime
+ * messages and MIDI Active Sensing.
+ * Also, multiple messages can be sent in the same packet.
*/
static void snd_usbmidi_cme_input(struct snd_usb_midi_in_endpoint *ep,
uint8_t *buffer, int buffer_length)
{
- if (buffer_length < 2 || (buffer[0] & 0x0f) != 0x0f)
- snd_usbmidi_standard_input(ep, buffer, buffer_length);
- else
- snd_usbmidi_input_data(ep, buffer[0] >> 4,
- &buffer[1], buffer_length - 1);
+ int remaining = buffer_length;
+
+ /*
+ * CME send sysex, song position pointer, system realtime
+ * and active sensing using CIN 0x0f, which in the standard
+ * is only intended for single byte unparsed data.
+ * So we need to interpret these here before sending them on.
+ * By default, we assume single byte data, which is true
+ * for system realtime (midi clock, start, stop and continue)
+ * and active sensing, and handle the other (known) cases
+ * separately.
+ * In contrast to the standard, CME does not split sysex
+ * into multiple 4-byte packets, but lumps everything together
+ * into one. In addition, CME can string multiple messages
+ * together in the same packet; pressing the Record button
+ * on an UF6 sends a sysex message directly followed
+ * by a song position pointer in the same packet.
+ * For it to have any reasonable meaning, a sysex message
+ * needs to be at least 3 bytes in length (0xf0, id, 0xf7),
+ * corresponding to a packet size of 4 bytes, and the ones sent
+ * by CME devices are 6 or 7 bytes, making the packet fragments
+ * 7 or 8 bytes long (six or seven bytes plus preceding CN+CIN byte).
+ * For the other types, the packet size is always 4 bytes,
+ * as per the standard, with the data size being 3 for SPP
+ * and 1 for the others.
+ * Thus all packet fragments are at least 4 bytes long, so we can
+ * skip anything that is shorter; this also conveniantly skips
+ * packets with size 0, which CME devices continuously send when
+ * they have nothing better to do.
+ * Another quirk is that sometimes multiple messages are sent
+ * in the same packet. This has been observed for midi clock
+ * and active sensing i.e. 0x0f 0xf8 0x00 0x00 0x0f 0xfe 0x00 0x00,
+ * but also multiple note ons/offs, and control change together
+ * with MIDI clock. Similarly, some sysex messages are followed by
+ * the song position pointer in the same packet, and occasionally
+ * additionally by a midi clock or active sensing.
+ * We handle this by looping over all data and parsing it along the way.
+ */
+ while (remaining >= 4) {
+ int source_length = 4; /* default */
+
+ if ((buffer[0] & 0x0f) == 0x0f) {
+ int data_length = 1; /* default */
+
+ if (buffer[1] == 0xf0) {
+ /* Sysex: Find EOX and send on whole message. */
+ /* To kick off the search, skip the first
+ * two bytes (CN+CIN and SYSEX (0xf0).
+ */
+ uint8_t *tmp_buf = buffer + 2;
+ int tmp_length = remaining - 2;
+
+ while (tmp_length > 1 && *tmp_buf != 0xf7) {
+ tmp_buf++;
+ tmp_length--;
+ }
+ data_length = tmp_buf - buffer;
+ source_length = data_length + 1;
+ } else if (buffer[1] == 0xf2) {
+ /* Three byte song position pointer */
+ data_length = 3;
+ }
+ snd_usbmidi_input_data(ep, buffer[0] >> 4,
+ &buffer[1], data_length);
+ } else {
+ /* normal channel events */
+ snd_usbmidi_standard_input(ep, buffer, source_length);
+ }
+ buffer += source_length;
+ remaining -= source_length;
+ }
}
/*
--
2.39.5
next prev parent reply other threads:[~2025-04-29 16:45 UTC|newest]
Thread overview: 185+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-29 16:39 [PATCH 5.4 000/179] 5.4.293-rc1 review Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 001/179] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 002/179] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 003/179] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 004/179] ata: sata_sx4: Drop pointless VPRINTK() calls and convert the remaining ones Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 005/179] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 006/179] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 007/179] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 008/179] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 009/179] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 010/179] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 011/179] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 012/179] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 013/179] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 014/179] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-29 16:39 ` Greg Kroah-Hartman [this message]
2025-04-29 16:39 ` [PATCH 5.4 016/179] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 017/179] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 018/179] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 019/179] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 020/179] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 021/179] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 022/179] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 023/179] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 024/179] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 025/179] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 026/179] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 027/179] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 028/179] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 029/179] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 030/179] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 031/179] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 032/179] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 033/179] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 034/179] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 035/179] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 036/179] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 037/179] pwm: mediatek: Always use bus clock Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 038/179] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 039/179] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 040/179] bpf: Add endian modifiers to fix endian warnings Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 041/179] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 042/179] ext4: reject casefold inode flag without casefold feature Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 043/179] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 044/179] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 045/179] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 046/179] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 047/179] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 048/179] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 049/179] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 050/179] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 051/179] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 052/179] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 053/179] media: i2c: ov7251: Set enable GPIO low in probe Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 054/179] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 055/179] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 056/179] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 057/179] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-29 16:39 ` [PATCH 5.4 058/179] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 059/179] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 060/179] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 061/179] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 062/179] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 063/179] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 064/179] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 065/179] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 066/179] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 067/179] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 068/179] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 069/179] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 070/179] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 071/179] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 072/179] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 073/179] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 074/179] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 075/179] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 076/179] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 077/179] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 078/179] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 079/179] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 080/179] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 081/179] pwm: mediatek: always use bus clock for PWM on MT7622 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 082/179] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 083/179] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 084/179] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 085/179] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 086/179] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 087/179] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 088/179] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 089/179] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 090/179] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 091/179] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 092/179] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 093/179] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 094/179] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 095/179] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 096/179] NFSD: Constify @fh argument of knfsd_fh_hash() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 097/179] nfs: move nfs_fhandle_hash to common include file Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 098/179] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 099/179] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 100/179] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 101/179] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 102/179] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 103/179] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 104/179] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 105/179] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 106/179] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 107/179] module: sign with sha512 instead of sha1 by default Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 108/179] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 109/179] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 110/179] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 111/179] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 112/179] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 113/179] powerpc/prom_init: Use -ffreestanding to avoid a reference to bcmp Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 114/179] tcp/dccp: Dont use timer_pending() in reqsk_queue_unlink() Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 115/179] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 116/179] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 117/179] usb: dwc3: support continuous runtime PM with dual role Greg Kroah-Hartman
2025-04-29 16:40 ` [PATCH 5.4 118/179] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 119/179] mmc: cqhci: Fix checking of CQHCI_HALT state Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 120/179] net: openvswitch: fix race on port output Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 121/179] openvswitch: fix lockup on tx to unregistering netdev with carrier Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 122/179] RDMA/srpt: Support specifying the srpt_service_guid parameter Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 123/179] virtio-net: Add validation for used length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 124/179] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 125/179] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 126/179] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 127/179] platform/x86: ISST: Correct command storage data length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 128/179] ext4: simplify checking quota limits in ext4_statfs() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 129/179] ext4: code cleanup for ext4_statfs_project() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 130/179] ext4: dont over-report free space or inodes in statvfs Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 131/179] ext4: optimize __ext4_check_dir_entry() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 132/179] ext4: fix OOB read when checking dotdot dir Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 133/179] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 134/179] net: dsa: mv88e6xxx: fix VTU methods for 6320 family Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 135/179] iio: adc: ad7768-1: Move setting of val a bit later to avoid unnecessary return value check Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 136/179] iio: adc: ad7768-1: Fix conversion result sign Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 137/179] PCI: Rename PCI_IRQ_LEGACY to PCI_IRQ_INTX Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 138/179] misc: pci_endpoint_test: Use INTX instead of LEGACY Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 139/179] misc: pci_endpoint_test: Fix displaying irq_type after request_irq error Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 140/179] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 141/179] cpufreq: scpi: Fix null-ptr-deref in scpi_cpufreq_get_rate() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 142/179] net: phy: leds: fix memory leak Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 143/179] tipc: fix NULL pointer dereference in tipc_mon_reinit_self() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 144/179] net_sched: hfsc: Fix a UAF vulnerability in class handling Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 145/179] net_sched: hfsc: Fix a potential UAF in hfsc_dequeue() too Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 146/179] virtio_console: fix missing byte order handling for cols and rows Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 147/179] mcb: fix a double free bug in chameleon_parse_gdd() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 148/179] USB: storage: quirk for ADATA Portable HDD CH94 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 149/179] serial: sifive: lock port in startup()/shutdown() callbacks Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 150/179] USB: serial: ftdi_sio: add support for Abacus Electrics Optical Probe Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 151/179] USB: serial: option: add Sierra Wireless EM9291 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 152/179] USB: serial: simple: add OWON HDS200 series oscilloscope support Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 153/179] usb: cdns3: Fix deadlock when using NCM gadget Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 154/179] USB: OHCI: Add quirk for LS7A OHCI controller (rev 0x02) Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 155/179] usb: dwc3: gadget: check that event count does not exceed event buffer length Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 156/179] usb: quirks: add DELAY_INIT quirk for Silicon Motion Flash Drive Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 157/179] usb: quirks: Add delay init quirk for SanDisk 3.2Gen1 " Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 158/179] USB: VLI disk crashes if LPM is used Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 159/179] MIPS: cm: Detect CM quirks from device tree Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 160/179] crypto: null - Use spin lock instead of mutex Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 161/179] clk: check for disabled clock-provider in of_clk_get_hw_from_clkspec() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 162/179] parisc: PDT: Fix missing prototype warning Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 163/179] usb: host: max3421-hcd: Add missing spi_device_id table Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 164/179] dmaengine: dmatest: Fix dmatest waiting less when interrupted Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 165/179] usb: gadget: aspeed: Add NULL pointer check in ast_vhub_init_dev() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 166/179] qibfs: fix _another_ leak Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 167/179] ntb: reduce stack usage in idt_scan_mws Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 168/179] sched/isolation: Make CONFIG_CPU_ISOLATION depend on CONFIG_SMP Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 169/179] KVM: s390: Dont use %pK through tracepoints Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 170/179] udmabuf: fix a buf size overflow issue during udmabuf creation Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 171/179] selftests: ublk: fix test_stripe_04 Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 172/179] ACPI PPTT: Fix coding mistakes in a couple of sizeof() calls Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 173/179] x86/bugs: Dont fill RSB on VMEXIT with eIBRS+retpoline Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 174/179] scsi: pm80xx: Set phy_attached to zero when device is gone Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 175/179] md/raid1: Add check for missing source disk in process_checks() Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 176/179] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 177/179] comedi: jr3_pci: Fix synchronous deletion of timer Greg Kroah-Hartman
2025-04-29 16:41 ` [PATCH 5.4 178/179] crypto: atmel-sha204a - Set hwrng quality to lowest possible Greg Kroah-Hartman
2025-04-29 16:42 ` [PATCH 5.4 179/179] MIPS: cm: Fix warning if MIPS_CM is disabled Greg Kroah-Hartman
2025-04-30 15:02 ` [PATCH 5.4 000/179] 5.4.293-rc1 review Jon Hunter
2025-04-30 15:55 ` Shuah Khan
2025-04-30 16:46 ` Naresh Kamboju
2025-04-30 18:08 ` ALOK TIWARI
2025-05-02 12:04 ` Florian Fainelli
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=20250429161050.020574796@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=patches@lists.linux.dev \
--cc=ricard2013@butoba.net \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=tiwai@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox