linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Tony Battersby <tonyb@cybernetics.com>,
	Himanshu Madhani <himanshu.madhani@oracle.com>,
	Arun Easi <aeasi@marvell.com>,
	Nilesh Javali <njavali@marvell.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>
Subject: [PATCH 5.4 249/389] scsi: qla2xxx: Fix discovery issues in FC-AL topology
Date: Tue, 23 Aug 2022 10:25:27 +0200	[thread overview]
Message-ID: <20220823080125.977099866@linuxfoundation.org> (raw)
In-Reply-To: <20220823080115.331990024@linuxfoundation.org>

From: Arun Easi <aeasi@marvell.com>

commit 47ccb113cead905bdc236571bf8ac6fed90321b3 upstream.

A direct attach tape device, when gets swapped with another, was not
discovered. Fix this by looking at loop map and reinitialize link if there
are devices present.

Link: https://lore.kernel.org/linux-scsi/baef87c3-5dad-3b47-44c1-6914bfc90108@cybernetics.com/
Link: https://lore.kernel.org/r/20220713052045.10683-8-njavali@marvell.com
Cc: stable@vger.kernel.org
Reported-by: Tony Battersby <tonyb@cybernetics.com>
Tested-by: Tony Battersby <tonyb@cybernetics.com>
Reviewed-by: Himanshu Madhani <himanshu.madhani@oracle.com>
Signed-off-by: Arun Easi <aeasi@marvell.com>
Signed-off-by: Nilesh Javali <njavali@marvell.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/scsi/qla2xxx/qla_gbl.h  |    3 ++-
 drivers/scsi/qla2xxx/qla_init.c |   29 +++++++++++++++++++++++++++++
 drivers/scsi/qla2xxx/qla_mbx.c  |    5 ++++-
 3 files changed, 35 insertions(+), 2 deletions(-)

--- a/drivers/scsi/qla2xxx/qla_gbl.h
+++ b/drivers/scsi/qla2xxx/qla_gbl.h
@@ -397,7 +397,8 @@ extern int
 qla2x00_get_resource_cnts(scsi_qla_host_t *);
 
 extern int
-qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map);
+qla2x00_get_fcal_position_map(scsi_qla_host_t *ha, char *pos_map,
+		u8 *num_entries);
 
 extern int
 qla2x00_get_link_status(scsi_qla_host_t *, uint16_t, struct link_statistics *,
--- a/drivers/scsi/qla2xxx/qla_init.c
+++ b/drivers/scsi/qla2xxx/qla_init.c
@@ -5068,6 +5068,22 @@ qla2x00_configure_loop(scsi_qla_host_t *
 	return (rval);
 }
 
+static void
+qla_reinitialize_link(scsi_qla_host_t *vha)
+{
+	int rval;
+
+	atomic_set(&vha->loop_state, LOOP_DOWN);
+	atomic_set(&vha->loop_down_timer, LOOP_DOWN_TIME);
+	rval = qla2x00_full_login_lip(vha);
+	if (rval == QLA_SUCCESS) {
+		ql_dbg(ql_dbg_disc, vha, 0xd050, "Link reinitialized\n");
+	} else {
+		ql_dbg(ql_dbg_disc, vha, 0xd051,
+			"Link reinitialization failed (%d)\n", rval);
+	}
+}
+
 /*
  * qla2x00_configure_local_loop
  *	Updates Fibre Channel Device Database with local loop devices.
@@ -5132,6 +5148,19 @@ skip_login:
 		spin_unlock_irqrestore(&vha->work_lock, flags);
 
 		if (vha->scan.scan_retry < MAX_SCAN_RETRIES) {
+			u8 loop_map_entries = 0;
+			int rc;
+
+			rc = qla2x00_get_fcal_position_map(vha, NULL,
+						&loop_map_entries);
+			if (rc == QLA_SUCCESS && loop_map_entries > 1) {
+				/*
+				 * There are devices that are still not logged
+				 * in. Reinitialize to give them a chance.
+				 */
+				qla_reinitialize_link(vha);
+				return QLA_FUNCTION_FAILED;
+			}
 			set_bit(LOCAL_LOOP_UPDATE, &vha->dpc_flags);
 			set_bit(LOOP_RESYNC_NEEDED, &vha->dpc_flags);
 		}
