stable.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, Chengfeng Ye <cyeaa@connect.ust.hk>,
	Dan Carpenter <dan.carpenter@oracle.com>,
	Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.9 150/207] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails
Date: Wed, 24 Nov 2021 12:57:01 +0100	[thread overview]
Message-ID: <20211124115708.867323443@linuxfoundation.org> (raw)
In-Reply-To: <20211124115703.941380739@linuxfoundation.org>

From: Chengfeng Ye <cyeaa@connect.ust.hk>

[ Upstream commit 9fec40f850658e00a14a7dd9e06f7fbc7e59cc4a ]

skb is already freed by dev_kfree_skb in pn533_fill_fragment_skbs,
but follow error handler branch when pn533_fill_fragment_skbs()
fails, skb is freed again, results in double free issue. Fix this
by not free skb in error path of pn533_fill_fragment_skbs.

Fixes: 963a82e07d4e ("NFC: pn533: Split large Tx frames in chunks")
Fixes: 93ad42020c2d ("NFC: pn533: Target mode Tx fragmentation support")
Signed-off-by: Chengfeng Ye <cyeaa@connect.ust.hk>
Reviewed-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/nfc/pn533/pn533.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/nfc/pn533/pn533.c b/drivers/nfc/pn533/pn533.c
index 6c495664d2cb7..806309ee41657 100644
--- a/drivers/nfc/pn533/pn533.c
+++ b/drivers/nfc/pn533/pn533.c
@@ -2075,7 +2075,7 @@ static int pn533_fill_fragment_skbs(struct pn533 *dev, struct sk_buff *skb)
 		frag = pn533_alloc_skb(dev, frag_size);
 		if (!frag) {
 			skb_queue_purge(&dev->fragment_skb);
-			break;
+			return -ENOMEM;
 		}
 
 		if (!dev->tgt_mode) {
@@ -2145,7 +2145,7 @@ static int pn533_transceive(struct nfc_dev *nfc_dev,
 		/* jumbo frame ? */
 		if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) {
 			rc = pn533_fill_fragment_skbs(dev, skb);
-			if (rc <= 0)
+			if (rc < 0)
 				goto error;
 
 			skb = skb_dequeue(&dev->fragment_skb);
@@ -2217,7 +2217,7 @@ static int pn533_tm_send(struct nfc_dev *nfc_dev, struct sk_buff *skb)
 	/* let's split in multiple chunks if size's too big */
 	if (skb->len > PN533_CMD_DATAEXCH_DATA_MAXLEN) {
 		rc = pn533_fill_fragment_skbs(dev, skb);
-		if (rc <= 0)
+		if (rc < 0)
 			goto error;
 
 		/* get the first skb */
-- 
2.33.0




  parent reply	other threads:[~2021-11-24 12:22 UTC|newest]

Thread overview: 217+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-24 11:54 [PATCH 4.9 000/207] 4.9.291-rc1 review Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 001/207] binder: use euid from cred instead of using task Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 002/207] binder: use cred instead of task for selinux checks Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 003/207] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 004/207] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 005/207] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 006/207] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 007/207] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 008/207] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 009/207] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 010/207] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 011/207] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 012/207] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 013/207] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 014/207] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 015/207] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 016/207] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 017/207] fuse: fix page stealing Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 018/207] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 019/207] sfc: Dont use netif_info before net_device setup Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 020/207] hyperv/vmbus: include linux/bitops.h Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 021/207] mmc: winbond: dont build on M68K Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 022/207] bpf: Prevent increasing bpf_jit_limit above max Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 023/207] xen/netfront: stop tx queues during live migration Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 024/207] spi: spl022: fix Microwire full duplex mode Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 025/207] watchdog: Fix OMAP watchdog early handling Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 026/207] vmxnet3: do not stop tx queues after netif_device_detach() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 027/207] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.9 028/207] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 029/207] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 030/207] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 031/207] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 032/207] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 033/207] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 034/207] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 035/207] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 036/207] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 037/207] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 038/207] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 039/207] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 040/207] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 041/207] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 042/207] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 043/207] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 044/207] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 045/207] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 046/207] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 047/207] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 048/207] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 049/207] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 050/207] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 051/207] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 052/207] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 053/207] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 054/207] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 055/207] USB: iowarrior: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 056/207] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 057/207] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 058/207] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 059/207] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 060/207] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 061/207] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 062/207] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 063/207] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 064/207] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 065/207] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 066/207] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 067/207] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 068/207] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 069/207] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 070/207] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 071/207] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 072/207] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 073/207] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 074/207] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 075/207] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 076/207] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 077/207] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 078/207] tracing/cfi: Fix cmp_entries_* functions signature mismatch Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 079/207] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 080/207] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 081/207] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 082/207] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 083/207] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 084/207] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 085/207] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 086/207] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 087/207] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.9 088/207] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 089/207] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 090/207] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 091/207] media: si470x: Avoid card name truncation Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 092/207] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 093/207] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 094/207] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 095/207] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 096/207] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 097/207] b43: " Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 098/207] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 099/207] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 100/207] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 101/207] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 102/207] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 103/207] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 104/207] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 105/207] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 106/207] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 107/207] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 108/207] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 109/207] s390/gmap: dont unconditionally call pte_unmap_unlock() in __gmap_zap() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 110/207] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 111/207] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 112/207] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 113/207] libertas: " Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 114/207] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 115/207] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 116/207] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 117/207] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 118/207] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 119/207] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 120/207] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 121/207] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 122/207] memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 123/207] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 124/207] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 125/207] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 126/207] =?UTF-8?q?power:=20supply:=20rt5033=5Fbattery:=20Change=20voltage?= =?UTF-8?q?=20values=20to=20=C2=B5V?= Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 127/207] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 128/207] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 129/207] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 130/207] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 131/207] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 132/207] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 133/207] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 134/207] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 135/207] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 136/207] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 137/207] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 138/207] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 139/207] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 140/207] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 141/207] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 142/207] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 143/207] i2c: xlr: Fix a resource leak in the error handling path of xlr_i2c_probe() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 144/207] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 145/207] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 146/207] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 147/207] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.9 148/207] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 149/207] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-24 11:57 ` Greg Kroah-Hartman [this message]
2021-11-24 11:57 ` [PATCH 4.9 151/207] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 152/207] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 153/207] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 154/207] powerpc/bpf: Validate branch ranges Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 155/207] powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 156/207] mm, oom: pagefault_out_of_memory: dont force global OOM for dying tasks Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 157/207] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 158/207] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 159/207] net: mdio-mux: fix unbalanced put_device Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 160/207] parisc/entry: fix trace test in syscall exit path Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 161/207] PCI/MSI: Destroy sysfs before freeing entries Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 162/207] scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 163/207] usb: musb: tusb6010: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 164/207] arm64: dts: qcom: msm8916: Add unit name for /soc node Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 165/207] scsi: advansys: Fix kernel pointer leak Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 166/207] ARM: dts: omap: fix gpmc,mux-add-data type Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 167/207] usb: host: ohci-tmio: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 168/207] tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 169/207] MIPS: sni: Fix the build Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 170/207] scsi: target: Fix ordered tag handling Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 171/207] scsi: target: Fix alua_tg_pt_gps_count tracking Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 172/207] powerpc/5200: dts: fix memory node unit name Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 173/207] ALSA: gus: fix null pointer dereference on pointer block Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 174/207] powerpc/dcr: Use cmplwi instead of 3-argument cmpli Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 175/207] sh: check return code of request_irq Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 176/207] maple: fix wrong return value of maple_bus_init() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 177/207] sh: fix kconfig unmet dependency warning for FRAME_POINTER Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 178/207] sh: define __BIG_ENDIAN for math-emu Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 179/207] mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 180/207] sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 181/207] net: bnx2x: fix variable dereferenced before check Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 182/207] iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 183/207] mips: bcm63xx: add support for clk_get_parent() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 184/207] platform/x86: hp_accel: Fix an error handling path in lis3lv02d_probe() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 185/207] NFC: reorganize the functions in nci_request Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 186/207] NFC: reorder the logic in nfc_{un,}register_device Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 187/207] perf bench: Fix two memory leaks detected with ASan Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 188/207] perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 189/207] perf/x86/intel/uncore: Fix IIO event constraints for " Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 190/207] tun: fix bonding active backup with arp monitoring Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 191/207] hexagon: export raw I/O routines for modules Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 192/207] mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 193/207] btrfs: fix memory ordering between normal and ordered work functions Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 194/207] parisc/sticon: fix reverse colors Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 195/207] cfg80211: call cfg80211_stop_ap when switch from P2P_GO type Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 196/207] drm/udl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 197/207] drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga and dvi connectors Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 198/207] batman-adv: Keep fragments equally sized Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 199/207] batman-adv: Fix own OGM check in aggregated OGMs Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 200/207] batman-adv: mcast: fix duplicate mcast packets in BLA backbone from LAN Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 201/207] batman-adv: mcast: fix duplicate mcast packets from BLA backbone to mesh Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 202/207] batman-adv: Consider fragmentation for needed_headroom Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 203/207] batman-adv: Reserve needed_*room for fragments Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 204/207] batman-adv: Dont always reallocate the fragmentation skb head Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 205/207] ASoC: DAPM: Cover regression by kctl change notification fix Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 206/207] usb: max-3421: Use driver data instead of maintaining a list of bound devices Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.9 207/207] hugetlbfs: flush TLBs correctly after huge_pmd_unshare Greg Kroah-Hartman
2021-11-24 14:08 ` [PATCH 4.9 000/207] 4.9.291-rc1 review Guenter Roeck
2021-11-24 15:12 ` Naresh Kamboju
2021-11-25 12:58   ` Greg Kroah-Hartman
2021-11-24 15:43 ` Guenter Roeck
2021-11-25  1:50 ` Guenter Roeck
2021-11-25 12:58   ` Greg Kroah-Hartman
2021-11-25  3:36 ` Naresh Kamboju
2021-11-25 11:16   ` Greg Kroah-Hartman
2021-11-25 11:17 ` Jon Hunter

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=20211124115708.867323443@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=cyeaa@connect.ust.hk \
    --cc=dan.carpenter@oracle.com \
    --cc=davem@davemloft.net \
    --cc=krzysztof.kozlowski@canonical.com \
    --cc=linux-kernel@vger.kernel.org \
    --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).