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,
	Grzegorz Szczurek <grzegorzx.szczurek@intel.com>,
	Michal Maloszewski <michal.maloszewski@intel.com>,
	Przemyslaw Patynowski <przemyslawx.patynowski@intel.com>,
	Witold Fijalkowski <witoldx.fijalkowski@intel.com>,
	Jaroslaw Gawin <jaroslawx.gawin@intel.com>,
	Aleksandr Loktionov <aleksandr.loktionov@intel.com>,
	Tony Brelinski <tony.brelinski@intel.com>,
	Tony Nguyen <anthony.l.nguyen@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 4.19 296/323] i40e: Fix NULL ptr dereference on VSI filter sync
Date: Wed, 24 Nov 2021 12:58:06 +0100	[thread overview]
Message-ID: <20211124115728.898582248@linuxfoundation.org> (raw)
In-Reply-To: <20211124115718.822024889@linuxfoundation.org>

From: Michal Maloszewski <michal.maloszewski@intel.com>

[ Upstream commit 37d9e304acd903a445df8208b8a13d707902dea6 ]

Remove the reason of null pointer dereference in sync VSI filters.
Added new I40E_VSI_RELEASING flag to signalize deleting and releasing
of VSI resources to sync this thread with sync filters subtask.
Without this patch it is possible to start update the VSI filter list
after VSI is removed, that's causing a kernel oops.

Fixes: 41c445ff0f48 ("i40e: main driver core")
Signed-off-by: Grzegorz Szczurek <grzegorzx.szczurek@intel.com>
Signed-off-by: Michal Maloszewski <michal.maloszewski@intel.com>
Reviewed-by: Przemyslaw Patynowski <przemyslawx.patynowski@intel.com>
Reviewed-by: Witold Fijalkowski <witoldx.fijalkowski@intel.com>
Reviewed-by: Jaroslaw Gawin <jaroslawx.gawin@intel.com>
Reviewed-by: Aleksandr Loktionov <aleksandr.loktionov@intel.com>
Tested-by: Tony Brelinski <tony.brelinski@intel.com>
Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/net/ethernet/intel/i40e/i40e.h      | 1 +
 drivers/net/ethernet/intel/i40e/i40e_main.c | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/intel/i40e/i40e.h b/drivers/net/ethernet/intel/i40e/i40e.h