--- a/drivers/scsi/qla2xxx/qla_mbx.c
+++ b/drivers/scsi/qla2xxx/qla_mbx.c
@@ -2928,7 +2928,8 @@ qla2x00_get_resource_cnts(scsi_qla_host_
  *	Kernel context.
  */
 int
-qla2x00_get_fcal_position_map(scsi_qla_host_t *vha, char *pos_map)
+qla2x00_get_fcal_position_map(scsi_qla_host_t *vha, char *pos_map,
+		u8 *num_entries)
 {
 	int rval;
 	mbx_cmd_t mc;
@@ -2968,6 +2969,8 @@ qla2x00_get_fcal_position_map(scsi_qla_h
 
 		if (pos_map)
 			memcpy(pos_map, pmap, FCAL_MAP_SIZE);
+		if (num_entries)
+			*num_entries = pmap[0];
 	}
 	dma_pool_free(ha->s_dma_pool, pmap, pmap_dma);
 



  parent reply	other threads:[~2022-08-23 11:43 UTC|newest]

Thread overview: 415+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-23  8:21 [PATCH 5.4 000/389] 5.4.211-rc1 review Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 001/389] Makefile: link with -z noexecstack --no-warn-rwx-segments Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 002/389] x86: link vdso and boot " Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 003/389] scsi: Revert "scsi: qla2xxx: Fix disk failure to rediscover" Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 004/389] ALSA: bcd2000: Fix a UAF bug on the error path of probing Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 005/389] igc: Remove _I_PHY_ID checking Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 006/389] wifi: mac80211_hwsim: fix race condition in pending packet Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 007/389] wifi: mac80211_hwsim: add back erroneously removed cast Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 008/389] wifi: mac80211_hwsim: use 32-bit skb cookie Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 009/389] add barriers to buffer_uptodate and set_buffer_uptodate Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 010/389] HID: wacom: Only report rotation for art pen Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 011/389] HID: wacom: Dont register pad_input for touch switch Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 012/389] KVM: nVMX: Snapshot pre-VM-Enter BNDCFGS for !nested_run_pending case Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 013/389] KVM: nVMX: Snapshot pre-VM-Enter DEBUGCTL " Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 014/389] KVM: SVM: Dont BUG if userspace injects an interrupt with GIF=0 Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 015/389] KVM: nVMX: Let userspace set nVMX MSR to any _host_ supported value Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 016/389] KVM: x86: Mark TSS busy during LTR emulation _after_ all fault checks Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 017/389] KVM: x86: Set error code to segment selector on LLDT/LTR non-canonical #GP Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 018/389] mm/mremap: hold the rmap lock in write mode when moving page table entries Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 019/389] ALSA: hda/conexant: Add quirk for LENOVO 20149 Notebook model Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 020/389] ALSA: hda/cirrus - support for iMac 12,1 model Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 021/389] ALSA: hda/realtek: Add quirk for another Asus K42JZ model Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 022/389] tty: vt: initialize unicode screen buffer Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 023/389] vfs: Check the truncate maximum size in inode_newsize_ok() Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 024/389] fs: Add missing umask strip in vfs_tmpfile Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 025/389] thermal: sysfs: Fix cooling_device_stats_setup() error code path Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 026/389] fbcon: Fix boundary checks for fbcon=vc:n1-n2 parameters Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 027/389] usbnet: Fix linkwatch use-after-free on disconnect Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 028/389] ovl: drop WARN_ON() dentry is NULL in ovl_encode_fh() Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 029/389] parisc: Fix device names in /proc/iomem Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 030/389] parisc: io_pgetevents_time64() needs compat syscall in 32-bit compat mode Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 031/389] drm/gem: Properly annotate WW context on drm_gem_lock_reservations() error Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 032/389] drm/nouveau: fix another off-by-one in nvbios_addr Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 033/389] drm/amdgpu: Check BOs requested pinning domains against its preferred_domains Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 034/389] iio: light: isl29028: Fix the warning in isl29028_remove() Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 035/389] fuse: limit nsec Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 036/389] serial: mvebu-uart: uart2 error bits clearing Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 037/389] md-raid10: fix KASAN warning Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 038/389] ia64, processor: fix -Wincompatible-pointer-types in ia64_get_irr() Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 039/389] PCI: Add defines for normal and subtractive PCI bridges Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 040/389] powerpc/fsl-pci: Fix Class Code of PCIe Root Port Greg Kroah-Hartman
2022-08-23  8:21 ` [PATCH 5.4 041/389] powerpc/ptdump: Fix display of RW pages on FSL_BOOK3E Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 042/389] powerpc/powernv: Avoid crashing if rng is NULL Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 043/389] MIPS: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 044/389] coresight: Clear the connection field properly Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 045/389] USB: HCD: Fix URB giveback issue in tasklet function Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 046/389] ARM: dts: uniphier: Fix USB interrupts for PXs2 SoC Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 047/389] arm64: dts: uniphier: Fix USB interrupts for PXs3 SoC Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 048/389] netfilter: nf_tables: do not allow SET_ID to refer to another table Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 049/389] netfilter: nf_tables: do not allow RULE_ID to refer to another chain Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 050/389] netfilter: nf_tables: fix null deref due to zeroed list head Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 051/389] epoll: autoremove wakers even more aggressively Greg Kroah-Hartman
2022-10-26 16:00   ` mdecandia
2022-10-26 16:43     ` Greg KH
     [not found]       ` <CAAPDZK9Oz2Hs9wofW9820gM=SeWgycCEWN=Xsjmy-YY_iFBcfQ@mail.gmail.com>
