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, Manish Rangankar <mrangankar@marvell.com>,
	Mike Christie <michael.christie@oracle.com>,
	"Martin K. Petersen" <martin.petersen@oracle.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 337/421] scsi: qedi: Fix null ref during abort handling
Date: Mon, 19 Jul 2021 16:52:28 +0200	[thread overview]
Message-ID: <20210719144957.970879856@linuxfoundation.org> (raw)
In-Reply-To: <20210719144946.310399455@linuxfoundation.org>

From: Mike Christie <michael.christie@oracle.com>

[ Upstream commit 5777b7f0f03ce49372203b6521631f62f2810c8f ]

If qedi_process_cmd_cleanup_resp finds the cmd it frees the work and sets
list_tmf_work to NULL, so qedi_tmf_work should check if list_tmf_work is
non-NULL when it wants to force cleanup.

Link: https://lore.kernel.org/r/20210525181821.7617-20-michael.christie@oracle.com
Reviewed-by: Manish Rangankar <mrangankar@marvell.com>
Signed-off-by: Mike Christie <michael.christie@oracle.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/scsi/qedi/qedi_fw.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/scsi/qedi/qedi_fw.c b/drivers/scsi/qedi/qedi_fw.c
index 357a0acc5ed2..b60b48f3b984 100644
--- a/drivers/scsi/qedi/qedi_fw.c
+++ b/drivers/scsi/qedi/qedi_fw.c
@@ -1466,7 +1466,7 @@ abort_ret:
 
 ldel_exit:
 	spin_lock_bh(&qedi_conn->tmf_work_lock);