index 3c921dfc20564..519b595944235 100644
--- a/drivers/net/ethernet/intel/i40e/i40e.h
+++ b/drivers/net/ethernet/intel/i40e/i40e.h
@@ -166,6 +166,7 @@ enum i40e_vsi_state_t {
 	__I40E_VSI_OVERFLOW_PROMISC,
 	__I40E_VSI_REINIT_REQUESTED,
 	__I40E_VSI_DOWN_REQUESTED,
+	__I40E_VSI_RELEASING,
 	/* This must be last as it determines the size of the BITMAP */
 	__I40E_VSI_STATE_SIZE__,
 };
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index 062b942517822..d948ca6368422 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -2584,7 +2584,8 @@ static void i40e_sync_filters_subtask(struct i40e_pf *pf)
 
 	for (v = 0; v < pf->num_alloc_vsi; v++) {
 		if (pf->vsi[v] &&
-		    (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED)) {
+		    (pf->vsi[v]->flags & I40E_VSI_FLAG_FILTER_CHANGED) &&
+		    !test_bit(__I40E_VSI_RELEASING, pf->vsi[v]->state)) {
 			int ret = i40e_sync_vsi_filters(pf->vsi[v]);
 
 			if (ret) {
@@ -12444,7 +12445,7 @@ int i40e_vsi_release(struct i40e_vsi *vsi)
 		dev_info(&pf->pdev->dev, "Can't remove PF VSI\n");
 		return -ENODEV;
 	}
-
+	set_bit(__I40E_VSI_RELEASING, vsi->state);
 	uplink_seid = vsi->uplink_seid;
 	if (vsi->type != I40E_VSI_SRIOV) {
 		if (vsi->netdev_registered) {
-- 
2.33.0




  parent reply	other threads:[~2021-11-24 13:16 UTC|newest]

Thread overview: 341+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-24 11:53 [PATCH 4.19 000/323] 4.19.218-rc1 review Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 001/323] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 002/323] binder: use euid from cred instead of using task Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 003/323] binder: use cred instead of task for selinux checks Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 004/323] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 005/323] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 006/323] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 007/323] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 008/323] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 009/323] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 010/323] tpm: Check for integer overflow in tpm2_map_response_body() Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 011/323] firmware/psci: fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 012/323] crypto: s5p-sss - Add error handling in s5p_aes_probe() Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 013/323] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 014/323] media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 015/323] ALSA: hda/realtek: Add quirk for Clevo PC70HS Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 016/323] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 017/323] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 018/323] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 019/323] ALSA: usb-audio: Add registration quirk for JBL Quantum 400 Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 020/323] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 021/323] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 022/323] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 023/323] fuse: fix page stealing Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 024/323] x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 025/323] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 026/323] cavium: Return negative value when pci_alloc_irq_vectors() fails Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 027/323] scsi: qla2xxx: Fix unmap of already freed sgl Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 028/323] cavium: Fix return values of the probe function Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 029/323] sfc: Dont use netif_info before net_device setup Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 030/323] hyperv/vmbus: include linux/bitops.h Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 031/323] mmc: winbond: dont build on M68K Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 032/323] drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 033/323] bpf: Prevent increasing bpf_jit_limit above max Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 034/323] xen/netfront: stop tx queues during live migration Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 035/323] spi: spl022: fix Microwire full duplex mode Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 036/323] watchdog: Fix OMAP watchdog early handling Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 037/323] vmxnet3: do not stop tx queues after netif_device_detach() Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 038/323] btrfs: clear MISSING device status bit in btrfs_close_one_device Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 039/323] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 040/323] btrfs: call btrfs_check_rw_degradable only if there is a missing device Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 041/323] ia64: kprobes: Fix to pass correct trampoline address to the handler Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 042/323] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 043/323] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 044/323] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 045/323] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 046/323] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 047/323] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 048/323] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:53 ` [PATCH 4.19 049/323] ath10k: " Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 050/323] ath10k: fix division by zero in send path Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 051/323] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 052/323] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 053/323] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 054/323] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 055/323] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 056/323] libata: fix checking of DMA state Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 057/323] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 058/323] rsi: fix occasional initialisation failure with BT coex Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 059/323] rsi: fix key enabled check causing unwanted encryption for vap_id > 0 Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 060/323] rsi: fix rate mask set leading to P2P failure Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 061/323] rsi: Fix module dev_oper_mode parameter description Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 062/323] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 063/323] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 064/323] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 065/323] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 066/323] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 067/323] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 068/323] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 069/323] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 070/323] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 071/323] xen/balloon: add late_initcall_sync() for initial ballooning done Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 072/323] PCI: aardvark: Do not clear status bits of masked interrupts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 073/323] PCI: aardvark: Do not unmask unused interrupts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 074/323] PCI: aardvark: Fix return value of MSI domain .alloc() method Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 075/323] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 076/323] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 077/323] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 078/323] pinctrl: core: fix possible memory leak in pinctrl_enable() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 079/323] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 080/323] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 081/323] USB: iowarrior: fix control-message timeouts Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 082/323] drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 083/323] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 084/323] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 085/323] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 086/323] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 087/323] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 088/323] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-28  9:46   ` Salvatore Bonaccorso
2021-11-28 11:59     ` Salvatore Bonaccorso
2021-11-28 12:11       ` Salvatore Bonaccorso
2021-11-28 13:06         ` Greg Kroah-Hartman
2021-11-28 13:08           ` Greg Kroah-Hartman
2021-11-29 18:30             ` Salvatore Bonaccorso
2021-11-30  7:57               ` Greg Kroah-Hartman
2021-12-04 10:30                 ` Salvatore Bonaccorso
2021-11-24 11:54 ` [PATCH 4.19 089/323] net: sched: update default qdisc visibility after Tx queue cnt changes Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 090/323] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 091/323] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 092/323] mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 093/323] mwifiex: Properly initialize private structure on interface type changes Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 094/323] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 095/323] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 096/323] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 097/323] media: uvcvideo: Return -EIO for control errors Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 098/323] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 099/323] media: s5p-mfc: Add checking to s5p_mfc_probe() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 100/323] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 101/323] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 102/323] media: rcar-csi2: Add checking to rcsi2_start_receiver() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 103/323] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 104/323] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 105/323] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 106/323] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 107/323] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 108/323] leaking_addresses: Always print a trailing newline Greg Kroah-Hartman
2021-11-24 11:54 ` [PATCH 4.19 109/323] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 110/323] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 111/323] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 112/323] workqueue: make sysfs of unbound kworker cpumask more clever Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 113/323] tracing/cfi: Fix cmp_entries_* functions signature mismatch Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 114/323] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 115/323] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 116/323] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 117/323] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 118/323] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 119/323] gre/sit: Dont generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 120/323] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 121/323] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 122/323] x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 123/323] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 124/323] task_stack: Fix end_of_stack() for architectures with upwards-growing stack Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 125/323] parisc/unwind: fix unwinder when CONFIG_64BIT is enabled Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 126/323] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 127/323] Bluetooth: fix init and cleanup of sco_conn.timeout_work Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 128/323] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 129/323] net: dsa: rtl8366rb: Fix off-by-one bug Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 130/323] drm/amdgpu: fix warning for overflow check Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 131/323] media: em28xx: add missing em28xx_close_extension Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 132/323] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 133/323] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 134/323] media: si470x: Avoid card name truncation Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 135/323] media: cx23885: Fix snd_card_free call on null card pointer Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 136/323] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 137/323] media: em28xx: Dont use ops->suspend if it is NULL Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 138/323] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 139/323] media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 140/323] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 141/323] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 142/323] hwrng: mtk - Force runtime pm ops for sleep ops Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 143/323] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 144/323] b43: " Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 145/323] mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 146/323] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 147/323] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 148/323] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 149/323] hwmon: (pmbus/lm25066) Let compiler determine outer dimension of lm25066_coeff Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 150/323] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 151/323] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 152/323] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 153/323] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 154/323] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 155/323] rsi: stop thread firstly in rsi_91x_init() error handling Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 156/323] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 157/323] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 158/323] nvme-rdma: fix error code in nvme_rdma_setup_ctrl Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 159/323] PM: hibernate: fix sparse warnings Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 160/323] clocksource/drivers/timer-ti-dm: Select TIMER_OF Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 161/323] drm/msm: Fix potential NULL dereference in DPU SSPP Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 162/323] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 163/323] s390/gmap: dont unconditionally call pte_unmap_unlock() in __gmap_zap() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 164/323] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 165/323] tcp: dont free a FIN sk_buff in tcp_remove_empty_skb() Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 166/323] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 167/323] KVM: s390: Fix handle_sske page fault handling Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 168/323] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-24 11:55 ` [PATCH 4.19 169/323] libertas: " Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 170/323] wcn36xx: add proper DMA memory barriers in rx path Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 171/323] net: amd-xgbe: Toggle PLL settings during rate change Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 172/323] net: phylink: avoid mvneta warning when setting pause parameters Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 173/323] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 174/323] selftests/bpf: Fix fclose/pclose mismatch in test_progs Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 175/323] ibmvnic: Process crqs after enabling interrupts Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 176/323] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 177/323] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 178/323] arm64: dts: rockchip: Fix GPU register width for RK3328 Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 179/323] RDMA/bnxt_re: Fix query SRQ failure Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 180/323] ARM: dts: at91: tse850: the emac<->phy interface is rmii Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 181/323] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 182/323] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 183/323] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 184/323] ALSA: hda: Reduce udelay() at SKL+ position reporting Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 185/323] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 186/323] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 187/323] 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.19 188/323] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 189/323] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 190/323] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 191/323] =?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.19 192/323] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 193/323] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 194/323] ASoC: cs42l42: Correct some register default values Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 195/323] ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 196/323] phy: qcom-qusb2: Fix a memory leak on probe Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 197/323] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 198/323] mips: cm: Convert to bitfield API to fix out-of-bounds access Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 199/323] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 200/323] apparmor: fix error check Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 201/323] rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 202/323] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 203/323] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 204/323] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 205/323] NFS: Fix deadlocks in nfs_scan_commit_list() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 206/323] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 207/323] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 208/323] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 209/323] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 210/323] auxdisplay: ht16k33: Connect backlight to fbdev Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 211/323] auxdisplay: ht16k33: Fix frame buffer device blanking Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 212/323] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 213/323] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 214/323] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 215/323] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 216/323] ar7: fix kernel builds for compiler test Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 217/323] scsi: qla2xxx: Fix gnl list corruption Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 218/323] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 219/323] 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.19 220/323] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 221/323] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 222/323] net: vlan: fix a UAF in vlan_dev_real_dev() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 223/323] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 224/323] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 225/323] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 226/323] zram: off by one in read_block_state() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 227/323] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 228/323] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails Greg Kroah-Hartman
2021-11-24 11:56 ` [PATCH 4.19 229/323] arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 230/323] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 231/323] cxgb4: fix eeprom len when diagnostics not implemented Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 232/323] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 233/323] ARM: 9155/1: fix early early_iounmap() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 234/323] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 235/323] f2fs: should use GFP_NOFS for directory inodes Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 236/323] 9p/net: fix missing error check in p9_check_errors Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 237/323] powerpc/lib: Add helper to check if offset is within conditional branch range Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 238/323] powerpc/bpf: Validate branch ranges Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 239/323] powerpc/bpf: Fix BPF_SUB when imm == 0x80000000 Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 240/323] powerpc/security: Add a helper to query stf_barrier type Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 241/323] powerpc/bpf: Emit stf barrier instruction sequences for BPF_NOSPEC Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 242/323] mm, oom: pagefault_out_of_memory: dont force global OOM for dying tasks Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 243/323] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 244/323] backlight: gpio-backlight: Correct initial power state handling Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 245/323] video: backlight: Drop maximum brightness override for brightness zero Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 246/323] s390/cio: check the subchannel validity for dev_busid Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 247/323] s390/tape: fix timer initialization in tape_std_assign() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 248/323] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 249/323] fuse: truncate pagecache on atomic_o_trunc Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 250/323] x86/cpu: Fix migration safety with X86_BUG_NULL_SEL Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 251/323] ext4: fix lazy initialization next schedule time computation in more granular unit Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 252/323] fortify: Explicitly disable Clang support Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 253/323] parisc/entry: fix trace test in syscall exit path Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 254/323] PCI/MSI: Destroy sysfs before freeing entries Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 255/323] PCI/MSI: Deal with devices lying about their MSI mask capability Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 256/323] PCI: Add MSI masking quirk for Nvidia ION AHCI Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 257/323] erofs: remove the occupied parameter from z_erofs_pagevec_enqueue() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 258/323] erofs: fix unsafe pagevec reuse of hooked pclusters Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 259/323] arm64: zynqmp: Do not duplicate flash partition label property Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 260/323] arm64: zynqmp: Fix serial compatible string Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 261/323] scsi: lpfc: Fix list_add() corruption in lpfc_drain_txq() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 262/323] arm64: dts: hisilicon: fix arm,sp805 compatible string Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 263/323] usb: musb: tusb6010: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 264/323] usb: typec: tipd: Remove WARN_ON in tps6598x_block_read Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 265/323] arm64: dts: freescale: fix arm,sp805 compatible string Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 266/323] ASoC: nau8824: Add DMI quirk mechanism for active-high jack-detect Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 267/323] scsi: advansys: Fix kernel pointer leak Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 268/323] firmware_loader: fix pre-allocated buf built-in firmware use Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 269/323] ARM: dts: omap: fix gpmc,mux-add-data type Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 270/323] usb: host: ohci-tmio: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 271/323] ALSA: ISA: not for M68K Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 272/323] tty: tty_buffer: Fix the softlockup issue in flush_to_ldisc Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 273/323] MIPS: sni: Fix the build Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 274/323] scsi: target: Fix ordered tag handling Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 275/323] scsi: target: Fix alua_tg_pt_gps_count tracking Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 276/323] powerpc/5200: dts: fix memory node unit name Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 277/323] ALSA: gus: fix null pointer dereference on pointer block Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 278/323] powerpc/dcr: Use cmplwi instead of 3-argument cmpli Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 279/323] sh: check return code of request_irq Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 280/323] maple: fix wrong return value of maple_bus_init() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 281/323] f2fs: fix up f2fs_lookup tracepoints Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 282/323] sh: fix kconfig unmet dependency warning for FRAME_POINTER Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 283/323] sh: define __BIG_ENDIAN for math-emu Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 284/323] mips: BCM63XX: ensure that CPU_SUPPORTS_32BIT_KERNEL is set Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 285/323] sched/core: Mitigate race cpus_share_cache()/update_top_cache_domain() Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 286/323] drm/nouveau: hdmigv100.c: fix corrupted HDMI Vendor InfoFrame Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 287/323] net: bnx2x: fix variable dereferenced before check Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 288/323] iavf: check for null in iavf_fix_features Greg Kroah-Hartman
2021-11-24 11:57 ` [PATCH 4.19 289/323] iavf: Fix for the false positive ASQ/ARQ errors while issuing VF reset Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 290/323] MIPS: generic/yamon-dt: fix uninitialized variable error Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 291/323] mips: bcm63xx: add support for clk_get_parent() Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 292/323] mips: lantiq: " Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 293/323] platform/x86: hp_accel: Fix an error handling path in lis3lv02d_probe() Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 294/323] net: virtio_net_hdr_to_skb: count transport header in UFO Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 295/323] i40e: Fix correct max_pkt_size on VF RX queue Greg Kroah-Hartman
2021-11-24 11:58 ` Greg Kroah-Hartman [this message]
2021-11-24 11:58 ` [PATCH 4.19 297/323] i40e: Fix changing previously set num_queue_pairs for PFs Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 298/323] i40e: Fix display error code in dmesg Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 299/323] NFC: reorganize the functions in nci_request Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 300/323] NFC: reorder the logic in nfc_{un,}register_device Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 301/323] perf bench: Fix two memory leaks detected with ASan Greg Kroah-Hartman
     [not found]   ` <CAOz-JA4kZFoOig-aNu0yai+DE81XbNBkWUAaAYgUW4TQSCoY3g@mail.gmail.com>
2021-11-24 13:13     ` Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 302/323] perf/x86/intel/uncore: Fix filter_tid mask for CHA events on Skylake Server Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 303/323] perf/x86/intel/uncore: Fix IIO event constraints for " Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 304/323] tun: fix bonding active backup with arp monitoring Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 305/323] hexagon: export raw I/O routines for modules Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 306/323] ipc: WARN if trying to remove ipc object which is absent Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 307/323] mm: kmemleak: slob: respect SLAB_NOLEAKTRACE flag Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 308/323] x86/hyperv: Fix NULL deref in set_hv_tscchange_cb() if Hyper-V setup fails Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 309/323] udf: Fix crash after seekdir Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 310/323] btrfs: fix memory ordering between normal and ordered work functions Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 311/323] parisc/sticon: fix reverse colors Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 312/323] cfg80211: call cfg80211_stop_ap when switch from P2P_GO type Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 313/323] drm/udl: fix control-message timeout Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 314/323] drm/amdgpu: fix set scaling mode Full/Full aspect/Center not works on vga and dvi connectors Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 315/323] perf/core: Avoid put_page() when GUP fails Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 316/323] batman-adv: mcast: fix duplicate mcast packets in BLA backbone from LAN Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 317/323] batman-adv: Consider fragmentation for needed_headroom Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 318/323] batman-adv: Reserve needed_*room for fragments Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 319/323] batman-adv: Dont always reallocate the fragmentation skb head Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 320/323] RDMA/netlink: Add __maybe_unused to static inline in C file Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 321/323] ASoC: DAPM: Cover regression by kctl change notification fix Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 322/323] usb: max-3421: Use driver data instead of maintaining a list of bound devices Greg Kroah-Hartman
2021-11-24 11:58 ` [PATCH 4.19 323/323] hugetlbfs: flush TLBs correctly after huge_pmd_unshare Greg Kroah-Hartman
2021-11-24 15:33 ` [PATCH 4.19 000/323] 4.19.218-rc1 review Naresh Kamboju
2021-11-25 11:13   ` Greg Kroah-Hartman
2021-11-25  1:27 ` Samuel Zou
2021-11-25  1:40 ` Guenter Roeck
2021-11-25 11:13   ` Greg Kroah-Hartman
2021-11-25  3:45 ` Naresh Kamboju
2021-11-25 11:15   ` 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=20211124115728.898582248@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aleksandr.loktionov@intel.com \
    --cc=anthony.l.nguyen@intel.com \
    --cc=grzegorzx.szczurek@intel.com \
    --cc=jaroslawx.gawin@intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=michal.maloszewski@intel.com \
    --cc=przemyslawx.patynowski@intel.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tony.brelinski@intel.com \
    --cc=witoldx.fijalkowski@intel.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).