2022-10-26 18:48         ` Shakeel Butt
2022-10-27 10:09           ` Greg KH
2022-11-30  0:34             ` Samuel Mendoza-Jonas
2022-08-23  8:22 ` [PATCH 5.4 052/389] x86: Handle idle=nomwait cmdline properly for x86_idle Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 053/389] arm64: Do not forget syscall when starting a new thread Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 054/389] arm64: fix oops in concurrently setting insn_emulation sysctls Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 055/389] ext2: Add more validity checks for inode counts Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 056/389] genirq: Dont return error on missing optional irq_request_resources() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 057/389] wait: Fix __wait_event_hrtimeout for RT/DL tasks Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 058/389] ARM: dts: imx6ul: add missing properties for sram Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 059/389] ARM: dts: imx6ul: change operating-points to uint32-matrix Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 060/389] ARM: dts: imx6ul: fix csi node compatible Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 061/389] ARM: dts: imx6ul: fix lcdif " Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 062/389] ARM: dts: imx6ul: fix qspi " Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 063/389] spi: synquacer: Add missing clk_disable_unprepare() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 064/389] ARM: OMAP2+: display: Fix refcount leak bug Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 065/389] ACPI: EC: Remove duplicate ThinkPad X1 Carbon 6th entry from DMI quirks Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 066/389] ACPI: PM: save NVS memory for Lenovo G40-45 Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 067/389] ACPI: LPSS: Fix missing check in register_device_clock() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 068/389] arm64: dts: qcom: ipq8074: fix NAND node name Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 069/389] arm64: dts: allwinner: a64: orangepi-win: Fix LED " Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 070/389] ARM: shmobile: rcar-gen2: Increase refcount for new reference Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 071/389] PM: hibernate: defer device probing when resuming from hibernation Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 072/389] selinux: Add boundary check in put_entry() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 073/389] spi: spi-rspi: Fix PIO fallback on RZ platforms Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 074/389] ARM: findbit: fix overflowing offset Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 075/389] meson-mx-socinfo: Fix refcount leak in meson_mx_socinfo_init Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 076/389] ARM: bcm: Fix refcount leak in bcm_kona_smc_init Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 077/389] x86/pmem: Fix platform-device leak in error path Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 078/389] ARM: dts: ast2500-evb: fix board compatible Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 079/389] ARM: dts: ast2600-evb: " Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 080/389] soc: fsl: guts: machine variable might be unset Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 081/389] ARM: dts: qcom: mdm9615: add missing PMIC GPIO reg Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 082/389] ARM: OMAP2+: Fix refcount leak in omapdss_init_of Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 083/389] ARM: OMAP2+: Fix refcount leak in omap3xxx_prm_late_init Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 084/389] cpufreq: zynq: Fix refcount leak in zynq_get_revision Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 085/389] soc: qcom: aoss: Fix refcount leak in qmp_cooling_devices_register Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 086/389] ARM: dts: qcom: pm8841: add required thermal-sensor-cells Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 087/389] bus: hisi_lpc: fix missing platform_device_put() in hisi_lpc_acpi_probe() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 088/389] arm64: dts: mt7622: fix BPI-R64 WPS button Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 089/389] erofs: avoid consecutive detection for Highmem memory Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 090/389] blk-mq: dont create hctx debugfs dir until q->debugfs_dir is created Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 091/389] regulator: of: Fix refcount leak bug in of_get_regulation_constraints() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 092/389] nohz/full, sched/rt: Fix missed tick-reenabling bug in dequeue_task_rt() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 093/389] thermal/tools/tmon: Include pthread and time headers in tmon.h Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 094/389] dm: return early from dm_pr_call() if DM device is suspended Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 095/389] ath10k: do not enforce interrupt trigger type Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 096/389] wifi: rtlwifi: fix error codes in rtl_debugfs_set_write_h2c() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 097/389] drm/mipi-dbi: align max_chunk to 2 in spi_transfer Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 098/389] drm/radeon: fix potential buffer overflow in ni_set_mc_special_registers() Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 099/389] drm/mediatek: Add pull-down MIPI operation in mtk_dsi_poweroff function Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 100/389] drm: adv7511: override i2c address of cec before accessing it Greg Kroah-Hartman
2022-08-23  8:22 ` [PATCH 5.4 101/389] i2c: Fix a potential use after free Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 102/389] media: tw686x: Register the irq at the end of probe Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 103/389] ath9k: fix use-after-free in ath9k_hif_usb_rx_cb Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 104/389] wifi: iwlegacy: 4965: fix potential off-by-one overflow in il4965_rs_fill_link_cmd() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 105/389] drm: bridge: adv7511: Add check for mipi_dsi_driver_register Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 106/389] drm/mcde: Fix refcount leak in mcde_dsi_bind Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 107/389] media: hdpvr: fix error value returns in hdpvr_read Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 108/389] drm/vc4: plane: Remove subpixel positioning check Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 109/389] drm/vc4: plane: Fix margin calculations for the right/bottom edges Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 110/389] drm/vc4: dsi: Correct DSI divider calculations Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 111/389] crypto: arm64/gcm - Select AEAD for GHASH_ARM64_CE Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 112/389] drm/rockchip: vop: Dont crash for invalid duplicate_state() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 113/389] drm/rockchip: Fix an error handling path rockchip_dp_probe() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 114/389] drm/mediatek: dpi: Remove output format of YUV Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 115/389] drm/mediatek: dpi: Only enable dpi after the bridge is enabled Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 116/389] drm: bridge: sii8620: fix possible off-by-one Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 117/389] drm/msm/mdp5: Fix global state lock backoff Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 118/389] crypto: hisilicon - Kunpeng916 crypto driver dont sleep when in softirq Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 119/389] media: platform: mtk-mdp: Fix mdp_ipi_comm structure alignment Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 120/389] mediatek: mt76: mac80211: Fix missing of_node_put() in mt76_led_init() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 121/389] drm/exynos/exynos7_drm_decon: free resources when clk_set_parent() failed Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 122/389] tcp: make retransmitted SKB fit into the send window Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 123/389] libbpf: Fix the name of a reused map Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 124/389] selftests: timers: valid-adjtimex: build fix for newer toolchains Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 125/389] selftests: timers: clocksource-switch: fix passing errors from child Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 126/389] fs: check FMODE_LSEEK to control internal pipe splicing Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 127/389] wifi: wil6210: debugfs: fix info leak in wil_write_file_wmi() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 128/389] wifi: p54: Fix an error handling path in p54spi_probe() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 129/389] wifi: p54: add missing parentheses in p54_flush() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 130/389] selftests/bpf: fix a test for snprintf() overflow Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 131/389] can: pch_can: do not report txerr and rxerr during bus-off Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 132/389] can: rcar_can: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 133/389] can: sja1000: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 134/389] can: hi311x: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 135/389] can: sun4i_can: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 136/389] can: kvaser_usb_hydra: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 137/389] can: kvaser_usb_leaf: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 138/389] can: usb_8dev: " Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 139/389] can: error: specify the values of data[5..7] of CAN error frames Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 140/389] can: pch_can: pch_can_error(): initialize errc before using it Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 141/389] Bluetooth: hci_intel: Add check for platform_driver_register Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 142/389] i2c: cadence: Support PEC for SMBus block read Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 143/389] i2c: mux-gpmux: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 144/389] wifi: wil6210: debugfs: fix uninitialized variable use in `wil_write_file_wmi()` Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 145/389] wifi: iwlwifi: mvm: fix double list_add at iwl_mvm_mac_wake_tx_queue Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 146/389] wifi: libertas: Fix possible refcount leak in if_usb_probe() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 147/389] net/mlx5e: Fix the value of MLX5E_MAX_RQ_NUM_MTTS Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 148/389] crypto: inside-secure - Add missing MODULE_DEVICE_TABLE for of Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 149/389] iavf: Fix max_rate limiting Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 150/389] netdevsim: Avoid allocation warnings triggered from user space Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 151/389] net: rose: fix netdev reference changes Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 152/389] dccp: put dccp_qpolicy_full() and dccp_qpolicy_push() in the same lock Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 153/389] clk: renesas: r9a06g032: Fix UART clkgrp bitsel Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 154/389] mtd: maps: Fix refcount leak in of_flash_probe_versatile Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 155/389] mtd: maps: Fix refcount leak in ap_flash_init Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 156/389] mtd: rawnand: meson: Fix a potential double free issue Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 157/389] HID: cp2112: prevent a buffer overflow in cp2112_xfer() Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 158/389] mtd: sm_ftl: Fix deadlock caused by cancel_work_sync in sm_release Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 159/389] mtd: partitions: Fix refcount leak in parse_redboot_of Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 160/389] mtd: st_spi_fsm: Add a clk_disable_unprepare() in .probe()s error path Greg Kroah-Hartman
2022-08-23  8:23 ` [PATCH 5.4 161/389] fpga: altera-pr-ip: fix unsigned comparison with less than zero Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 162/389] usb: host: Fix refcount leak in ehci_hcd_ppc_of_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 163/389] usb: ohci-nxp: Fix refcount leak in ohci_hcd_nxp_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 164/389] usb: xhci: tegra: Fix error check Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 165/389] clk: mediatek: reset: Fix written reset bit offset Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 166/389] misc: rtsx: Fix an error handling path in rtsx_pci_probe() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 167/389] driver core: fix potential deadlock in __driver_attach Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 168/389] clk: qcom: clk-krait: unlock spin after mux completion Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 169/389] usb: host: xhci: use snprintf() in xhci_decode_trb() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 170/389] clk: qcom: ipq8074: fix NSS port frequency tables Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 171/389] clk: qcom: ipq8074: set BRANCH_HALT_DELAY flag for UBI clocks Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 172/389] clk: qcom: camcc-sdm845: Fix topology around titan_top power domain Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 173/389] soundwire: bus_type: fix remove and shutdown support Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 174/389] intel_th: Fix a resource leak in an error handling path Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 175/389] intel_th: msu-sink: Potential dereference of null pointer Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 176/389] intel_th: msu: Fix vmalloced buffers Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 177/389] staging: rtl8192u: Fix sleep in atomic context bug in dm_fsync_timer_callback Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 178/389] mmc: sdhci-of-esdhc: Fix refcount leak in esdhc_signal_voltage_switch Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 179/389] memstick/ms_block: Fix some incorrect memory allocation Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 180/389] memstick/ms_block: Fix a memory leak Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 181/389] mmc: sdhci-of-at91: fix set_uhs_signaling rewriting of MC1R Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 182/389] PCI/portdrv: Dont disable AER reporting in get_port_device_capability() Greg Kroah-Hartman
     [not found]   ` <CABhMZUVycsyy76j2Z=K+C6S1fwtzKE1Lx2povXKfB80o9g0MtQ@mail.gmail.com>
2022-08-24  6:41     ` Greg Kroah-Hartman
2022-08-30 20:47       ` Ben Greear
2022-08-30 20:58         ` Pali Rohár
2022-08-30 21:28           ` Ben Greear
2022-08-30 21:55             ` Pali Rohár
2022-08-30 22:16               ` Ben Greear
2023-03-29 23:17                 ` Ben Greear
2023-03-31 22:06                   ` Bjorn Helgaas
2023-03-31 22:31                     ` Ben Greear
2023-04-04 17:09                       ` Bjorn Helgaas
2023-04-18 18:18                         ` Ben Greear
2023-04-18 20:26                           ` Bjorn Helgaas
2022-08-30 22:11         ` Bjorn Helgaas
2022-08-31  5:52           ` Stefan Roese
2022-09-01 11:08             ` Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 183/389] scsi: smartpqi: Fix DMA direction for RAID requests Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 184/389] usb: gadget: udc: amd5536 depends on HAS_DMA Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 185/389] RDMA/hns: Fix incorrect clearing of interrupt status register Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 186/389] RDMA/siw: Fix duplicated reported IW_CM_EVENT_CONNECT_REPLY event Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 187/389] RDMA/hfi1: fix potential memory leak in setup_base_ctxt() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 188/389] gpio: gpiolib-of: Fix refcount bugs in of_mm_gpiochip_add_data() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 189/389] mmc: cavium-octeon: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 190/389] mmc: cavium-thunderx: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 191/389] HID: alps: Declare U1_UNICORN_LEGACY support Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 192/389] PCI: tegra194: Fix Root Port interrupt handling Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 193/389] PCI: tegra194: Fix link up retry sequence Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 194/389] USB: serial: fix tty-port initialized comments Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 195/389] platform/olpc: Fix uninitialized data in debugfs write Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 196/389] mm/mmap.c: fix missing call to vm_unacct_memory in mmap_region Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 197/389] RDMA/rxe: Fix error unwind in rxe_create_qp() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 198/389] null_blk: fix ida error handling in null_add_dev() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 199/389] jbd2: fix outstanding credits assert in jbd2_journal_commit_transaction() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 200/389] ext4: recover csum seed of tmp_inode after migrating to extents Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 201/389] jbd2: fix assertion jh->b_frozen_data == NULL failure when journal aborted Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 202/389] opp: Fix error check in dev_pm_opp_attach_genpd() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 203/389] ASoC: mediatek: mt8173: Fix refcount leak in mt8173_rt5650_rt5676_dev_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 204/389] ASoC: mt6797-mt6351: Fix refcount leak in mt6797_mt6351_dev_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 205/389] ASoC: codecs: da7210: add check for i2c_add_driver Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 206/389] ASoC: mediatek: mt8173-rt5650: Fix refcount leak in mt8173_rt5650_dev_probe Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 207/389] serial: 8250_dw: Store LSR into lsr_saved_flags in dw8250_tx_wait_empty() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 208/389] ASoC: codecs: msm8916-wcd-digital: move gains from SX_TLV to S8_TLV Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 209/389] ASoC: codecs: wcd9335: " Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 210/389] profiling: fix shift too large makes kernel panic Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 211/389] tty: n_gsm: fix non flow control frames during mux flow off Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 212/389] tty: n_gsm: fix packet re-transmission without open control channel Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 213/389] tty: n_gsm: fix race condition in gsmld_write() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 214/389] remoteproc: qcom: wcnss: Fix handling of IRQs Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 215/389] vfio/ccw: Do not change FSM state in subchannel event Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 216/389] tty: n_gsm: fix wrong T1 retry count handling Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 217/389] tty: n_gsm: fix DM command Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 218/389] tty: n_gsm: fix missing corner cases in gsmld_poll() Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 219/389] iommu/exynos: Handle failed IOMMU device registration properly Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 220/389] rpmsg: qcom_smd: Fix refcount leak in qcom_smd_parse_edge Greg Kroah-Hartman
2022-08-23  8:24 ` [PATCH 5.4 221/389] kfifo: fix kfifo_to_user() return type Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 222/389] mfd: t7l66xb: Drop platform disable callback Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 223/389] mfd: max77620: Fix refcount leak in max77620_initialise_fps Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 224/389] iommu/arm-smmu: qcom_iommu: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 225/389] s390/zcore: fix race when reading from hardware system area Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 226/389] ASoC: qcom: q6dsp: Fix an off-by-one in q6adm_alloc_copp() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 227/389] fuse: Remove the control interface for virtio-fs Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 228/389] ASoC: audio-graph-card: Add of_node_put() in fail path Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 229/389] watchdog: armada_37xx_wdt: check the return value of devm_ioremap() in armada_37xx_wdt_probe() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 230/389] video: fbdev: amba-clcd: Fix refcount leak bugs Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 231/389] video: fbdev: sis: fix typos in SiS_GetModeID() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 232/389] powerpc/32: Do not allow selection of e5500 or e6500 CPUs on PPC32 Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 233/389] powerpc/pci: Prefer PCI domain assignment via DT linux,pci-domain and alias Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 234/389] powerpc/spufs: Fix refcount leak in spufs_init_isolated_loader Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 235/389] powerpc/xive: Fix refcount leak in xive_get_max_prio Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 236/389] powerpc/cell/axon_msi: Fix refcount leak in setup_msi_msg_address Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 237/389] perf symbol: Fail to read phdr workaround Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 238/389] kprobes: Forbid probing on trampoline and BPF code areas Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 239/389] powerpc/pci: Fix PHB numbering when using opal-phbid Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 240/389] genelf: Use HAVE_LIBCRYPTO_SUPPORT, not the never defined HAVE_LIBCRYPTO Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 241/389] scripts/faddr2line: Fix vmlinux detection on arm64 Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 242/389] x86/numa: Use cpumask_available instead of hardcoded NULL check Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 243/389] video: fbdev: arkfb: Fix a divide-by-zero bug in ark_set_pixclock() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 244/389] tools/thermal: Fix possible path truncations Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 245/389] video: fbdev: vt8623fb: Check the size of screen before memset_io() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 246/389] video: fbdev: arkfb: " Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 247/389] video: fbdev: s3fb: " Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 248/389] scsi: zfcp: Fix missing auto port scan and thus missing target ports Greg Kroah-Hartman
2022-08-23  8:25 ` Greg Kroah-Hartman [this message]
2022-08-23  8:25 ` [PATCH 5.4 250/389] scsi: qla2xxx: Turn off multi-queue for 8G adapters Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 251/389] scsi: qla2xxx: Fix erroneous mailbox timeout after PCI error injection Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 252/389] x86/olpc: fix logical not is only applied to the left hand side Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 253/389] spmi: trace: fix stack-out-of-bound access in SPMI tracing functions Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 254/389] kexec, KEYS, s390: Make use of built-in and secondary keyring for signature verification Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 255/389] tpm: eventlog: Fix section mismatch for DEBUG_SECTION_MISMATCH Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 256/389] btrfs: reset block group chunk force if we have to wait Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 257/389] ext4: add EXT4_INODE_HAS_XATTR_SPACE macro in xattr.h Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 258/389] ext4: make sure ext4_append() always allocates new block Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 259/389] ext4: fix use-after-free in ext4_xattr_set_entry Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 260/389] ext4: update s_overhead_clusters in the superblock during an on-line resize Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 261/389] ext4: fix extent status tree race in writeback error recovery path Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 262/389] ext4: correct max_inline_xattr_value_size computing Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 263/389] ext4: correct the misjudgment in ext4_iget_extra_inode Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 264/389] intel_th: pci: Add Raptor Lake-S CPU support Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 265/389] intel_th: pci: Add Raptor Lake-S PCH support Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 266/389] intel_th: pci: Add Meteor Lake-P support Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 267/389] dm raid: fix address sanitizer warning in raid_resume Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 268/389] dm raid: fix address sanitizer warning in raid_status Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 269/389] dm thin: fix use-after-free crash in dm_sm_register_threshold_callback Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 270/389] dm writecache: set a default MAX_WRITEBACK_JOBS Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 271/389] ACPI: CPPC: Do not prevent CPPC from working in the future Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 272/389] timekeeping: contribute wall clock to rng on time change Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 273/389] firmware: arm_scpi: Ensure scpi_info is not assigned if the probe fails Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 274/389] iommu/vt-d: avoid invalid memory access via node_online(NUMA_NO_NODE) Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 275/389] net_sched: cls_route: remove from list when handle is 0 Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 276/389] btrfs: reject log replay if there is unsupported RO compat flag Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 277/389] KVM: Add infrastructure and macro to mark VM as bugged Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 278/389] KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 279/389] KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 280/389] tcp: fix over estimation in sk_forced_mem_schedule() Greg Kroah-Hartman
2022-08-23  8:25 ` [PATCH 5.4 281/389] scsi: sg: Allow waiting for commands to complete on removed device Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 282/389] Revert "net: usb: ax88179_178a needs FLAG_SEND_ZLP" Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 283/389] Bluetooth: L2CAP: Fix l2cap_global_chan_by_psm regression Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 284/389] net/9p: Initialize the iounit field during fid creation Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 285/389] net_sched: cls_route: disallow handle of 0 Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 286/389] ALSA: info: Fix llseek return value when using callback Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 287/389] rds: add missing barrier to release_refill Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 288/389] ata: libata-eh: Add missing command name Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 289/389] mmc: pxamci: Fix another error handling path in pxamci_probe() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 290/389] mmc: pxamci: Fix an " Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 291/389] btrfs: fix lost error handling when looking up extended ref on log replay Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 292/389] tracing: Have filter accept "common_cpu" to be consistent Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 293/389] can: ems_usb: fix clangs -Wunaligned-access warning Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 294/389] apparmor: fix quiet_denied for file rules Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 295/389] apparmor: fix absroot causing audited secids to begin with = Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 296/389] apparmor: Fix failed mount permission check error message Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 297/389] apparmor: fix aa_label_asxprint return check Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 298/389] apparmor: fix overlapping attachment computation Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 299/389] apparmor: fix reference count leak in aa_pivotroot() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 300/389] apparmor: Fix memleak in aa_simple_write_to_buffer() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 301/389] Documentation: ACPI: EINJ: Fix obsolete example Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 302/389] NFSv4.1: Dont decrease the value of seq_nr_highest_sent Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 303/389] NFSv4.1: Handle NFS4ERR_DELAY replies to OP_SEQUENCE correctly Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 304/389] NFSv4: Fix races in the legacy idmapper upcall Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 305/389] NFSv4.1: RECLAIM_COMPLETE must handle EACCES Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 306/389] NFSv4/pnfs: Fix a use-after-free bug in open Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 307/389] can: mcp251x: Fix race condition on receive interrupt Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 308/389] sunrpc: fix expiry of auth creds Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 309/389] SUNRPC: Reinitialise the backchannel request buffers before reuse Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 310/389] devlink: Fix use-after-free after a failed reload Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 311/389] net: bgmac: Fix a BUG triggered by wrong bytes_compl Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 312/389] pinctrl: nomadik: Fix refcount leak in nmk_pinctrl_dt_subnode_to_map Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 313/389] pinctrl: qcom: msm8916: Allow CAMSS GP clocks to be muxed Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 314/389] pinctrl: sunxi: Add I/O bias setting for H6 R-PIO Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 315/389] ACPI: property: Return type of acpi_add_nondev_subnodes() should be bool Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 316/389] geneve: do not use RT_TOS for IPv6 flowlabel Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 317/389] plip: avoid rcu debug splat Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 318/389] vsock: Fix memory leak in vsock_connect() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 319/389] vsock: Set socket state back to SS_UNCONNECTED in vsock_connect_timeout() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 320/389] dt-bindings: arm: qcom: fix MSM8916 MTP compatibles Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 321/389] tools/vm/slabinfo: use alphabetic order when two values are equal Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 322/389] tools build: Switch to new openssl API for test-libcrypto Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 323/389] NTB: ntb_tool: uninitialized heap data in tool_fn_write() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 324/389] nfp: ethtool: fix the display error of `ethtool -m DEVNAME` Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 325/389] xen/xenbus: fix return type in xenbus_file_read() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 326/389] atm: idt77252: fix use-after-free bugs caused by tst_timer Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 327/389] dpaa2-eth: trace the allocated address instead of page struct Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 328/389] tee: add overflow check in register_shm_helper() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 329/389] nios2: page fault et.al. are *not* restartable syscalls Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 330/389] nios2: dont leave NULLs in sys_call_table[] Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 331/389] nios2: traced syscall does need to check the syscall number Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 332/389] nios2: fix syscall restart checks Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 333/389] nios2: restarts apply only to the first sigframe we build Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 334/389] nios2: add force_successful_syscall_return() Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 335/389] iavf: Fix adminq error handling Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 336/389] clk: rockchip: add sclk_mac_lbtest to rk3188_critical_clocks Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 337/389] netfilter: nf_tables: really skip inactive sets when allocating name Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 338/389] powerpc/pci: Fix get_phb_number() locking Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 339/389] net: dsa: mv88e6060: prevent crash on an unused port Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 340/389] net: moxa: pass pdev instead of ndev to DMA functions Greg Kroah-Hartman
2022-08-23  8:26 ` [PATCH 5.4 341/389] net: dsa: microchip: ksz9477: fix fdb_dump last invalid entry Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 342/389] ice: Ignore EEXIST when setting promisc mode Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 343/389] i40e: Fix to stop tx_timeout recovery if GLOBR fails Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 344/389] fec: Fix timer capture timing in `fec_ptp_enable_pps()` Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 345/389] igb: Add lock to avoid data race Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 346/389] gcc-plugins: Undefine LATENT_ENTROPY_PLUGIN when plugin disabled for a file Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 347/389] locking/atomic: Make test_and_*_bit() ordered on failure Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 348/389] drm/meson: Fix refcount bugs in meson_vpu_has_available_connectors() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 349/389] PCI: Add ACS quirk for Broadcom BCM5750x NICs Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 350/389] usb: cdns3 fix use-after-free at workaround 2 Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 351/389] usb: gadget: uvc: call uvc uvcg_warn on completed status instead of uvcg_info Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 352/389] irqchip/tegra: Fix overflow implicit truncation warnings Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 353/389] drm/meson: " Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 354/389] usb: host: ohci-ppc-of: Fix refcount leak bug Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 355/389] usb: renesas: " Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 356/389] vboxguest: Do not use devm for irq Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 357/389] clk: qcom: ipq8074: dont disable gcc_sleep_clk_src Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 358/389] scsi: lpfc: Prevent buffer overflow crashes in debugfs with malformed user input Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 359/389] gadgetfs: ep_io - wait until IRQ finishes Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 360/389] cxl: Fix a memory leak in an error handling path Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 361/389] PCI/ACPI: Guard ARM64-specific mcfg_quirks Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 362/389] um: add "noreboot" command line option for PANIC_TIMEOUT=-1 setups Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 363/389] selftests/kprobe: Do not test for GRP/ without event failures Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 364/389] dmaengine: sprd: Cleanup in .remove() after pm_runtime_get_sync() failed Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 365/389] nvmet-tcp: fix lockdep complaint on nvmet_tcp_wq flush during queue teardown Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 366/389] drivers:md:fix a potential use-after-free bug Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 367/389] ext4: avoid remove directory when directory is corrupted Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 368/389] ext4: avoid resizing to a partial cluster size Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 369/389] lib/list_debug.c: Detect uninitialized lists Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 370/389] tty: serial: Fix refcount leak bug in ucc_uart.c Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 371/389] vfio: Clear the caps->buf to NULL after free Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 372/389] mips: cavium-octeon: Fix missing of_node_put() in octeon2_usb_clocks_start Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 373/389] riscv: dts: sifive: Add fu540 topology information Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 374/389] riscv: mmap with PROT_WRITE but no PROT_READ is invalid Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 375/389] RISC-V: Add fast call path of crash_kexec() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 376/389] watchdog: export lockup_detector_reconfigure Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 377/389] powerpc/32: Dont always pass -mcpu=powerpc to the compiler Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 378/389] ALSA: core: Add async signal helpers Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 379/389] ALSA: timer: Use deferred fasync helper Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 380/389] f2fs: fix to avoid use f2fs_bug_on() in f2fs_new_node_page() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 381/389] smb3: check xattr value length earlier Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 382/389] powerpc/64: Init jump labels before parse_early_param() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 383/389] video: fbdev: i740fb: Check the argument of i740_calc_vclk() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 384/389] MIPS: tlbex: Explicitly compare _PAGE_NO_EXEC against 0 Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 385/389] tracing/probes: Have kprobes and uprobes use $COMM too Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 386/389] can: j1939: j1939_sk_queue_activate_next_locked(): replace WARN_ON_ONCE with netdev_warn_once() Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 387/389] can: j1939: j1939_session_destroy(): fix memory leak of skbs Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 388/389] btrfs: only write the sectors in the vertical stripe which has data stripes Greg Kroah-Hartman
2022-08-23  8:27 ` [PATCH 5.4 389/389] btrfs: raid56: dont trust any cached sector in __raid56_parity_recover() Greg Kroah-Hartman
2022-08-23 21:02 ` [PATCH 5.4 000/389] 5.4.211-rc1 review Guenter Roeck
2022-08-23 22:03 ` Shuah Khan
2022-08-24  7:02 ` Naresh Kamboju
2022-08-24 11:05 ` Sudip Mukherjee (Codethink)
     [not found] ` <3d191fcd-62bb-323f-ea2b-cf5599a75b07@huawei.com>
2022-08-25  9:35   ` Greg Kroah-Hartman

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=20220823080125.977099866@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aeasi@marvell.com \
    --cc=himanshu.madhani@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=njavali@marvell.com \
    --cc=stable@vger.kernel.org \
    --cc=tonyb@cybernetics.com \
    /path/to/YOUR_REPLY

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

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