-	if (!qedi_cmd->list_tmf_work) {
+	if (qedi_cmd->list_tmf_work) {
 		list_del_init(&list_work->list);
 		qedi_cmd->list_tmf_work = NULL;
 		kfree(list_work);
-- 
2.30.2




  parent reply	other threads:[~2021-07-19 16:33 UTC|newest]

Thread overview: 423+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 14:46 [PATCH 4.19 000/421] 4.19.198-rc1 review Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 001/421] scsi: core: Retry I/O for Notify (Enable Spinup) Required error Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 002/421] ALSA: usb-audio: fix rate on Ozone Z90 USB headset Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 003/421] ALSA: usb-audio: Fix OOB access at proc output Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 004/421] media: dvb-usb: fix wrong definition Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 005/421] Input: usbtouchscreen - fix control-request directions Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 006/421] net: can: ems_usb: fix use-after-free in ems_usb_disconnect() Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 007/421] usb: gadget: eem: fix echo command packet response issue Greg Kroah-Hartman
2021-07-19 14:46 ` [PATCH 4.19 008/421] USB: cdc-acm: blacklist Heimann USB Appset device Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 009/421] usb: dwc3: Fix debugfs creation flow Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 010/421] usb: typec: Add the missed altmode_id_remove() in typec_register_altmode() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 011/421] xhci: solve a double free problem while doing s4 Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 012/421] ntfs: fix validity check for file name attribute Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 013/421] [xarray] iov_iter_fault_in_readable() should do nothing in xarray case Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 014/421] Input: joydev - prevent use of not validated data in JSIOCSBTNMAP ioctl Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 015/421] arm_pmu: Fix write counter incorrect in ARMv7 big-endian mode Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 016/421] ARM: dts: at91: sama5d4: fix pinctrl muxing Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 017/421] btrfs: send: fix invalid path for unlink operations after parent orphanization Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 018/421] btrfs: clear defrag status of a root if starting transaction fails Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 019/421] ext4: cleanup in-core orphan list if ext4_truncate() failed to get a transaction handle Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 020/421] ext4: fix kernel infoleak via ext4_extent_header Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 021/421] ext4: return error code when ext4_fill_flex_info() fails Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 022/421] ext4: correct the cache_nr in tracepoint ext4_es_shrink_exit Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 023/421] ext4: remove check for zero nr_to_scan in ext4_es_scan() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 024/421] ext4: fix avefreec in find_group_orlov Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 025/421] ext4: use ext4_grp_locked_error in mb_find_extent Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 026/421] can: bcm: delay release of struct bcm_op after synchronize_rcu() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 027/421] can: gw: synchronize rcu operations before removing gw job entry Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 028/421] can: peak_pciefd: pucan_handle_status(): fix a potential starvation issue in TX path Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 029/421] SUNRPC: Fix the batch tasks count wraparound Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 030/421] SUNRPC: Should wake up the privileged task firstly Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 031/421] s390/cio: dont call css_wait_for_slow_path() inside a lock Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 032/421] rtc: stm32: Fix unbalanced clk_disable_unprepare() on probe error path Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 033/421] iio: light: tcs3472: do not free unallocated IRQ Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 034/421] iio: ltr501: mark register holding upper 8 bits of ALS_DATA{0,1} and PS_DATA as volatile, too Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 035/421] iio: ltr501: ltr559: fix initialization of LTR501_ALS_CONTR Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 036/421] iio: ltr501: ltr501_read_ps(): add missing endianness conversion Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 037/421] serial: sh-sci: Stop dmaengine transfer in sci_stop_tx() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 038/421] serial_cs: Add Option International GSM-Ready 56K/ISDN modem Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 039/421] serial_cs: remove wrong GLOBETROTTER.cis entry Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 040/421] ath9k: Fix kernel NULL pointer dereference during ath_reset_internal() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 041/421] ssb: sdio: Dont overwrite const buffer if block_write fails Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 042/421] rsi: Assign beacon rate settings to the correct rate_info descriptor field Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 043/421] rsi: fix AP mode with WPA failure due to encrypted EAPOL Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 044/421] tracing/histograms: Fix parsing of "sym-offset" modifier Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 045/421] tracepoint: Add tracepoint_probe_register_may_exist() for BPF tracing Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 046/421] seq_buf: Make trace_seq_putmem_hex() support data longer than 8 Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 047/421] powerpc/stacktrace: Fix spurious "stale" traces in raise_backtrace_ipi() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 048/421] evm: Execute evm_inode_init_security() only when an HMAC key is loaded Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 049/421] evm: Refuse EVM_ALLOW_METADATA_WRITES only if " Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 050/421] fuse: check connected before queueing on fpq->io Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 051/421] spi: Make of_register_spi_device also set the fwnode Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 052/421] spi: spi-loopback-test: Fix tx_buf might be rx_buf Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 053/421] spi: spi-topcliff-pch: Fix potential double free in pch_spi_process_messages() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 054/421] spi: omap-100k: Fix the length judgment problem Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 055/421] regulator: uniphier: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 056/421] crypto: nx - add " Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 057/421] media: cpia2: fix memory leak in cpia2_usb_probe Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 058/421] media: cobalt: fix race condition in setting HPD Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 059/421] media: pvrusb2: fix warning in pvr2_i2c_core_done Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 060/421] crypto: qat - check return code of qat_hal_rd_rel_reg() Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 061/421] crypto: qat - remove unused macro in FW loader Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 062/421] sched/fair: Fix ascii art by relpacing tabs Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 063/421] media: em28xx: Fix possible memory leak of em28xx struct Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 064/421] media: v4l2-core: Avoid the dangling pointer in v4l2_fh_release Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 065/421] media: bt8xx: Fix a missing check bug in bt878_probe Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 066/421] media: st-hva: Fix potential NULL pointer dereferences Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 067/421] media: dvd_usb: memory leak in cinergyt2_fe_attach Greg Kroah-Hartman
2021-07-19 14:47 ` [PATCH 4.19 068/421] mmc: via-sdmmc: add a check against NULL pointer dereference Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 069/421] crypto: shash - avoid comparing pointers to exported functions under CFI Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 070/421] media: dvb_net: avoid speculation from net slot Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 071/421] media: siano: fix device register error path Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 072/421] media: imx-csi: Skip first few frames from a BT.656 source Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 073/421] btrfs: fix error handling in __btrfs_update_delayed_inode Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 074/421] btrfs: abort transaction if we fail to update the delayed inode Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 075/421] btrfs: disable build on platforms having page size 256K Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 076/421] regulator: da9052: Ensure enough delay time for .set_voltage_time_sel Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 077/421] HID: do not use down_interruptible() when unbinding devices Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 078/421] EDAC/ti: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 079/421] ACPI: processor idle: Fix up C-state latency if not ordered Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 080/421] hv_utils: Fix passing zero to PTR_ERR warning Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 081/421] lib: vsprintf: Fix handling of number field widths in vsscanf Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 082/421] ACPI: EC: Make more Asus laptops use ECDT _GPE Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 083/421] block_dump: remove block_dump feature in mark_inode_dirty() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 084/421] fs: dlm: cancel work sync othercon Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 085/421] random32: Fix implicit truncation warning in prandom_seed_state() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 086/421] fs: dlm: fix memory leak when fenced Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 087/421] ACPICA: Fix memory leak caused by _CID repair function Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 088/421] ACPI: bus: Call kobject_put() in acpi_init() error path Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 089/421] platform/x86: toshiba_acpi: Fix missing error code in toshiba_acpi_setup_keyboard() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 090/421] clocksource: Retry clock read if long delays detected Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 091/421] ACPI: tables: Add custom DSDT file as makefile prerequisite Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 092/421] HID: wacom: Correct base usage for capacitive ExpressKey status bits Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 093/421] ia64: mca_drv: fix incorrect array size calculation Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 094/421] media: s5p_cec: decrement usage count if disabled Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 095/421] crypto: ixp4xx - dma_unmap the correct address Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 096/421] crypto: ux500 - Fix error return code in hash_hw_final() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 097/421] sata_highbank: fix deferred probing Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 098/421] pata_rb532_cf: " Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 099/421] media: I2C: change RST to "RSET" to fix multiple build errors Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 100/421] pata_octeon_cf: avoid WARN_ON() in ata_host_activate() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 101/421] evm: fix writing <securityfs>/evm overflow Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 102/421] crypto: ccp - Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 103/421] media: rc: i2c: Fix an error message Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 104/421] pata_ep93xx: fix deferred probing Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 105/421] media: exynos4-is: Fix a use after free in isp_video_release Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 106/421] media: tc358743: Fix error return code in tc358743_probe_of() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 107/421] media: gspca/gl860: fix zero-length control requests Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 108/421] media: siano: Fix out-of-bounds warnings in smscore_load_firmware_family2() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 109/421] mmc: usdhi6rol0: fix error return code in usdhi6_probe() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 110/421] media: s5p-g2d: Fix a memory leak on ctx->fh.m2m_ctx Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 111/421] hwmon: (max31722) Remove non-standard ACPI device IDs Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 112/421] hwmon: (max31790) Fix fan speed reporting for fan7..12 Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 113/421] btrfs: clear log tree recovering status if starting transaction fails Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 114/421] spi: spi-sun6i: Fix chipselect/clock bug Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 115/421] crypto: nx - Fix RCU warning in nx842_OF_upd_status Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 116/421] ACPI: sysfs: Fix a buffer overrun problem with description_show() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 117/421] blk-wbt: introduce a new disable state to prevent false positive by rwb_enabled() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 118/421] blk-wbt: make sure throttle is enabled properly Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 119/421] ocfs2: fix snprintf() checking Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 120/421] net: mvpp2: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 121/421] net: pch_gbe: Propagate error from devm_gpio_request_one() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 122/421] drm/rockchip: cdn-dp-core: add missing clk_disable_unprepare() on error in cdn_dp_grf_write() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 123/421] ehea: fix error return code in ehea_restart_qps() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 124/421] RDMA/rxe: Fix failure during driver load Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 125/421] drm: qxl: ensure surf.data is ininitialized Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 126/421] tools/bpftool: Fix error return code in do_batch() Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 127/421] wireless: carl9170: fix LEDS build errors & warnings Greg Kroah-Hartman
2021-07-19 14:48 ` [PATCH 4.19 128/421] ieee802154: hwsim: Fix possible memory leak in hwsim_subscribe_all_others Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 129/421] wcn36xx: Move hal_buf allocation to devm_kmalloc in probe Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 130/421] ssb: Fix error return code in ssb_bus_scan() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 131/421] brcmfmac: fix setting of station info chains bitmask Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 132/421] brcmfmac: correctly report average RSSI in station info Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 133/421] brcmsmac: mac80211_if: Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 134/421] ath10k: Fix an error code in ath10k_add_interface() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 135/421] netlabel: Fix memory leak in netlbl_mgmt_add_common Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 136/421] RDMA/mlx5: Dont add slave port to unaffiliated list Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 137/421] netfilter: nft_exthdr: check for IPv6 packet before further processing Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 138/421] netfilter: nft_osf: check for TCP " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 139/421] netfilter: nft_tproxy: restrict support to TCP and UDP transport protocols Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 140/421] RDMA/rxe: Fix qp reference counting for atomic ops Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 141/421] samples/bpf: Fix the error return code of xdp_redirects main() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 142/421] net: ethernet: aeroflex: fix UAF in greth_of_remove Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 143/421] net: ethernet: ezchip: fix UAF in nps_enet_remove Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 144/421] net: ethernet: ezchip: fix error handling Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 145/421] pkt_sched: sch_qfq: fix qfq_change_class() error path Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 146/421] vxlan: add missing rcu_read_lock() in neigh_reduce() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 147/421] net/ipv4: swap flow ports when validating source Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 148/421] ieee802154: hwsim: Fix memory leak in hwsim_add_one Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 149/421] ieee802154: hwsim: avoid possible crash in hwsim_del_edge_nl() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 150/421] mac80211: remove iwlwifi specific workaround NDPs of null_response Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 151/421] net: bcmgenet: Fix attaching to PYH failed on RPi 4B Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 152/421] ipv6: exthdrs: do not blindly use init_net Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 153/421] bpf: Do not change gso_size during bpf_skb_change_proto() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 154/421] i40e: Fix error handling in i40e_vsi_open Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 155/421] i40e: Fix autoneg disabling for non-10GBaseT links Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 156/421] Revert "ibmvnic: remove duplicate napi_schedule call in open function" Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 157/421] ibmvnic: free tx_pool if tso_pool alloc fails Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 158/421] ipv6: fix out-of-bound access in ip6_parse_tlv() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 159/421] Bluetooth: mgmt: Fix slab-out-of-bounds in tlv_data_is_valid Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 160/421] Bluetooth: Fix handling of HCI_LE_Advertising_Set_Terminated event Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 161/421] writeback: fix obtain a reference to a freeing memcg css Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 162/421] net: lwtunnel: handle MTU calculation in forwading Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 163/421] net: sched: fix warning in tcindex_alloc_perfect_hash Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 164/421] RDMA/mlx5: Dont access NULL-cleared mpi pointer Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 165/421] tty: nozomi: Fix a resource leak in an error handling function Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 166/421] mwifiex: re-fix for unaligned accesses Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 167/421] iio: adis_buffer: do not return ints in irq handlers Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 168/421] iio: accel: bma180: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 169/421] iio: accel: bma220: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 170/421] iio: accel: hid: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 171/421] iio: accel: kxcjk-1013: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 172/421] iio: accel: stk8312: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 173/421] iio: accel: stk8ba50: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 174/421] iio: adc: ti-ads1015: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 175/421] iio: adc: vf610: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 176/421] iio: gyro: bmg160: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 177/421] iio: humidity: am2315: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 178/421] iio: prox: srf08: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 179/421] iio: prox: pulsed-light: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 180/421] iio: prox: as3935: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 181/421] iio: light: isl29125: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 182/421] iio: light: tcs3414: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 183/421] iio: light: tcs3472: " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 184/421] iio: potentiostat: lmp91000: Fix alignment of buffer " Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 185/421] ASoC: hisilicon: fix missing clk_disable_unprepare() on error in hi6210_i2s_startup() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 186/421] ASoC: rsnd: tidyup loop on rsnd_adg_clk_query() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 187/421] Input: hil_kbd - fix error return code in hil_dev_connect() Greg Kroah-Hartman
2021-07-19 14:49 ` [PATCH 4.19 188/421] char: pcmcia: error out if num_bytes_read is greater than 4 in set_protocol() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 189/421] tty: nozomi: Fix the error handling path of nozomi_card_init() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 190/421] scsi: FlashPoint: Rename si_flags field Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 191/421] fsi: core: Fix return of error values on failures Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 192/421] fsi: scom: Reset the FSI2PIB engine for any error Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 193/421] fsi/sbefifo: Clean up correct FIFO when receiving reset request from SBE Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 194/421] fsi/sbefifo: Fix reset timeout Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 195/421] visorbus: fix error return code in visorchipset_init() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 196/421] s390: appldata depends on PROC_SYSCTL Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 197/421] eeprom: idt_89hpesx: Put fwnode in matching case during ->probe() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 198/421] eeprom: idt_89hpesx: Restore printing the unsupported fwnode name Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 199/421] iio: adc: hx711: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 200/421] iio: adc: mxs-lradc: " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 201/421] iio: adc: ti-ads8688: Fix alignment of buffer " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 202/421] staging: gdm724x: check for buffer overflow in gdm_lte_multi_sdu_pkt() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 203/421] staging: gdm724x: check for overflow in gdm_lte_netif_rx() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 204/421] staging: mt7621-dts: fix pci address for PCI memory range Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 205/421] serial: 8250: Actually allow UPF_MAGIC_MULTIPLIER baud rates Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 206/421] iio: prox: isl29501: Fix buffer alignment in iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 207/421] ASoC: cs42l42: Correct definition of CS42L42_ADC_PDN_MASK Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 208/421] of: Fix truncation of memory sizes on 32-bit platforms Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 209/421] mtd: rawnand: marvell: add missing clk_disable_unprepare() on error in marvell_nfc_resume() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 210/421] scsi: mpt3sas: Fix error return value in _scsih_expander_add() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 211/421] phy: ti: dm816x: Fix the error handling path in dm816x_usb_phy_probe() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 212/421] extcon: sm5502: Drop invalid register write in sm5502_reg_data Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 213/421] extcon: max8997: Add missing modalias string Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 214/421] ASoC: atmel-i2s: Fix usage of capture and playback at the same time Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 215/421] configfs: fix memleak in configfs_release_bin_file Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 216/421] leds: as3645a: Fix error return code in as3645a_parse_node() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 217/421] leds: ktd2692: Fix an error handling path Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 218/421] powerpc: Offline CPU in stop_this_cpu() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 219/421] serial: mvebu-uart: correctly calculate minimal possible baudrate Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 220/421] arm64: dts: marvell: armada-37xx: Fix reg for standard variant of UART Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 221/421] vfio/pci: Handle concurrent vma faults Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 222/421] mm/huge_memory.c: dont discard hugepage if other processes are mapping it Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 223/421] selftests/vm/pkeys: fix alloc_random_pkey() to make it really, really random Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 224/421] perf llvm: Return -ENOMEM when asprintf() fails Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 225/421] mmc: block: Disable CMDQ on the ioctl path Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 226/421] mmc: vub3000: fix control-request direction Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 227/421] drm/mxsfb: Dont select DRM_KMS_FB_HELPER Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 228/421] drm/zte: " Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 229/421] drm/amd/amdgpu/sriov disable all ip hw status by default Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 230/421] net: pch_gbe: Use proper accessors to BE data in pch_ptp_match() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 231/421] drm/amd/display: fix use_max_lb flag for 420 pixel formats Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 232/421] hugetlb: clear huge pte during flush function on mips platform Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 233/421] atm: iphase: fix possible use-after-free in ia_module_exit() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 234/421] mISDN: fix possible use-after-free in HFC_cleanup() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 235/421] atm: nicstar: Fix possible use-after-free in nicstar_cleanup() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 236/421] net: Treat __napi_schedule_irqoff() as __napi_schedule() on PREEMPT_RT Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 237/421] reiserfs: add check for invalid 1st journal block Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 238/421] drm/virtio: Fix double free on probe failure Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 239/421] udf: Fix NULL pointer dereference in udf_symlink function Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 240/421] e100: handle eeprom as little endian Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 241/421] clk: renesas: r8a77995: Add ZA2 clock Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 242/421] clk: tegra: Ensure that PLLU configuration is applied properly Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 243/421] ipv6: use prandom_u32() for ID generation Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 244/421] RDMA/cxgb4: Fix missing error code in create_qp() Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 245/421] dm space maps: dont reset space map allocation cursor when committing Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 246/421] pinctrl: mcp23s08: fix race condition in irq handler Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 247/421] ice: set the value of global config lock timeout longer Greg Kroah-Hartman
2021-07-19 14:50 ` [PATCH 4.19 248/421] virtio_net: Remove BUG() to avoid machine dead Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 249/421] net: bcmgenet: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 250/421] net: mvpp2: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 251/421] net: micrel: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 252/421] fjes: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 253/421] selinux: use __GFP_NOWARN with GFP_NOWAIT in the AVC Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 254/421] xfrm: Fix error reporting in xfrm_state_construct Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 255/421] wlcore/wl12xx: Fix wl12xx get_mac error if device is in ELP Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 256/421] wl1251: Fix possible buffer overflow in wl1251_cmd_scan Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 257/421] cw1200: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 258/421] net: fix mistake path for netdev_features_strings Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 259/421] rtl8xxxu: Fix device info for RTL8192EU devices Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 260/421] MIPS: add PMD table accounting into MIPSpmd_alloc_one Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 261/421] atm: nicstar: use dma_free_coherent instead of kfree Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 262/421] atm: nicstar: register the interrupt handler in the right place Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 263/421] vsock: notify server to shutdown when client has pending signal Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 264/421] RDMA/rxe: Dont overwrite errno from ib_umem_get() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 265/421] iwlwifi: mvm: dont change band on bound PHY contexts Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 266/421] iwlwifi: pcie: free IML DMA memory allocation Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 267/421] sfc: avoid double pci_remove of VFs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 268/421] sfc: error code if SRIOV cannot be disabled Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 269/421] wireless: wext-spy: Fix out-of-bounds warning Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 270/421] media, bpf: Do not copy more entries than user space requested Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 271/421] net: ip: avoid OOM kills with large UDP sends over loopback Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 272/421] RDMA/cma: Fix rdma_resolve_route() memory leak Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 273/421] Bluetooth: Fix the HCI to MGMT status conversion table Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 274/421] Bluetooth: Shutdown controller after workqueues are flushed or cancelled Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 275/421] Bluetooth: btusb: fix bt fiwmare downloading failure issue for qca btsoc Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 276/421] sctp: validate from_addr_param return Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 277/421] sctp: add size validation when walking chunks Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 278/421] MIPS: set mips32r5 for virt extensions Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 279/421] fscrypt: dont ignore minor_hash when hash is 0 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 280/421] bdi: Do not use freezable workqueue Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 281/421] serial: mvebu-uart: clarify the baud rate derivation Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 282/421] serial: mvebu-uart: fix calculation of clock divisor Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 283/421] fuse: reject internal errno Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 284/421] powerpc/barrier: Avoid collision with clangs __lwsync macro Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 285/421] usb: gadget: f_fs: Fix setting of device and driver data cross-references Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 286/421] drm/radeon: Add the missed drm_gem_object_put() in radeon_user_framebuffer_create() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 287/421] drm/amd/display: fix incorrrect valid irq check Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 288/421] pinctrl/amd: Add device HID for new AMD GPIO controller Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 289/421] drm/msm/mdp4: Fix modifier support enabling Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 290/421] mmc: sdhci: Fix warning message when accessing RPMB in HS400 mode Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 291/421] mmc: core: clear flags before allowing to retune Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 292/421] mmc: core: Allow UHS-I voltage switch for SDSC cards if supported Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 293/421] ata: ahci_sunxi: Disable DIPM Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 294/421] cpu/hotplug: Cure the cpusets trainwreck Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 295/421] clocksource/arm_arch_timer: Improve Allwinner A64 timer workaround Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 296/421] ASoC: tegra: Set driver_name=tegra for all machine drivers Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 297/421] qemu_fw_cfg: Make fw_cfg_rev_attr a proper kobj_attribute Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 298/421] ipmi/watchdog: Stop watchdog timer when the current action is none Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 299/421] power: supply: ab8500: Fix an old bug Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 300/421] seq_buf: Fix overflow in seq_buf_putmem_hex() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 301/421] tracing: Simplify & fix saved_tgids logic Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 302/421] tracing: Resize tgid_map to pid_max, not PID_MAX_DEFAULT Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 303/421] ipack/carriers/tpci200: Fix a double free in tpci200_pci_probe Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 304/421] coresight: tmc-etf: Fix global-out-of-bounds in tmc_update_etf_buffer() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 305/421] dm btree remove: assign new_root only when removal succeeds Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 306/421] PCI: Leave Apple Thunderbolt controllers on for s2idle or standby Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 307/421] PCI: aardvark: Fix checking for PIO Non-posted Request Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 4.19 308/421] media: subdev: disallow ioctl for saa6588/davinci Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 309/421] media: dtv5100: fix control-request directions Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 310/421] media: zr364xx: fix memory leak in zr364xx_start_readpipe Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 311/421] media: gspca/sq905: fix control-request direction Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 312/421] media: gspca/sunplus: fix zero-length control requests Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 313/421] media: uvcvideo: Fix pixel format change for Elgato Cam Link 4K Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 314/421] pinctrl: mcp23s08: Fix missing unlock on error in mcp23s08_irq() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 315/421] jfs: fix GPF in diFree Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 316/421] smackfs: restrict bytes count in smk_set_cipso() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 317/421] KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 318/421] KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 319/421] scsi: core: Fix bad pointer dereference when ehandler kthread is invalid Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 320/421] tracing: Do not reference char * as a string in histograms Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 321/421] PCI: aardvark: Dont rely on jiffies while holding spinlock Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 322/421] PCI: aardvark: Fix kernel panic during PIO transfer Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 323/421] tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 324/421] misc/libmasm/module: Fix two use after free in ibmasm_init_one Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 325/421] Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 326/421] w1: ds2438: fixing bug that would always get page0 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 327/421] scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 328/421] scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 329/421] scsi: core: Cap scsi_host cmd_per_lun at can_queue Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 330/421] ALSA: ac97: fix PM reference leak in ac97_bus_remove() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 331/421] tty: serial: 8250: serial_cs: Fix a memory leak in error handling path Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 332/421] scsi: scsi_dh_alua: Check for negative result value Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 333/421] fs/jfs: Fix missing error code in lmLogInit() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 334/421] scsi: iscsi: Add iscsi_cls_conn refcount helpers Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 335/421] scsi: iscsi: Fix conn use after free during resets Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 336/421] scsi: iscsi: Fix shost->max_id use Greg Kroah-Hartman
2021-07-19 14:52 ` Greg Kroah-Hartman [this message]
2021-07-19 14:52 ` [PATCH 4.19 338/421] mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 339/421] s390/sclp_vt220: fix console name to match device Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 340/421] selftests: timers: rtcpie: skip test if default RTC device does not exist Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 341/421] ALSA: sb: Fix potential double-free of CSP mixer elements Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 342/421] powerpc/ps3: Add dma_mask to ps3_dma_region Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 343/421] gpio: zynq: Check return value of pm_runtime_get_sync Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 344/421] ALSA: ppc: fix error return code in snd_pmac_probe() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 345/421] selftests/powerpc: Fix "no_handler" EBB selftest Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 346/421] gpio: pca953x: Add support for the On Semi pca9655 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 347/421] ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 348/421] Input: hideep - fix the uninitialized use in hideep_nvm_unlock() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 349/421] ALSA: bebob: add support for ToneWeal FW66 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 350/421] usb: gadget: f_hid: fix endianness issue with descriptors Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 351/421] usb: gadget: hid: fix error return code in hid_bind() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 352/421] powerpc/boot: Fixup device-tree on little endian Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 353/421] backlight: lm3630a: Fix return code of .update_status() callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 354/421] ALSA: hda: Add IRQ check for platform_get_irq() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 355/421] staging: rtl8723bs: fix macro value for 2.4Ghz only device Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 356/421] intel_th: Wait until port is in reset before programming it Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 357/421] i2c: core: Disable client irq on reboot/shutdown Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 358/421] lib/decompress_unlz4.c: correctly handle zero-padding around initrds Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 359/421] pwm: spear: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 360/421] power: supply: ab8500: Avoid NULL pointers Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 361/421] power: supply: max17042: Do not enforce (incorrect) interrupt trigger type Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 362/421] power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 363/421] ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 364/421] watchdog: Fix possible use-after-free in wdt_startup() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 365/421] watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 366/421] watchdog: Fix possible use-after-free by calling del_timer_sync() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 367/421] watchdog: iTCO_wdt: Account for rebooting on second timeout Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 4.19 368/421] x86/fpu: Return proper error codes from user access functions Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 369/421] PCI: tegra: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 370/421] orangefs: fix orangefs df output Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 371/421] ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 372/421] NFS: nfs_find_open_context() may only select open files Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 373/421] power: supply: charger-manager: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 374/421] power: supply: ab8500: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 375/421] pwm: tegra: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 376/421] ACPI: AMBA: Fix resource name in /proc/iomem Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 377/421] ACPI: video: Add quirk for the Dell Vostro 3350 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 378/421] virtio-blk: Fix memory leak among suspend/resume procedure Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 379/421] virtio_net: Fix error handling in virtnet_restore() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 380/421] virtio_console: Assure used length from device is limited Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 381/421] f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 382/421] PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 383/421] power: supply: rt5033_battery: Fix device tree enumeration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 384/421] NFSv4: Initialise connection to the server in nfs4_alloc_client() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 385/421] um: fix error return code in slip_open() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 386/421] um: fix error return code in winch_tramp() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 387/421] watchdog: aspeed: fix hardware timeout calculation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 388/421] nfs: fix acl memory leak of posix_acl_create() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 389/421] ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 390/421] PCI: iproc: Fix multi-MSI base vector number allocation Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 391/421] PCI: iproc: Support multi-MSI only on uniprocessor kernel Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 392/421] x86/fpu: Limit xstate copy size in xstateregs_set() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 393/421] virtio_net: move tx vq operation under tx queue lock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 394/421] ALSA: isa: Fix error return code in snd_cmi8330_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 395/421] NFSv4/pNFS: Dont call _nfs4_pnfs_v3_ds_connect multiple times Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 396/421] hexagon: use common DISCARDS macro Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 397/421] reset: a10sr: add missing of_match_table reference Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 398/421] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 399/421] ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 400/421] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 401/421] memory: atmel-ebi: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 402/421] rtc: fix snprintf() checking in is_rtc_hctosys() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 403/421] arm64: dts: renesas: v3msk: Fix memory size Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 404/421] ARM: dts: r8a7779, marzen: Fix DU clock names Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 405/421] arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 406/421] ARM: dts: BCM5301X: Fixup SPI binding Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 407/421] reset: bail if try_module_get() fails Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 408/421] memory: fsl_ifc: fix leak of IO mapping on probe failure Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 409/421] memory: fsl_ifc: fix leak of private memory " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 410/421] ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 411/421] ARM: dts: am437x: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 412/421] ARM: dts: imx6q-dhcom: Fix ethernet reset time properties Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 413/421] ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 414/421] ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 415/421] scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 416/421] mips: always link byteswap helpers into decompressor Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 417/421] mips: disable branch profiling in boot/decompress.o Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 418/421] perf report: Fix --task and --stat with pipe input Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 419/421] MIPS: vdso: Invalid GIC access through VDSO Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 420/421] net: bridge: multicast: fix PIM hello router port marking race Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 4.19 421/421] scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() Greg Kroah-Hartman
2021-07-19 16:00 ` [PATCH 4.19 000/421] 4.19.198-rc1 review Naresh Kamboju

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20210719144957.970879856@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.petersen@oracle.com \
    --cc=michael.christie@oracle.com \
    --cc=mrangankar@marvell.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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