From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Johannes Thumshirn <jth@kernel.org>,
Yang Yingliang <yangyingliang@huawei.com>,
Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.9 140/251] mcb: mcb-parse: fix error handing in chameleon_parse_gdd()
Date: Thu, 5 Jan 2023 13:54:37 +0100 [thread overview]
Message-ID: <20230105125341.249021068@linuxfoundation.org> (raw)
In-Reply-To: <20230105125334.727282894@linuxfoundation.org>
From: Yang Yingliang <yangyingliang@huawei.com>
[ Upstream commit 728ac3389296caf68638628c987aeae6c8851e2d ]
If mcb_device_register() returns error in chameleon_parse_gdd(), the refcount
of bus and device name are leaked. Fix this by calling put_device() to give up
the reference, so they can be released in mcb_release_dev() and kobject_cleanup().
Fixes: 3764e82e5150 ("drivers: Introduce MEN Chameleon Bus")
Reviewed-by: Johannes Thumshirn <jth@kernel.org>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Johannes Thumshirn <jth@kernel.org>
Link: https://lore.kernel.org/r/ebfb06e39b19272f0197fa9136b5e4b6f34ad732.1669624063.git.johannes.thumshirn@wdc.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/mcb/mcb-parse.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mcb/mcb-parse.c b/drivers/mcb/mcb-parse.c
index 4ca2739b4fad..fdc35341ff6c 100644
--- a/drivers/mcb/mcb-parse.c
+++ b/drivers/mcb/mcb-parse.c
@@ -107,7 +107,7 @@ static int chameleon_parse_gdd(struct mcb_bus *bus,
return 0;
err:
- mcb_free_dev(mdev);
+ put_device(&mdev->dev);
return ret;
}
--
2.35.1
next prev parent reply other threads:[~2023-01-05 13:04 UTC|newest]
Thread overview: 259+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-01-05 12:52 [PATCH 4.9 000/251] 4.9.337-rc1 review Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 001/251] mm/khugepaged: fix GUP-fast interaction by sending IPI Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 002/251] mm/khugepaged: invoke MMU notifiers in shmem/file collapse paths Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 003/251] block: unhash blkdev part inode when the part is deleted Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 004/251] ASoC: ops: Check bounds for second channel in snd_soc_put_volsw_sx() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 005/251] can: sja1000: fix size of OCR_MODE_MASK define Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 006/251] ASoC: ops: Correct bounds check for second channel on SX controls Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 007/251] udf: Discard preallocation before extending file with a hole Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 008/251] udf: Drop unused arguments of udf_delete_aext() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 009/251] udf: Fix preallocation discarding at indirect extent boundary Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 010/251] udf: Do not bother looking for prealloc extents if i_lenExtents matches i_size Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 011/251] udf: Fix extending file within last block Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 012/251] usb: gadget: uvc: Prevent buffer overflow in setup handler Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 013/251] USB: serial: cp210x: add Kamstrup RF sniffer PIDs Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 014/251] Bluetooth: L2CAP: Fix u8 overflow Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 015/251] net: loopback: use NET_NAME_PREDICTABLE for name_assign_type Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 016/251] drivers: soc: ti: knav_qmss_queue: Mark knav_acc_firmwares as static Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 017/251] arm: dts: spear600: Fix clcd interrupt Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 018/251] soc: ti: smartreflex: Fix PM disable depth imbalance in omap_sr_probe Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 019/251] ARM: dts: dove: Fix assigned-addresses for every PCIe Root Port Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 020/251] ARM: dts: armada-370: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 021/251] ARM: dts: armada-xp: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 022/251] ARM: dts: armada-375: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 023/251] ARM: dts: armada-38x: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 024/251] ARM: dts: armada-39x: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 025/251] ARM: mmp: fix timer_read delay Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 026/251] pstore: Avoid kcore oops by vmap()ing with VM_IOREMAP Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 027/251] cpuidle: dt: Return the correct numbers of parsed idle states Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 028/251] alpha: fix syscall entry in !AUDUT_SYSCALL case Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 029/251] PM: hibernate: Fix mistake in kerneldoc comment Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 030/251] fs: dont audit the capability check in simple_xattr_list() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 031/251] perf: Fix possible memleak in pmu_dev_alloc() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 032/251] timerqueue: Use rb_entry_safe() in timerqueue_getnext() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 033/251] ocfs2: fix memory leak in ocfs2_stack_glue_init() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 034/251] MIPS: vpe-mt: fix possible memory leak while module exiting Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 035/251] MIPS: vpe-cmp: " Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 036/251] PNP: fix name memory leak in pnp_alloc_dev() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 037/251] irqchip: gic-pm: Use pm_runtime_resume_and_get() in gic_probe() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 038/251] libfs: add DEFINE_SIMPLE_ATTRIBUTE_SIGNED for signed value Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 039/251] lib/notifier-error-inject: fix error when writing -errno to debugfs file Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 040/251] rapidio: fix possible name leaks when rio_add_device() fails Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 041/251] rapidio: rio: fix possible name leak in rio_register_mport() Greg Kroah-Hartman
2023-01-05 12:52 ` [PATCH 4.9 042/251] ACPICA: Fix use-after-free in acpi_ut_copy_ipackage_to_ipackage() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 043/251] uprobes/x86: Allow to probe a NOP instruction with 0x66 prefix Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 044/251] x86/xen: Fix memory leak in xen_init_lock_cpu() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 045/251] MIPS: BCM63xx: Add check for NULL for clk in clk_enable Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 046/251] fs: sysv: Fix sysv_nblocks() returns wrong value Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 047/251] rapidio: fix possible UAF when kfifo_alloc() fails Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 048/251] eventfd: change int to __u64 in eventfd_signal() ifndef CONFIG_EVENTFD Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 049/251] hfs: Fix OOB Write in hfs_asc2mac Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 050/251] rapidio: devices: fix missing put_device in mport_cdev_open Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 051/251] wifi: ath9k: hif_usb: fix memory leak of urbs in ath9k_hif_usb_dealloc_tx_urbs() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 052/251] wifi: ath9k: hif_usb: Fix use-after-free in ath9k_hif_usb_reg_in_cb() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 053/251] media: i2c: ad5820: Fix error path Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 054/251] media: vivid: fix compose size exceed boundary Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 055/251] mtd: Fix device name leak when register device failed in add_mtd_device() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 056/251] ASoC: pxa: fix null-pointer dereference in filter() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 057/251] regulator: core: fix unbalanced of node refcount in regulator_dev_lookup() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 058/251] ima: Fix misuse of dereference of pointer in template_desc_init_fields() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 059/251] wifi: ath10k: Fix return value in ath10k_pci_init() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 060/251] mtd: lpddr2_nvm: Fix possible null-ptr-deref Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 061/251] Input: elants_i2c - properly handle the reset GPIO when power is off Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 062/251] media: solo6x10: fix possible memory leak in solo_sysfs_init() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 063/251] media: platform: exynos4-is: Fix error handling in fimc_md_init() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 064/251] HID: hid-sensor-custom: set fixed size for custom attributes Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 065/251] ALSA: seq: fix undefined behavior in bit shift for SNDRV_SEQ_FILTER_USE_EVENT Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 066/251] clk: rockchip: Fix memory leak in rockchip_clk_register_pll() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 067/251] mtd: maps: pxa2xx-flash: fix memory leak in probe Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 068/251] media: imon: fix a race condition in send_packet() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 069/251] pinctrl: pinconf-generic: add missing of_node_put() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 070/251] media: dvb-usb: az6027: fix null-ptr-deref in az6027_i2c_xfer() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 071/251] NFSv4.2: Fix a memory stomp in decode_attr_security_label Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 072/251] NFSv4: Fix a deadlock between nfs4_open_recover_helper() and delegreturn Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 073/251] ALSA: asihpi: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 074/251] drm/radeon: Fix PCI device refcount leak in radeon_atrm_get_bios() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 075/251] drm/amdgpu: Fix PCI device refcount leak in amdgpu_atrm_get_bios() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 076/251] ASoC: pcm512x: Fix PM disable depth imbalance in pcm512x_probe Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 077/251] bonding: uninitialized variable in bond_miimon_inspect() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 078/251] regulator: core: fix module refcount leak in set_supply() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 079/251] media: saa7164: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 080/251] ALSA: mts64: fix possible null-ptr-defer in snd_mts64_interrupt Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 081/251] SUNRPC: Fix missing release socket in rpc_sockname() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 082/251] mmc: moxart: fix return value check of mmc_add_host() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 083/251] mmc: mxcmmc: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 084/251] mmc: rtsx_usb_sdmmc: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 085/251] mmc: toshsd: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 086/251] mmc: vub300: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 087/251] mmc: via-sdmmc: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 088/251] mmc: wbsd: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 089/251] mmc: mmci: " Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 090/251] media: c8sectpfe: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 091/251] media: coda: Add check for dcoda_iram_alloc Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 092/251] media: coda: Add check for kmalloc Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 093/251] wifi: rtl8xxxu: Add __packed to struct rtl8723bu_c2h Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 094/251] wifi: brcmfmac: Fix error return code in brcmf_sdio_download_firmware() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 095/251] blktrace: Fix output non-blktrace event when blk_classic option enabled Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 096/251] net: vmw_vsock: vmci: Check memcpy_from_msg() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 097/251] net: defxx: Fix missing err handling in dfx_init() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 098/251] drivers: net: qlcnic: Fix potential memory leak in qlcnic_sriov_init() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 099/251] ethernet: s2io: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 100/251] net: farsync: Fix kmemleak when rmmods farsync Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 101/251] net/tunnel: wait until all sk_user_data reader finish before releasing the sock Greg Kroah-Hartman
2023-01-05 12:53 ` [PATCH 4.9 102/251] net: apple: mace: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 103/251] net: apple: bmac: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 104/251] net: emaclite: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 105/251] net: ethernet: dnet: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 106/251] hamradio: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 107/251] net: amd: lance: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 108/251] ntb_netdev: Use dev_kfree_skb_any() in interrupt context Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 109/251] Bluetooth: btusb: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 110/251] Bluetooth: hci_qca: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 111/251] Bluetooth: hci_h5: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 112/251] Bluetooth: hci_bcsp: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 113/251] Bluetooth: hci_core: " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 114/251] stmmac: fix potential division by 0 Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 115/251] scsi: hpsa: Fix error handling in hpsa_add_sas_host() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 116/251] scsi: hpsa: Fix possible memory leak in hpsa_add_sas_device() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 117/251] scsi: fcoe: Fix possible name leak when device_register() fails Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 118/251] scsi: ipr: Fix WARNING in ipr_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 119/251] scsi: fcoe: Fix transport not deattached when fcoe_if_init() fails Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 120/251] scsi: snic: Fix possible UAF in snic_tgt_create() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 121/251] orangefs: Fix sysfs not cleanup when dev init failed Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 122/251] crypto: img-hash - Fix variable dereferenced before check hdev->req Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 123/251] hwrng: amd - Fix PCI device refcount leak Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 124/251] hwrng: geode " Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 125/251] IB/IPoIB: Fix queue count inconsistency for PKEY child interfaces Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 126/251] drivers: dio: fix possible memory leak in dio_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 127/251] vfio: platform: Do not pass return buffer to ACPI _RST method Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 128/251] uio: uio_dmem_genirq: Fix missing unlock in irq configuration Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 129/251] uio: uio_dmem_genirq: Fix deadlock between irq config and handling Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 130/251] usb: fotg210-udc: Fix ages old endianness issues Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 131/251] staging: vme_user: Fix possible UAF in tsi148_dma_list_add Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 132/251] serial: amba-pl011: avoid SBSA UART accessing DMACR register Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 133/251] serial: pch: Fix PCI device refcount leak in pch_request_dma() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 134/251] serial: sunsab: Fix error handling in sunsab_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 135/251] misc: tifm: fix possible memory leak in tifm_7xx1_switch_media() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 136/251] misc: sgi-gru: fix use-after-free error in gru_set_context_option, gru_fault and gru_handle_user_call_os Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 137/251] cxl: fix possible null-ptr-deref in cxl_guest_init_afu|adapter() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 138/251] cxl: fix possible null-ptr-deref in cxl_pci_init_afu|adapter() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 139/251] drivers: mcb: fix resource leak in mcb_probe() Greg Kroah-Hartman
2023-01-05 12:54 ` Greg Kroah-Hartman [this message]
2023-01-05 12:54 ` [PATCH 4.9 141/251] chardev: fix error handling in cdev_device_add() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 142/251] i2c: pxa-pci: fix missing pci_disable_device() on error in ce4100_i2c_probe Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 143/251] staging: rtl8192u: Fix use after free in ieee80211_rx() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 144/251] staging: rtl8192e: Fix potential use-after-free in rtllib_rx_Monitor() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 145/251] vme: Fix error not catched in fake_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 146/251] i2c: ismt: Fix an out-of-bounds bug in ismt_access() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 147/251] usb: storage: Add check for kcalloc Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 148/251] fbdev: ssd1307fb: Drop optional dependency Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 149/251] fbdev: pm2fb: fix missing pci_disable_device() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 150/251] fbdev: via: Fix error in via_core_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 151/251] fbdev: vermilion: decrease reference count in error path Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 152/251] fbdev: uvesafb: Fixes an error handling path in uvesafb_probe() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 153/251] HSI: omap_ssi_core: fix unbalanced pm_runtime_disable() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 154/251] HSI: omap_ssi_core: fix possible memory leak in ssi_probe() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 155/251] power: supply: fix residue sysfs file in error handle route of __power_supply_register() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 156/251] HSI: omap_ssi_core: Fix error handling in ssi_init() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 157/251] include/uapi/linux/swab: Fix potentially missing __always_inline Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 158/251] rtc: snvs: Allow a time difference on clock register read Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 159/251] iommu/fsl_pamu: Fix resource leak in fsl_pamu_probe() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 160/251] macintosh: fix possible memory leak in macio_add_one_device() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 161/251] macintosh/macio-adb: check the return value of ioremap() Greg Kroah-Hartman
2023-01-05 12:54 ` [PATCH 4.9 162/251] powerpc/52xx: Fix a resource leak in an error handling path Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 163/251] powerpc/perf: callchain validate kernel stack pointer bounds Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 164/251] powerpc/83xx/mpc832x_rdb: call platform_device_put() in error case in of_fsl_spi_probe() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 165/251] powerpc/hv-gpci: Fix hv_gpci event list Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 166/251] selftests/powerpc: Fix resource leaks Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 167/251] rtc: st-lpc: Add missing clk_disable_unprepare in st_rtc_probe() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 168/251] nfsd: under NFSv4.1, fix double svc_xprt_put on rpc_create failure Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 169/251] mISDN: hfcsusb: dont call dev_kfree_skb/kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 170/251] mISDN: hfcpci: " Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 171/251] mISDN: hfcmulti: " Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 172/251] nfc: pn533: Clear nfc_target before being used Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 173/251] r6040: Fix kmemleak in probe and remove Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 174/251] openvswitch: Fix flow lookup to use unmasked key Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 175/251] skbuff: Account for tail adjustment during pull operations Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 176/251] net_sched: reject TCF_EM_SIMPLE case for complex ematch module Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 177/251] myri10ge: Fix an error handling path in myri10ge_probe() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 178/251] net: stream: purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 179/251] binfmt_misc: fix shift-out-of-bounds in check_special_flags Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 180/251] fs: jfs: fix shift-out-of-bounds in dbAllocAG Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 181/251] udf: Avoid double brelse() in udf_rename() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 182/251] fs: jfs: fix shift-out-of-bounds in dbDiscardAG Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 183/251] ACPICA: Fix error code path in acpi_ds_call_control_method() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 184/251] nilfs2: fix shift-out-of-bounds/overflow in nilfs_sb2_bad_offset() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 185/251] acct: fix potential integer overflow in encode_comp_t() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 186/251] hfs: fix OOB Read in __hfs_brec_find Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 187/251] wifi: ath9k: verify the expected usb_endpoints are present Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 188/251] wifi: ar5523: Fix use-after-free on ar5523_cmd() timed out Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 189/251] ipmi: fix memleak when unload ipmi driver Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 190/251] net: ethernet: ti: Fix return type of netcp_ndo_start_xmit() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 191/251] hamradio: baycom_epp: Fix return type of baycom_send_packet() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 192/251] wifi: brcmfmac: Fix potential shift-out-of-bounds in brcmf_fw_alloc_request() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 193/251] igb: Do not free q_vector unless new one was allocated Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 194/251] s390/ctcm: Fix return type of ctc{mp,}m_tx() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 195/251] s390/netiucv: Fix return type of netiucv_tx() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 196/251] s390/lcs: Fix return type of lcs_start_xmit() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 197/251] drm/sti: Use drm_mode_copy() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 198/251] md/raid1: stop mdx_raid1 thread when raid1 array run failed Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 199/251] mrp: introduce active flags to prevent UAF when applicant uninit Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 200/251] ppp: associate skb with a device at tx Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 201/251] media: dvb-frontends: fix leak of memory fw Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 202/251] media: dvb-usb: fix memory leak in dvb_usb_adapter_init() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 203/251] blk-mq: fix possible memleak when register hctx failed Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 204/251] mmc: f-sdh30: Add quirks for broken timeout clock capability Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 205/251] media: si470x: Fix use-after-free in si470x_int_in_callback() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 206/251] clk: st: Fix memory leak in st_of_quadfs_setup() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 207/251] drm/fsl-dcu: Fix return type of fsl_dcu_drm_connector_mode_valid() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 208/251] drm/sti: Fix return type of sti_{dvo,hda,hdmi}_connector_mode_valid() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 209/251] orangefs: Fix kmemleak in orangefs_prepare_debugfs_help_string() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 210/251] ASoC: mediatek: mt8173-rt5650-rt5514: fix refcount leak in mt8173_rt5650_rt5514_dev_probe() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 211/251] ASoC: wm8994: Fix potential deadlock Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 212/251] ASoC: rockchip: spdif: Add missing clk_disable_unprepare() in rk_spdif_runtime_resume() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 213/251] ASoC: rt5670: Remove unbalanced pm_runtime_put() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 214/251] HID: wacom: Ensure bootloader PID is usable in hidraw mode Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 215/251] reiserfs: Add missing calls to reiserfs_security_free() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 216/251] iio: adc: ad_sigma_delta: do not use internal iio_dev lock Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 217/251] gcov: add support for checksum field Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 218/251] powerpc/rtas: avoid scheduling in rtas_os_term() Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 219/251] HID: plantronics: Additional PIDs for double volume key presses quirk Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 220/251] hfsplus: fix bug causing custom uid and gid being unable to be assigned with mount Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 221/251] ALSA: line6: correct midi status byte when receiving data from podxt Greg Kroah-Hartman
2023-01-05 12:55 ` [PATCH 4.9 222/251] ALSA: line6: fix stack overflow in line6_midi_transmit Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 223/251] pnode: terminate at peers of source Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 224/251] md: fix a crash in mempool_free Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 225/251] mmc: vub300: fix warning - do not call blocking ops when !TASK_RUNNING Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 226/251] media: stv0288: use explicitly signed char Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 227/251] ktest.pl minconfig: Unset configs instead of just removing them Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 228/251] ARM: ux500: do not directly dereference __iomem Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 229/251] dm cache: Fix ABBA deadlock between shrink_slab and dm_cache_metadata_abort Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 230/251] dm thin: Use last transactions pmd->root when commit failed Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 231/251] dm thin: Fix UAF in run_timer_softirq() Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 232/251] dm cache: Fix UAF in destroy() Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 233/251] dm cache: set needs_check flag after aborting metadata Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 234/251] tracing: Fix infinite loop in tracing_read_pipe on overflowed print_trace_line Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 235/251] ARM: 9256/1: NWFPE: avoid compiler-generated __aeabi_uldivmod Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 236/251] media: dvb-core: Fix double free in dvb_register_device() Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 237/251] cifs: fix confusing debug message Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 238/251] PCI/sysfs: Fix double free in error path Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 239/251] crypto: n2 - add missing hash statesize Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 240/251] iommu/amd: Fix ivrs_acpihid cmdline parsing code Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 241/251] parisc: led: Fix potential null-ptr-deref in start_task() Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 242/251] device_cgroup: Roll back to original exceptions after copy failure Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 243/251] drm/connector: send hotplug uevent on connector cleanup Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 244/251] drm/vmwgfx: Validate the box size for the snooped cursor Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 245/251] ext4: add inode table check in __ext4_get_inode_loc to aovid possible infinite loop Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 246/251] ext4: fix undefined behavior in bit shift for ext4_check_flag_values Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 247/251] ext4: fix bug_on in __es_tree_search caused by bad boot loader inode Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 248/251] ext4: init quota for old.inode in ext4_rename Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 249/251] ext4: fix error code return to user-space in ext4_get_branch() Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 250/251] ext4: avoid BUG_ON when creating xattrs Greg Kroah-Hartman
2023-01-05 12:56 ` [PATCH 4.9 251/251] ext4: initialize quota before expanding inode in setproject ioctl Greg Kroah-Hartman
2023-01-05 16:36 ` [PATCH 4.9 000/251] 4.9.337-rc1 review Shuah Khan
2023-01-05 19:13 ` Guenter Roeck
2023-01-05 19:17 ` Pavel Machek
2023-01-05 19:28 ` Florian Fainelli
2023-01-05 19:47 ` Pavel Machek
2023-01-07 10:27 ` Greg Kroah-Hartman
2023-01-06 10:12 ` 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=20230105125341.249021068@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=jth@kernel.org \
--cc=patches@lists.linux.dev \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
--cc=yangyingliang@huawei.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).