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, Kalesh Singh <kaleshsingh@google.com>,
	kernel test robot <lkp@intel.com>,
	"Steven Rostedt (VMware)" <rostedt@goodmis.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.14 290/849] tracing/cfi: Fix cmp_entries_* functions signature mismatch
Date: Mon, 15 Nov 2021 17:56:13 +0100	[thread overview]
Message-ID: <20211115165430.080492111@linuxfoundation.org> (raw)
In-Reply-To: <20211115165419.961798833@linuxfoundation.org>

From: Kalesh Singh <kaleshsingh@google.com>

[ Upstream commit 7ce1bb83a14019f8c396d57ec704d19478747716 ]

If CONFIG_CFI_CLANG=y, attempting to read an event histogram will cause
the kernel to panic due to failed CFI check.

    1. echo 'hist:keys=common_pid' >> events/sched/sched_switch/trigger
    2. cat events/sched/sched_switch/hist
    3. kernel panics on attempting to read hist

This happens because the sort() function expects a generic
int (*)(const void *, const void *) pointer for the compare function.
To prevent this CFI failure, change tracing map cmp_entries_* function
signatures to match this.

Also, fix the build error reported by the kernel test robot [1].

[1] https://lore.kernel.org/r/202110141140.zzi4dRh4-lkp@intel.com/

Link: https://lkml.kernel.org/r/20211014045217.3265162-1-kaleshsingh@google.com

Signed-off-by: Kalesh Singh <kaleshsingh@google.com>
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/trace/tracing_map.c | 40 ++++++++++++++++++++++----------------
 1 file changed, 23 insertions(+), 17 deletions(-)

diff --git a/kernel/trace/tracing_map.c b/kernel/trace/tracing_map.c
index d6bddb157ef20..39bb56d2dcbef 100644
--- a/kernel/trace/tracing_map.c
+++ b/kernel/trace/tracing_map.c
@@ -834,29 +834,35 @@ int tracing_map_init(struct tracing_map *map)
 	return err;
 }
 
-static int cmp_entries_dup(const struct tracing_map_sort_entry **a,
-			   const struct tracing_map_sort_entry **b)
+static int cmp_entries_dup(const void *A, const void *B)
 {
+	const struct tracing_map_sort_entry *a, *b;
 	int ret = 0;
 
-	if (memcmp((*a)->key, (*b)->key, (*a)->elt->map->key_size))
+	a = *(const struct tracing_map_sort_entry **)A;
+	b = *(const struct tracing_map_sort_entry **)B;
+
+	if (memcmp(a->key, b->key, a->elt->map->key_size))
 		ret = 1;
 
 	return ret;
 }
 
-static int cmp_entries_sum(const struct tracing_map_sort_entry **a,
-			   const struct tracing_map_sort_entry **b)
+static int cmp_entries_sum(const void *A, const void *B)
 {
 	const struct tracing_map_elt *elt_a, *elt_b;
+	const struct tracing_map_sort_entry *a, *b;
 	struct tracing_map_sort_key *sort_key;
 	struct tracing_map_field *field;
 	tracing_map_cmp_fn_t cmp_fn;
 	void *val_a, *val_b;
 	int ret = 0;
 
-	elt_a = (*a)->elt;
-	elt_b = (*b)->elt;
+	a = *(const struct tracing_map_sort_entry **)A;
+	b = *(const struct tracing_map_sort_entry **)B;
+
+	elt_a = a->elt;
+	elt_b = b->elt;
 
 	sort_key = &elt_a->map->sort_key;
 
@@ -873,18 +879,21 @@ static int cmp_entries_sum(const struct tracing_map_sort_entry **a,
 	return ret;
 }
 
-static int cmp_entries_key(const struct tracing_map_sort_entry **a,
-			   const struct tracing_map_sort_entry **b)
+static int cmp_entries_key(const void *A, const void *B)
 {
 	const struct tracing_map_elt *elt_a, *elt_b;
+	const struct tracing_map_sort_entry *a, *b;
 	struct tracing_map_sort_key *sort_key;
 	struct tracing_map_field *field;
 	tracing_map_cmp_fn_t cmp_fn;
 	void *val_a, *val_b;
 	int ret = 0;
 
-	elt_a = (*a)->elt;
-	elt_b = (*b)->elt;
+	a = *(const struct tracing_map_sort_entry **)A;
+	b = *(const struct tracing_map_sort_entry **)B;
+
+	elt_a = a->elt;
+	elt_b = b->elt;
 
 	sort_key = &elt_a->map->sort_key;
 
@@ -989,10 +998,8 @@ static void sort_secondary(struct tracing_map *map,
 			   struct tracing_map_sort_key *primary_key,
 			   struct tracing_map_sort_key *secondary_key)
 {
-	int (*primary_fn)(const struct tracing_map_sort_entry **,
-			  const struct tracing_map_sort_entry **);
-	int (*secondary_fn)(const struct tracing_map_sort_entry **,
-			    const struct tracing_map_sort_entry **);
+	int (*primary_fn)(const void *, const void *);
+	int (*secondary_fn)(const void *, const void *);
 	unsigned i, start = 0, n_sub = 1;
 
 	if (is_key(map, primary_key->field_idx))
@@ -1061,8 +1068,7 @@ int tracing_map_sort_entries(struct tracing_map *map,
 			     unsigned int n_sort_keys,
 			     struct tracing_map_sort_entry ***sort_entries)
 {
-	int (*cmp_entries_fn)(const struct tracing_map_sort_entry **,
-			      const struct tracing_map_sort_entry **);
+	int (*cmp_entries_fn)(const void *, const void *);
 	struct tracing_map_sort_entry *sort_entry, **entries;
 	int i, n_entries, ret;
 
-- 
2.33.0




  parent reply	other threads:[~2021-11-16  1:33 UTC|newest]

Thread overview: 859+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-15 16:51 [PATCH 5.14 000/849] 5.14.19-rc1 review Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 001/849] xhci: Fix USB 3.1 enumeration issues by increasing roothub power-on-good delay Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 002/849] usb: xhci: Enable runtime-pm by default on AMD Yellow Carp platform Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 003/849] Input: iforce - fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 004/849] Input: elantench - fix misreporting trackpoint coordinates Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 005/849] Input: i8042 - Add quirk for Fujitsu Lifebook T725 Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 006/849] libata: fix read log timeout value Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 007/849] ocfs2: fix data corruption on truncate Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 008/849] scsi: core: Avoid leaving shost->last_reset with stale value if EH does not run Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 009/849] scsi: core: Remove command size deduction from scsi_setup_scsi_cmnd() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 010/849] scsi: lpfc: Dont release final kref on Fport node while ABTS outstanding Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 011/849] scsi: lpfc: Fix FCP I/O flush functionality for TMF routines Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 012/849] scsi: qla2xxx: Fix kernel crash when accessing port_speed sysfs file Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 013/849] scsi: qla2xxx: Fix use after free in eh_abort path Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 014/849] ce/gf100: fix incorrect CE0 address calculation on some GPUs Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 015/849] char: xillybus: fix msg_ep UAF in xillyusb_probe() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 016/849] mmc: mtk-sd: Add wait dma stop done flow Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 017/849] mmc: dw_mmc: Dont wait for DRTO on Write RSP error Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 018/849] exfat: fix incorrect loading of i_blocks for large files Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 019/849] parisc: Fix set_fixmap() on PA1.x CPUs Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 020/849] parisc: Fix ptrace check on syscall return Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 021/849] tpm: Check for integer overflow in tpm2_map_response_body() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 022/849] firmware/psci: fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 023/849] crypto: s5p-sss - Add error handling in s5p_aes_probe() Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 024/849] media: rkvdec: Do not override sizeimage for output format Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 025/849] media: ite-cir: IR receiver stop working after receive overflow Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 026/849] media: rkvdec: Support dynamic resolution changes Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 027/849] media: ir-kbd-i2c: improve responsiveness of hauppauge zilog receivers Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 028/849] media: v4l2-ioctl: Fix check_ext_ctrls Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 029/849] ALSA: hda/realtek: Fix mic mute LED for the HP Spectre x360 14 Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 030/849] ALSA: hda/realtek: Add a quirk for HP OMEN 15 mute LED Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 031/849] ALSA: hda/realtek: Add quirk for Clevo PC70HS Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 032/849] ALSA: hda/realtek: Headset fixup for Clevo NH77HJQ Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 033/849] ALSA: hda/realtek: Add a quirk for Acer Spin SP513-54N Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 034/849] ALSA: hda/realtek: Add quirk for ASUS UX550VE Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 035/849] ALSA: hda/realtek: Add quirk for HP EliteBook 840 G7 mute LED Greg Kroah-Hartman
2021-11-15 16:51 ` [PATCH 5.14 036/849] ALSA: ua101: fix division by zero at probe Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 037/849] ALSA: 6fire: fix control and bulk message timeouts Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 038/849] ALSA: line6: fix control and interrupt " Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 039/849] ALSA: mixer: oss: Fix racy access to slots Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 040/849] ALSA: mixer: fix deadlock in snd_mixer_oss_set_volume Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 041/849] ALSA: usb-audio: Line6 HX-Stomp XL USB_ID for 48k-fixed quirk Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 042/849] ALSA: usb-audio: Add registration quirk for JBL Quantum 400 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 043/849] ALSA: hda: Free card instance properly at probe errors Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 044/849] ALSA: synth: missing check for possible NULL after the call to kstrdup Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 045/849] ALSA: PCM: Fix NULL dereference at mmap checks Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 046/849] ALSA: timer: Fix use-after-free problem Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 047/849] ALSA: timer: Unconditionally unlink slave instances, too Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 048/849] ext4: fix lazy initialization next schedule time computation in more granular unit Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 049/849] ext4: ensure enough credits in ext4_ext_shift_path_extents Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 050/849] ext4: refresh the ext4_ext_path struct after dropping i_data_sem Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 051/849] fuse: fix page stealing Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 052/849] x86/sme: Use #define USE_EARLY_PGTABLE_L5 in mem_encrypt_identity.c Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 053/849] x86/cpu: Fix migration safety with X86_BUG_NULL_SEL Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 054/849] x86/irq: Ensure PI wakeup handler is unregistered before module unload Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 055/849] x86/iopl: Fake iopl(3) CLI/STI usage Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 056/849] KVM: arm64: Report corrupted refcount at EL2 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 057/849] ASoC: soc-core: fix null-ptr-deref in snd_soc_del_component_unlocked() Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 058/849] ASoC: cs42l42: Ensure 0dB full scale volume is used for headsets Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 059/849] ALSA: hda/realtek: Fixes HP Spectre x360 15-eb1xxx speakers Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 060/849] ptp: fix error print of ptp_kvm on X86_64 platform Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 061/849] net: sparx5: Add of_node_put() before goto Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 062/849] net: mscc: ocelot: " Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 063/849] cavium: Return negative value when pci_alloc_irq_vectors() fails Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 064/849] scsi: qla2xxx: Return -ENOMEM if kzalloc() fails Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 065/849] scsi: qla2xxx: Fix unmap of already freed sgl Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 066/849] mISDN: Fix return values of the probe function Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 067/849] cavium: " Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 068/849] sfc: Export fibre-specific supported link modes Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 069/849] sfc: Dont use netif_info before net_device setup Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 070/849] hyperv/vmbus: include linux/bitops.h Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 071/849] ARM: dts: sun7i: A20-olinuxino-lime2: Fix ethernet phy-mode Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 072/849] reset: tegra-bpmp: Handle errors in BPMP response Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 073/849] reset: socfpga: add empty driver allowing consumers to probe Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 074/849] mmc: winbond: dont build on M68K Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 075/849] spi: altera: Change to dynamic allocation of spi id Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 076/849] drm: panel-orientation-quirks: Add quirk for Aya Neo 2021 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 077/849] fcnal-test: kill hanging ping/nettest binaries on cleanup Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 078/849] bpf: Define bpf_jit_alloc_exec_limit for riscv JIT Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 079/849] bpf: Define bpf_jit_alloc_exec_limit for arm64 JIT Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 080/849] bpf: Prevent increasing bpf_jit_limit above max Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 081/849] gpio: mlxbf2.c: Add check for bgpio_init failure Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 082/849] xen/netfront: stop tx queues during live migration Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 083/849] nvmet-tcp: fix a memory leak when releasing a queue Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 084/849] spi: spl022: fix Microwire full duplex mode Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 085/849] net: multicast: calculate csum of looped-back and forwarded packets Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 086/849] watchdog: Fix OMAP watchdog early handling Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 087/849] drm: panel-orientation-quirks: Add quirk for GPD Win3 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 088/849] block: schedule queue restart after BLK_STS_ZONE_RESOURCE Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 089/849] nvmet-tcp: fix header digest verification Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 090/849] net: hns3: change hclge/hclgevf workqueue to WQ_UNBOUND mode Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 091/849] net: hns3: ignore reset event before initialization process is done Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 092/849] r8169: Add device 10ec:8162 to driver r8169 Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 093/849] vmxnet3: do not stop tx queues after netif_device_detach() Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 094/849] nfp: bpf: relax prog rejection for mtu check through max_pkt_offset Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 095/849] net/smc: Fix smc_link->llc_testlink_time overflow Greg Kroah-Hartman
2021-11-15 16:52 ` [PATCH 5.14 096/849] net/smc: Correct spelling mistake to TCPF_SYN_RECV Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 097/849] tools/testing/selftests/vm/split_huge_page_test.c: fix application of sizeof to pointer Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 098/849] btrfs: clear MISSING device status bit in btrfs_close_one_device Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 099/849] btrfs: fix lost error handling when replaying directory deletes Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 100/849] btrfs: call btrfs_check_rw_degradable only if there is a missing device Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 101/849] KVM: VMX: Unregister posted interrupt wakeup handler on hardware unsetup Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 102/849] powerpc/kvm: Fix kvm_use_magic_page Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 103/849] KVM: PPC: Tick accounting should defer vtime accounting til after IRQ handling Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 104/849] ia64: kprobes: Fix to pass correct trampoline address to the handler Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 105/849] selinux: fix race condition when computing ocontext SIDs Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 106/849] ipmi:watchdog: Set panic count to proper value on a panic Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 107/849] md/raid1: only allocate write behind bio for WriteMostly device Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 108/849] hwmon: (pmbus/lm25066) Add offset coefficients Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 109/849] regulator: s5m8767: do not use reset value as DVS voltage if GPIO DVS is disabled Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 110/849] regulator: dt-bindings: samsung,s5m8767: correct s5m8767,pmic-buck-default-dvs-idx property Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 111/849] EDAC/sb_edac: Fix top-of-high-memory value for Broadwell/Haswell Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 112/849] mwifiex: fix division by zero in fw download path Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 113/849] ath6kl: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 114/849] ath6kl: fix control-message timeout Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 115/849] ath10k: " Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 116/849] ath10k: fix division by zero in send path Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 117/849] PCI: Mark Atheros QCA6174 to avoid bus reset Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 118/849] rtl8187: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 119/849] evm: mark evm_fixmode as __ro_after_init Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 120/849] ifb: Depend on netfilter alternatively to tc Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 121/849] platform/surface: aggregator_registry: Add support for Surface Laptop Studio Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 122/849] mt76: mt7615: fix skb use-after-free on mac reset Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 123/849] HID: surface-hid: Use correct event registry for managing HID events Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 124/849] HID: surface-hid: Allow driver matching for target ID 1 devices Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 125/849] wcn36xx: Fix HT40 capability for 2Ghz band Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 126/849] wcn36xx: Fix tx_status mechanism Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 127/849] wcn36xx: Fix (QoS) null data frame bitrate/modulation Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 128/849] PM: sleep: Do not let "syscore" devices runtime-suspend during system transitions Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 129/849] mwifiex: Read a PCI register after writing the TX ring write pointer Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 130/849] mwifiex: Try waking the firmware until we get an interrupt Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 131/849] libata: fix checking of DMA state Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 132/849] wcn36xx: handle connection loss indication Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 133/849] rsi: fix occasional initialisation failure with BT coex Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 134/849] rsi: fix key enabled check causing unwanted encryption for vap_id > 0 Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 135/849] rsi: fix rate mask set leading to P2P failure Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 136/849] rsi: Fix module dev_oper_mode parameter description Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 137/849] perf/x86/intel/uncore: Support extra IMC channel on Ice Lake server Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 138/849] perf/x86/intel/uncore: Fix invalid unit check Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 139/849] perf/x86/intel/uncore: Fix Intel ICX IIO event constraints Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 140/849] RDMA/qedr: Fix NULL deref for query_qp on the GSI QP Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 141/849] ASoC: tegra: Set default card name for Trimslice Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 142/849] ASoC: tegra: Restore AC97 support Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 143/849] signal: Remove the bogus sigkill_pending in ptrace_stop Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 144/849] memory: renesas-rpc-if: Correct QSPI data transfer in Manual mode Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 145/849] signal/mips: Update (_save|_restore)_fp_context to fail with -EFAULT Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 146/849] soc: samsung: exynos-pmu: Fix compilation when nothing selects CONFIG_MFD_CORE Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 147/849] soc: fsl: dpio: replace smp_processor_id with raw_smp_processor_id Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 148/849] soc: fsl: dpio: use the combined functions to protect critical zone Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 149/849] mtd: rawnand: socrates: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 150/849] power: supply: max17042_battery: Prevent int underflow in set_soc_threshold Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 151/849] power: supply: max17042_battery: use VFSOC for capacity when no rsns Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 152/849] iio: core: fix double free in iio_device_unregister_sysfs() Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 153/849] iio: core: check return value when calling dev_set_name() Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 154/849] KVM: arm64: Extract ESR_ELx.EC only Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 155/849] KVM: x86: Fix recording of guest steal time / preempted status Greg Kroah-Hartman
2021-11-15 16:53 ` [PATCH 5.14 156/849] KVM: x86: Add helper to consolidate core logic of SET_CPUID{2} flows Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 157/849] KVM: nVMX: Query current VMCS when determining if MSR bitmaps are in use Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 158/849] KVM: nVMX: Handle dynamic MSR intercept toggling Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 159/849] can: j1939: j1939_tp_cmd_recv(): ignore abort message in the BAM transport Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 160/849] can: j1939: j1939_can_recv(): ignore messages with invalid source address Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 161/849] iio: adc: tsc2046: fix scan interval warning Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 162/849] powerpc/85xx: Fix oops when mpc85xx_smp_guts_ids node cannot be found Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 163/849] ring-buffer: Protect ring_buffer_reset() from reentrancy Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 164/849] serial: core: Fix initializing and restoring termios speed Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 165/849] ifb: fix building without CONFIG_NET_CLS_ACT Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 166/849] xen/balloon: add late_initcall_sync() for initial ballooning done Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 167/849] ovl: fix use after free in struct ovl_aio_req Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 168/849] PCI: pci-bridge-emul: Fix emulation of W1C bits Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 169/849] PCI: cadence: Add cdns_plat_pcie_probe() missing return Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 170/849] cxl/pci: Fix NULL vs ERR_PTR confusion Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 171/849] PCI: aardvark: Do not clear status bits of masked interrupts Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 172/849] PCI: aardvark: Fix checking for link up via LTSSM state Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 173/849] PCI: aardvark: Do not unmask unused interrupts Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 174/849] PCI: aardvark: Fix reporting Data Link Layer Link Active Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 175/849] PCI: aardvark: Fix configuring Reference clock Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 176/849] PCI: aardvark: Fix return value of MSI domain .alloc() method Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 177/849] PCI: aardvark: Read all 16-bits from PCIE_MSI_PAYLOAD_REG Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 178/849] PCI: aardvark: Fix support for bus mastering and PCI_COMMAND on emulated bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 179/849] PCI: aardvark: Fix support for PCI_BRIDGE_CTL_BUS_RESET " Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 180/849] PCI: aardvark: Set PCI Bridge Class Code to PCI Bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 181/849] PCI: aardvark: Fix support for PCI_ROM_ADDRESS1 on emulated bridge Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 182/849] quota: check block number when reading the block in quota file Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 183/849] quota: correct error number in free_dqentry() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 184/849] cifs: To match file servers, make sure the server hostname matches Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 185/849] cifs: set a minimum of 120s for next dns resolution Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 186/849] pinctrl: core: fix possible memory leak in pinctrl_enable() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 187/849] coresight: cti: Correct the parameter for pm_runtime_put Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 188/849] coresight: trbe: Fix incorrect access of the sink specific data Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 189/849] coresight: trbe: Defer the probe on offline CPUs Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 190/849] iio: buffer: check return value of kstrdup_const() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 191/849] iio: buffer: Fix memory leak in iio_buffers_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 192/849] iio: buffer: Fix memory leak in __iio_buffer_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 193/849] iio: buffer: Fix memory leak in iio_buffer_register_legacy_sysfs_groups() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 194/849] drivers: iio: dac: ad5766: Fix dt property name Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 195/849] iio: dac: ad5446: Fix ad5622_write() return value Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 196/849] iio: ad5770r: make devicetree property reading consistent Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 197/849] Documentation:devicetree:bindings:iio:dac: Fix val Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 198/849] USB: serial: keyspan: fix memleak on probe errors Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 199/849] serial: 8250: fix racy uartclk update Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 200/849] most: fix control-message timeouts Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 201/849] USB: iowarrior: " Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 202/849] USB: chipidea: fix interrupt deadlock Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 203/849] power: supply: max17042_battery: Clear status bits in interrupt handler Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 204/849] component: do not leave master devres group open after bind Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 205/849] dma-buf: WARN on dmabuf release with pending attachments Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 206/849] drm: panel-orientation-quirks: Update the Lenovo Ideapad D330 quirk (v2) Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 207/849] drm: panel-orientation-quirks: Add quirk for KD Kurio Smart C15200 2-in-1 Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 208/849] drm: panel-orientation-quirks: Add quirk for the Samsung Galaxy Book 10.6 Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 209/849] Bluetooth: sco: Fix lock_sock() blockage by memcpy_from_msg() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 210/849] Bluetooth: fix use-after-free error in lock_sock_nested() Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 211/849] drm/panel-orientation-quirks: add Valve Steam Deck Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 212/849] rcutorture: Avoid problematic critical section nesting on PREEMPT_RT Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 213/849] platform/x86: wmi: do not fail if disabling fails Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 214/849] MIPS: lantiq: dma: add small delay after reset Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 215/849] MIPS: lantiq: dma: reset correct number of channel Greg Kroah-Hartman
2021-11-15 16:54 ` [PATCH 5.14 216/849] locking/lockdep: Avoid RCU-induced noinstr fail Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 217/849] net: sched: update default qdisc visibility after Tx queue cnt changes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 218/849] ACPI: resources: Add DMI-based legacy IRQ override quirk Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 219/849] rcu-tasks: Move RTGS_WAIT_CBS to beginning of rcu_tasks_kthread() loop Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 220/849] smackfs: Fix use-after-free in netlbl_catmap_walk() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 221/849] ath11k: Align bss_chan_info structure with firmware Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 222/849] crypto: aesni - check walk.nbytes instead of err Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 223/849] x86/mm/64: Improve stack overflow warnings Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 224/849] x86: Increase exception stack sizes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 225/849] mwifiex: Run SET_BSS_MODE when changing from P2P to STATION vif-type Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 226/849] mwifiex: Properly initialize private structure on interface type changes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 227/849] spi: Check we have a spi_device_id for each DT compatible Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 228/849] fscrypt: allow 256-bit master keys with AES-256-XTS Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 229/849] drm/amdgpu: Fix MMIO access page fault Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 230/849] drm/amd/display: Fix null pointer dereference for encoders Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 231/849] selftests: net: fib_nexthops: Wait before checking reported idle time Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 232/849] leds: trigger: use RCU to protect the led_cdevs list Greg Kroah-Hartman
2021-11-16 11:41   ` Pavel Machek
2021-11-16 14:04     ` Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 233/849] ath11k: Avoid reg rules update during firmware recovery Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 234/849] ath11k: add handler for scan event WMI_SCAN_EVENT_DEQUEUED Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 235/849] ath11k: Change DMA_FROM_DEVICE to DMA_TO_DEVICE when map reinjected packets Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 236/849] ath10k: high latency fixes for beacon buffer Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 237/849] octeontx2-pf: Enable promisc/allmulti match MCAM entries Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 238/849] media: mt9p031: Fix corrupted frame after restarting stream Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 239/849] media: netup_unidvb: handle interrupt properly according to the firmware Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 240/849] media: atomisp: Fix error handling in probe Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 241/849] media: stm32: Potential NULL pointer dereference in dcmi_irq_thread() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 242/849] media: uvcvideo: Set capability in s_param Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 243/849] media: uvcvideo: Return -EIO for control errors Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 244/849] media: uvcvideo: Set unique vdev name based in type Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 245/849] media: vidtv: Fix memory leak in remove Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 246/849] media: s5p-mfc: fix possible null-pointer dereference in s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 247/849] media: s5p-mfc: Add checking to s5p_mfc_probe() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 248/849] media: videobuf2: rework vb2_mem_ops API Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 249/849] media: imx: set a media_device bus_info string Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 250/849] media: rcar-vin: Use user provided buffers when starting Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 251/849] media: mceusb: return without resubmitting URB in case of -EPROTO error Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 252/849] ia64: dont do IA64_CMPXCHG_DEBUG without CONFIG_PRINTK Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 253/849] rtw88: fix RX clock gate setting while fifo dump Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 254/849] brcmfmac: Add DMI nvram filename quirk for Cyberbook T116 tablet Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 255/849] media: rcar-csi2: Add checking to rcsi2_start_receiver() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 256/849] ipmi: Disable some operations during a panic Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 257/849] fs/proc/uptime.c: Fix idle time reporting in /proc/uptime Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 258/849] kselftests/sched: cleanup the child processes Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 259/849] ACPICA: Avoid evaluating methods too early during system resume Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 260/849] cpufreq: Make policy min/max hard requirements Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 261/849] ice: Move devlink port to PF/VF struct Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 262/849] media: imx-jpeg: Fix possible null pointer dereference Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 263/849] media: ipu3-imgu: imgu_fmt: Handle properly try Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 264/849] media: ipu3-imgu: VIDIOC_QUERYCAP: Fix bus_info Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 265/849] media: usb: dvd-usb: fix uninit-value bug in dibusb_read_eeprom_byte() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 266/849] net-sysfs: try not to restart the syscall if it will fail eventually Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 267/849] drm/amdkfd: rm BO resv on validation to avoid deadlock Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 268/849] tracefs: Have tracefs directories not set OTH permission bits by default Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 269/849] tracing: Disable "other" permission bits in the tracefs files Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 270/849] ath: dfs_pattern_detector: Fix possible null-pointer dereference in channel_detector_create() Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 271/849] mmc: moxart: Fix reference count leaks in moxart_probe Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 272/849] iov_iter: Fix iov_iter_get_pages{,_alloc} page fault return value Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 273/849] ACPI: battery: Accept charges over the design capacity as full Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 274/849] ACPI: scan: Release PM resources blocked by unused objects Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 275/849] drm/amd/display: fix null pointer deref when plugging in display Greg Kroah-Hartman
2021-11-15 16:55 ` [PATCH 5.14 276/849] drm/amdkfd: fix resume error when iommu disabled in Picasso Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 277/849] net: phy: micrel: make *-skew-ps check more lenient Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 278/849] leaking_addresses: Always print a trailing newline Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 279/849] thermal/core: Fix null pointer dereference in thermal_release() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 280/849] drm/msm: prevent NULL dereference in msm_gpu_crashstate_capture() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 281/849] thermal/drivers/tsens: Add timeout to get_temp_tsens_valid Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 282/849] block: bump max plugged deferred size from 16 to 32 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 283/849] floppy: fix calling platform_device_unregister() on invalid drives Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 284/849] md: update superblock after changing rdev flags in state_store Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 285/849] memstick: r592: Fix a UAF bug when removing the driver Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 286/849] locking/rwsem: Disable preemption for spinning region Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 287/849] lib/xz: Avoid overlapping memcpy() with invalid input with in-place decompression Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 288/849] lib/xz: Validate the value before assigning it to an enum variable Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 289/849] workqueue: make sysfs of unbound kworker cpumask more clever Greg Kroah-Hartman
2021-11-15 16:56 ` Greg Kroah-Hartman [this message]
2021-11-15 16:56 ` [PATCH 5.14 291/849] mt76: mt7915: fix an off-by-one bound check Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 292/849] mwl8k: Fix use-after-free in mwl8k_fw_state_machine() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 293/849] iwlwifi: change all JnP to NO-160 configuration Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 294/849] block: remove inaccurate requeue check Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 295/849] media: allegro: ignore interrupt if mailbox is not initialized Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 296/849] drm/amdgpu/pm: properly handle sclk for profiling modes on vangogh Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 297/849] nvmet: fix use-after-free when a port is removed Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 298/849] nvmet-rdma: " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 299/849] nvmet-tcp: " Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 300/849] nvme: drop scan_lock and always kick requeue list when removing namespaces Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 301/849] arm64: vdso32: suppress error message for make mrproper Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 302/849] PM: hibernate: Get block device exclusively in swsusp_check() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 303/849] selftests: kvm: fix mismatched fclose() after popen() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 304/849] selftests/bpf: Fix perf_buffer test on system with offline cpus Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 305/849] iwlwifi: mvm: disable RX-diversity in powersave Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 306/849] smackfs: use __GFP_NOFAIL for smk_cipso_doi() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 307/849] ARM: clang: Do not rely on lr register for stacktrace Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 308/849] gre/sit: Dont generate link-local addr if addr_gen_mode is IN6_ADDR_GEN_MODE_NONE Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 309/849] net: dsa: lantiq_gswip: serialize access to the PCE table Greg Kroah-Hartman
2021-11-15 18:28   ` Hauke Mehrtens
2021-11-15 23:32     ` Vladimir Oltean
2021-11-15 16:56 ` [PATCH 5.14 310/849] can: bittiming: can_fixup_bittiming(): change type of tseg1 and alltseg to unsigned int Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 311/849] gfs2: Cancel remote delete work asynchronously Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 312/849] gfs2: Fix glock_hash_walk bugs Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 313/849] ARM: 9136/1: ARMv7-M uses BE-8, not BE-32 Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 314/849] tools/latency-collector: Use correct size when writing queue_full_warning Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 315/849] vrf: run conntrack only in context of lower/physdev for locally generated packets Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 316/849] net: annotate data-race in neigh_output() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 317/849] ACPI: AC: Quirk GK45 to skip reading _PSR Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 318/849] ACPI: resources: Add one more Medion model in IRQ override quirk Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 319/849] btrfs: reflink: initialize return value to 0 in btrfs_extent_same() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 320/849] btrfs: do not take the uuid_mutex in btrfs_rm_device Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 321/849] spi: bcm-qspi: Fix missing clk_disable_unprepare() on error in bcm_qspi_probe() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 322/849] wcn36xx: Correct band/freq reporting on RX Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 323/849] wcn36xx: Fix packet drop on resume Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 324/849] Revert "wcn36xx: Enable firmware link monitoring" Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 325/849] ftrace: do CPU checking after preemption disabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 326/849] x86/hyperv: Protect set_hv_tscchange_cb() against getting preempted Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 327/849] drm/amd/display: dcn20_resource_construct reduce scope of FPU enabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 328/849] selftests/core: fix conflicting types compile error for close_range() Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 329/849] perf/x86/intel: Fix ICL/SPR INST_RETIRED.PREC_DIST encodings Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 330/849] parisc: fix warning in flush_tlb_all Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 331/849] task_stack: Fix end_of_stack() for architectures with upwards-growing stack Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 332/849] erofs: dont trigger WARN() when decompression fails Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 333/849] parisc/unwind: fix unwinder when CONFIG_64BIT is enabled Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 334/849] parisc/kgdb: add kgdb_roundup() to make kgdb work with idle polling Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 335/849] netfilter: conntrack: set on IPS_ASSURED if flows enters internal stream state Greg Kroah-Hartman
2021-11-15 16:56 ` [PATCH 5.14 336/849] selftests/bpf: Fix strobemeta selftest regression Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 337/849] fbdev/efifb: Release PCI devices runtime PM ref during FB destroy Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 338/849] drm/bridge: anx7625: Propagate errors from sp_tx_rst_aux() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 339/849] drm/bridge: it66121: Initialize {device,vendor}_ids Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 340/849] drm/bridge: it66121: Wait for next bridge to be probed Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 341/849] Bluetooth: fix init and cleanup of sco_conn.timeout_work Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 342/849] libbpf: Dont crash on object files with no symbol tables Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 343/849] rcu: Fix existing exp request check in sync_sched_exp_online_cleanup() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 344/849] MIPS: lantiq: dma: fix burst length for DEU Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 345/849] x86/xen: Mark cpu_bringup_and_idle() as dead_end_function Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 346/849] objtool: Handle __sanitize_cov*() tail calls Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 347/849] drm/v3d: fix wait for TMU write combiner flush Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 348/849] virtio-gpu: fix possible memory allocation failure Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 349/849] lockdep: Let lock_is_held_type() detect recursive read as read Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 350/849] net: net_namespace: Fix undefined member in key_remove_domain() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 351/849] net: phylink: dont call netif_carrier_off() with NULL netdev Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 352/849] drm: bridge: it66121: Fix return value it66121_probe Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 353/849] spi: Fixed division by zero warning Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 354/849] cgroup: Make rebind_subsystems() disable v2 controllers all at once Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 355/849] wcn36xx: Fix Antenna Diversity Switching Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 356/849] wilc1000: fix possible memory leak in cfg_scan_result() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 357/849] Bluetooth: btmtkuart: fix a memleak in mtk_hci_wmt_sync Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 358/849] drm/amdgpu: move amdgpu_virt_release_full_gpu to fini_early stage Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 359/849] crypto: caam - disable pkc for non-E SoCs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 360/849] bnxt_en: Check devlink allocation and registration status Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 361/849] qed: Dont ignore devlink allocation failures Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 362/849] rxrpc: Fix _usecs_to_jiffies() by using usecs_to_jiffies() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 363/849] fortify: Fix dropped strcpy() compile-time write overflow check Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 364/849] cfg80211: always free wiphy specific regdomain Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 365/849] net: dsa: rtl8366rb: Fix off-by-one bug Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 366/849] net: dsa: rtl8366: Fix a bug in deleting VLANs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 367/849] ath11k: fix some sleeping in atomic bugs Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 368/849] ath11k: Avoid race during regd updates Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 369/849] ath11k: fix packet drops due to incorrect 6 GHz freq value in rx status Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 370/849] ath11k: Fix memory leak in ath11k_qmi_driver_event_work Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 371/849] gve: DQO: avoid unused variable warnings Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 372/849] ath10k: Fix missing frame timestamp for beacon/probe-resp Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 373/849] ath10k: sdio: Add missing BH locking around napi_schdule() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 374/849] drm/ttm: stop calling tt_swapin in vm_access Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 375/849] arm64: mm: update max_pfn after memory hotplug Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 376/849] drm/amdgpu: fix warning for overflow check Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 377/849] libbpf: Fix skel_internal.h to set errno on loader retval < 0 Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 378/849] media: em28xx: add missing em28xx_close_extension Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 379/849] media: meson-ge2d: Fix rotation parameter changes detection in ge2d_s_ctrl() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 380/849] media: cxd2880-spi: Fix a null pointer dereference on error handling path Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 381/849] media: ttusb-dec: avoid release of non-acquired mutex Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 382/849] media: dvb-usb: fix ununit-value in az6027_rc_query Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 383/849] media: imx258: Fix getting clock frequency Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 384/849] media: v4l2-ioctl: S_CTRL output the right value Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 385/849] media: mtk-vcodec: venc: fix return value when start_streaming fails Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 386/849] media: TDA1997x: handle short reads of hdmi info frame Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 387/849] media: mtk-vpu: Fix a resource leak in the error handling path of mtk_vpu_probe() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 388/849] media: imx-jpeg: Fix the error handling path of mxc_jpeg_probe() Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 389/849] media: i2c: ths8200 needs V4L2_ASYNC Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 390/849] media: sun6i-csi: Allow the video device to be open multiple times Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 391/849] media: radio-wl1273: Avoid card name truncation Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 392/849] media: si470x: " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 393/849] media: tm6000: " Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 394/849] media: cx23885: Fix snd_card_free call on null card pointer Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 395/849] media: atmel: fix the ispck initialization Greg Kroah-Hartman
2021-11-15 16:57 ` [PATCH 5.14 396/849] scs: Release kasan vmalloc poison in scs_free process Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 397/849] kprobes: Do not use local variable when creating debugfs file Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 398/849] crypto: ecc - fix CRYPTO_DEFAULT_RNG dependency Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 399/849] drm: fb_helper: fix CONFIG_FB dependency Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 400/849] cpuidle: Fix kobject memory leaks in error paths Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 401/849] media: em28xx: Dont use ops->suspend if it is NULL Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 402/849] ath10k: Dont always treat modem stop events as crashes Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 403/849] ath9k: Fix potential interrupt storm on queue reset Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 404/849] PM: EM: Fix inefficient states detection Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 405/849] x86/insn: Use get_unaligned() instead of memcpy() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 406/849] EDAC/amd64: Handle three rank interleaving mode Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 407/849] rcu: Always inline rcu_dynticks_task*_{enter,exit}() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 408/849] netfilter: nft_dynset: relax superfluous check on set updates Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 409/849] media: venus: fix vpp frequency calculation for decoder Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 410/849] media: dvb-frontends: mn88443x: Handle errors of clk_prepare_enable() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 411/849] crypto: ccree - avoid out-of-range warnings from clang Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 412/849] crypto: qat - detect PFVF collision after ACK Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 413/849] crypto: qat - disregard spurious PFVF interrupts Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 414/849] hwrng: mtk - Force runtime pm ops for sleep ops Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 415/849] IMA: block writes of the security.ima xattr with unsupported algorithms Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 416/849] b43legacy: fix a lower bounds test Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 417/849] b43: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 418/849] gve: Recover from queue stall due to missed IRQ Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 419/849] gve: Track RX buffer allocation failures Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 420/849] mmc: sdhci-omap: Fix NULL pointer exception if regulator is not configured Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 421/849] mmc: sdhci-omap: Fix context restore Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 422/849] memstick: avoid out-of-range warning Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 423/849] memstick: jmb38x_ms: use appropriate free function in jmb38x_ms_alloc_host() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 424/849] net, neigh: Fix NTF_EXT_LEARNED in combination with NTF_USE Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 425/849] hwmon: Fix possible memleak in __hwmon_device_register() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 426/849] hwmon: (pmbus/lm25066) Let compiler determine outer dimension of lm25066_coeff Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 427/849] ath10k: fix max antenna gain unit Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 428/849] kernel/sched: Fix sched_fork() access an invalid sched_task_group Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 429/849] net: fealnx: fix build for UML Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 430/849] net: tulip: winbond-840: " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 431/849] x86: Fix get_wchan() to support the ORC unwinder Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 432/849] tcp: switch orphan_count to bare per-cpu counters Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 433/849] crypto: octeontx2 - set assoclen in aead_do_fallback() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 434/849] thermal/core: fix a UAF bug in __thermal_cooling_device_register() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 435/849] drm/msm: Fix potential Oops in a6xx_gmu_rpmh_init() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 436/849] drm/msm: potential error pointer dereference in init() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 437/849] drm/msm: fix potential NULL dereference in cleanup Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 438/849] drm/msm: uninitialized variable in msm_gem_import() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 439/849] net: stream: dont purge sk_error_queue in sk_stream_kill_queues() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 440/849] mailbox: Remove WARN_ON for async_cb.cb in cmdq_exec_done Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 441/849] media: ivtv: fix build for UML Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 442/849] media: ir_toy: assignment to be16 should be of correct type Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 443/849] mmc: mxs-mmc: disable regulator on error and in the remove function Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 444/849] block: ataflop: fix breakage introduced at blk-mq refactoring Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 445/849] platform/x86: thinkpad_acpi: Fix bitwise vs. logical warning Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 446/849] ACPI: PM: Turn off unused wakeup power resources Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 447/849] ACPI: PM: Fix sharing of " Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 448/849] drm/amdkfd: Fix an inappropriate error handling in allloc memory of gpu Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 449/849] mt76: mt7921: fix endianness in mt7921_mcu_tx_done_event Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 450/849] mt76: mt7915: fix endianness warning in mt7915_mac_add_txs_skb Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 451/849] mt76: mt7921: fix endianness warning in mt7921_update_txs Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 452/849] mt76: mt7615: fix endianness warning in mt7615_mac_write_txwi Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 453/849] mt76: mt7915: fix info leak in mt7915_mcu_set_pre_cal() Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 454/849] mt76: connac: fix mt76_connac_gtk_rekey_tlv usage Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 455/849] mt76: fix build error implicit enumeration conversion Greg Kroah-Hartman
2021-11-15 16:58 ` [PATCH 5.14 456/849] mt76: mt7921: fix survey-dump reporting Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 457/849] mt76: mt76x02: fix endianness warnings in mt76x02_mac.c Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 458/849] mt76: mt7921: Fix out of order process by invalid event pkt Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 459/849] mt76: mt7915: fix potential overflow of eeprom page index Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 460/849] mt76: mt7915: fix bit fields for HT rate idx Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 461/849] mt76: mt7921: fix dma hang in rmmod Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 462/849] mt76: connac: fix GTK rekey offload failure on WPA mixed mode Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 463/849] mt76: overwrite default reg_ops if necessary Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 464/849] mt76: mt7921: report HE MU radiotap Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 465/849] mt76: mt7921: fix firmware usage of RA info using legacy rates Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 466/849] mt76: mt7921: fix kernel warning from cfg80211_calculate_bitrate Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 467/849] mt76: mt7921: always wake device if necessary in debugfs Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 468/849] mt76: mt7915: fix hwmon temp sensor mem use-after-free Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 469/849] mt76: mt7615: " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 470/849] mt76: mt7915: fix possible infinite loop release semaphore Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 471/849] mt76: mt7921: fix retrying release semaphore without end Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 472/849] mt76: mt7615: fix monitor mode tear down crash Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 473/849] mt76: connac: fix possible NULL pointer dereference in mt76_connac_get_phy_mode_v2 Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 474/849] mt76: mt7915: fix sta_rec_wtbl tag len Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 475/849] mt76: mt7915: fix muar_idx in mt7915_mcu_alloc_sta_req() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 476/849] rsi: stop thread firstly in rsi_91x_init() error handling Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 477/849] mwifiex: Send DELBA requests according to spec Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 478/849] iwlwifi: mvm: reset PM state on unsuccessful resume Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 479/849] iwlwifi: pnvm: dont kmemdup() more than we have Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 480/849] iwlwifi: pnvm: read EFI data only if long enough Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 481/849] net: enetc: unmap DMA in enetc_send_cmd() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 482/849] phy: micrel: ksz8041nl: do not use power down mode Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 483/849] nbd: Fix use-after-free in pid_show Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 484/849] nvme-rdma: fix error code in nvme_rdma_setup_ctrl Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 485/849] PM: hibernate: fix sparse warnings Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 486/849] clocksource/drivers/timer-ti-dm: Select TIMER_OF Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 487/849] x86/sev: Fix stack type check in vc_switch_off_ist() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 488/849] drm/msm: Fix potential NULL dereference in DPU SSPP Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 489/849] crypto: tcrypt - fix skcipher multi-buffer tests for 1420B blocks Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 490/849] smackfs: use netlbl_cfg_cipsov4_del() for deleting cipso_v4_doi Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 491/849] KVM: selftests: Fix nested SVM tests when built with clang Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 492/849] libbpf: Fix memory leak in btf__dedup() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 493/849] bpftool: Avoid leaking the JSON writer prepared for program metadata Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 494/849] libbpf: Fix overflow in BTF sanity checks Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 495/849] libbpf: Fix BTF header parsing checks Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 496/849] mt76: mt7615: mt7622: fix ibss and meshpoint Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 497/849] s390/gmap: validate VMA in __gmap_zap() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 498/849] s390/gmap: dont unconditionally call pte_unmap_unlock() " Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 499/849] s390/mm: validate VMA in PGSTE manipulation functions Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 500/849] s390/mm: fix VMA and page table handling code in storage key handling functions Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 501/849] s390/uv: fully validate the VMA before calling follow_page() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 502/849] KVM: s390: pv: avoid double free of sida page Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 503/849] KVM: s390: pv: avoid stalls for kvm_s390_pv_init_vm Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 504/849] irq: mips: avoid nested irq_enter() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 505/849] net: dsa: avoid refcount warnings when ->port_{fdb,mdb}_del returns error Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 506/849] ARM: 9142/1: kasan: work around LPAE build warning Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 507/849] ath10k: fix module load regression with iram-recovery feature Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 508/849] block: ataflop: more blk-mq refactoring fixes Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 509/849] blk-cgroup: synchronize blkg creation against policy deactivation Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 510/849] tpm: fix Atmel TPM crash caused by too frequent queries Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 511/849] tpm_tis_spi: Add missing SPI ID Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 512/849] libbpf: Fix endianness detection in BPF_CORE_READ_BITFIELD_PROBED() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 513/849] tcp: dont free a FIN sk_buff in tcp_remove_empty_skb() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 514/849] cpufreq: intel_pstate: Fix cpu->pstate.turbo_freq initialization Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 515/849] spi: spi-rpc-if: Check return value of rpcif_sw_init() Greg Kroah-Hartman
2021-11-15 16:59 ` [PATCH 5.14 516/849] sched: Add wrapper for get_wchan() to keep task blocked Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 517/849] x86: Fix __get_wchan() for !STACKTRACE Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 518/849] samples/kretprobes: Fix return value if register_kretprobe() failed Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 519/849] KVM: s390: Fix handle_sske page fault handling Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 520/849] libertas_tf: Fix possible memory leak in probe and disconnect Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 521/849] libertas: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 522/849] wcn36xx: add proper DMA memory barriers in rx path Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 523/849] wcn36xx: Fix discarded frames due to wrong sequence number Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 524/849] bpf: Fixes possible race in update_prog_stats() for 32bit arches Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 525/849] wcn36xx: Channel list update before hardware scan Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 526/849] drm/amdgpu: fix a potential memory leak in amdgpu_device_fini_sw() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 527/849] drm/amdgpu/gmc6: fix DMA mask from 44 to 40 bits Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 528/849] selftests/bpf: Fix fd cleanup in sk_lookup test Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 529/849] selftests/bpf: Fix memory leak in test_ima Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 530/849] sctp: allow IP fragmentation when PLPMTUD enters Error state Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 531/849] sctp: reset probe_timer in sctp_transport_pl_update Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 532/849] sctp: subtract sctphdr len in sctp_transport_pl_hlen Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 533/849] sctp: return true only for pathmtu update in sctp_transport_pl_toobig Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 534/849] net: amd-xgbe: Toggle PLL settings during rate change Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 535/849] ipmi: kcs_bmc: Fix a memory leak in the error handling path of kcs_bmc_serio_add_device() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 536/849] net: phylink: avoid mvneta warning when setting pause parameters Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 537/849] net: bridge: fix uninitialized variables when BRIDGE_CFM is disabled Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 538/849] selftests: net: bridge: update IGMP/MLD membership interval value Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 539/849] crypto: pcrypt - Delay write to padata->info Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 540/849] selftests/bpf: Fix fclose/pclose mismatch in test_progs Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 541/849] udp6: allow SO_MARK ctrl msg to affect routing Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 542/849] ibmvnic: dont stop queue in xmit Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 543/849] ibmvnic: Process crqs after enabling interrupts Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 544/849] ibmvnic: delay complete() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 545/849] skmsg: Lose offset info in sk_psock_skb_ingress Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 546/849] cgroup: Fix rootcg cpu.stat guest double counting Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 547/849] bpf: Fix propagation of bounds from 64-bit min/max into 32-bit and var_off Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 548/849] bpf: Fix propagation of signed bounds from 64-bit min/max into 32-bit Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 549/849] of: unittest: fix EXPECT text for gpio hog errors Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 550/849] arm64: dts: meson: sm1: add Ethernet PHY reset line for ODROID-C4/HC4 Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 551/849] iio: st_sensors: disable regulators after device unregistration Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 552/849] RDMA/rxe: Fix wrong port_cap_flags Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 553/849] ARM: dts: BCM5301X: Fix memory nodes names Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 554/849] arm64: dts: broadcom: bcm4908: Fix UART clock name Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 555/849] clk: mvebu: ap-cpu-clk: Fix a memory leak in error handling paths Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 556/849] scsi: pm80xx: Fix lockup in outbound queue management Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 557/849] ARM: s3c: irq-s3c24xx: Fix return value check for s3c24xx_init_intc() Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 558/849] arm64: dts: rockchip: fix rk3568 mbi-alias Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 559/849] arm64: dts: rockchip: Fix GPU register width for RK3328 Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 560/849] ARM: dts: qcom: msm8974: Add xo_board reference clock to DSI0 PHY Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 561/849] RDMA/bnxt_re: Fix query SRQ failure Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 562/849] arm64: dts: ti: k3-j721e-main: Fix "max-virtual-functions" in PCIe EP nodes Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 563/849] arm64: dts: ti: k3-j721e-main: Fix "bus-range" upto 256 bus number for PCIe Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 564/849] arm64: dts: ti: j7200-main: Fix "vendor-id"/"device-id" properties of pcie node Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 565/849] arm64: dts: ti: j7200-main: Fix "bus-range" upto 256 bus number for PCIe Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 566/849] arm64: dts: meson-g12a: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 567/849] arm64: dts: meson-g12b: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 568/849] arm64: dts: meson-sm1: " Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 569/849] bus: ti-sysc: Fix timekeeping_suspended warning on resume Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 570/849] ARM: dts: at91: tse850: the emac<->phy interface is rmii Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 571/849] arm64: dts: qcom: sc7180: Base dynamic CPU power coefficients in reality Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 572/849] soc: qcom: llcc: Disable MMUHWT retention Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 573/849] scsi: dc395: Fix error case unwinding Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 574/849] MIPS: loongson64: make CPU_LOONGSON64 depends on MIPS_FP_SUPPORT Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 575/849] JFS: fix memleak in jfs_mount Greg Kroah-Hartman
2021-11-15 17:00 ` [PATCH 5.14 576/849] ASoC: wcd9335: Use correct version to initialize Class H Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 577/849] arm64: dts: qcom: msm8916: Fix Secondary MI2S bit clock Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 578/849] arm64: dts: renesas: beacon: Fix Ethernet PHY mode Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 579/849] iommu/mediatek: Fix out-of-range warning with clang Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 580/849] arm64: dts: qcom: pm8916: Remove wrong reg-names for rtc@6000 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 581/849] iommu/dma: Fix arch_sync_dma for map Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 582/849] ALSA: hda: Reduce udelay() at SKL+ position reporting Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 583/849] ALSA: hda: Use position buffer for SKL+ again Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 584/849] soundwire: debugfs: use controller id and link_id for debugfs Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 585/849] power: reset: at91-reset: check properly the return value of devm_of_iomap Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 586/849] scsi: megaraid_sas: Fix concurrent access to ISR between IRQ polling and real interrupt Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 587/849] scsi: pm80xx: Fix misleading log statement in pm8001_mpi_get_nvmd_resp() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 588/849] driver core: Fix possible memory leak in device_link_add() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 589/849] arm: dts: omap3-gta04a4: accelerometer irq fix Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 590/849] ASoC: SOF: topology: do not power down primary core during topology removal Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 591/849] iio: st_pressure_spi: Add missing entries SPI to device ID table Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 592/849] soc/tegra: Fix an error handling path in tegra_powergate_power_up() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 593/849] memory: fsl_ifc: fix leak of irq and nand_irq in fsl_ifc_ctrl_probe Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 594/849] clk: at91: check pmc node status before registering syscore ops Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 595/849] powerpc/mem: Fix arch/powerpc/mm/mem.c:53:12: error: no previous prototype for create_section_mapping Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 596/849] video: fbdev: chipsfb: use memset_io() instead of memset() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 597/849] powerpc: fix unbalanced node refcount in check_kvm_guest() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 598/849] powerpc/paravirt: correct preempt debug splat in vcpu_is_preempted() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 599/849] serial: 8250_dw: Drop wrong use of ACPI_PTR() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 600/849] usb: gadget: hid: fix error code in do_config() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 601/849] =?UTF-8?q?power:=20supply:=20rt5033=5Fbattery:=20Change=20voltage?= =?UTF-8?q?=20values=20to=20=C2=B5V?= Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 602/849] power: supply: max17040: fix null-ptr-deref in max17040_probe() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 603/849] scsi: csiostor: Uninitialized data in csio_ln_vnp_read_cbfn() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 604/849] RDMA/mlx4: Return missed an error if device doesnt support steering Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 605/849] usb: musb: select GENERIC_PHY instead of depending on it Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 606/849] staging: most: dim2: do not double-register the same device Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 607/849] staging: ks7010: select CRYPTO_HASH/CRYPTO_MICHAEL_MIC Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 608/849] dyndbg: make dyndbg a known cli param Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 609/849] powerpc/perf: Fix cycles/instructions as PM_CYC/PM_INST_CMPL in power10 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 610/849] pinctrl: renesas: checker: Fix off-by-one bug in drive register check Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 611/849] ARM: dts: stm32: Reduce DHCOR SPI NOR frequency to 50 MHz Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 612/849] ARM: dts: stm32: fix STUSB1600 Type-C irq level on stm32mp15xx-dkx Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 613/849] ARM: dts: stm32: fix SAI sub nodes register range Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 614/849] ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 615/849] ASoC: cs42l42: Always configure both ASP TX channels Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 616/849] ASoC: cs42l42: Correct some register default values Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 617/849] ASoC: cs42l42: Defer probe if request_threaded_irq() returns EPROBE_DEFER Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 618/849] soc: qcom: rpmhpd: Make power_on actually enable the domain Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 619/849] soc: qcom: socinfo: add two missing PMIC IDs Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 620/849] iio: buffer: Fix double-free in iio_buffers_alloc_sysfs_and_mask() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 621/849] usb: typec: STUSB160X should select REGMAP_I2C Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 622/849] iio: adis: do not disabe IRQs in adis_init() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 623/849] soundwire: bus: stop dereferencing invalid slave pointer Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 624/849] scsi: ufs: ufshcd-pltfrm: Fix memory leak due to probe defer Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 625/849] scsi: lpfc: Wait for successful restart of SLI3 adapter during host sg_reset Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 626/849] serial: imx: fix detach/attach of serial console Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 627/849] usb: dwc2: drd: fix dwc2_force_mode call in dwc2_ovr_init Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 628/849] usb: dwc2: drd: fix dwc2_drd_role_sw_set when clock could be disabled Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 629/849] usb: dwc2: drd: reset current session before setting the new one Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 630/849] powerpc/booke: Disable STRICT_KERNEL_RWX, DEBUG_PAGEALLOC and KFENCE Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 631/849] firmware: qcom_scm: Fix error retval in __qcom_scm_is_call_available() Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 632/849] soc: qcom: rpmhpd: fix sm8350_mxcs peer domain Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 633/849] soc: qcom: apr: Add of_node_put() before return Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 634/849] arm64: dts: qcom: pmi8994: Fix "eternal"->"external" typo in WLED node Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 635/849] arm64: dts: qcom: sdm845: Use RPMH_CE_CLK macro directly Greg Kroah-Hartman
2021-11-15 17:01 ` [PATCH 5.14 636/849] arm64: dts: qcom: sdm845: Fix Qualcomm crypto engine bus clock Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 637/849] pinctrl: equilibrium: Fix function addition in multiple groups Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 638/849] ASoC: topology: Fix stub for snd_soc_tplg_component_remove() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 639/849] phy: qcom-qusb2: Fix a memory leak on probe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 640/849] phy: ti: gmii-sel: check of_get_address() for failure Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 641/849] phy: qcom-snps: Correct the FSEL_MASK Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 642/849] phy: Sparx5 Eth SerDes: Fix return value check in sparx5_serdes_probe() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 643/849] serial: xilinx_uartps: Fix race condition causing stuck TX Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 644/849] clk: at91: sam9x60-pll: use DIV_ROUND_CLOSEST_ULL Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 645/849] clk: at91: clk-master: check if div or pres is zero Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 646/849] clk: at91: clk-master: fix prescaler logic Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 647/849] HID: u2fzero: clarify error check and length calculations Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 648/849] HID: u2fzero: properly handle timeouts in usb_submit_urb Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 649/849] powerpc/nohash: Fix __ptep_set_access_flags() and ptep_set_wrprotect() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 650/849] powerpc/book3e: Fix set_memory_x() and set_memory_nx() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 651/849] powerpc/44x/fsp2: add missing of_node_put Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 652/849] powerpc/xmon: fix task state output Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 653/849] ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or later Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 654/849] powerpc: Dont provide __kernel_map_pages() without ARCH_SUPPORTS_DEBUG_PAGEALLOC Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 655/849] ASoC: cs42l42: Correct configuring of switch inversion from ts-inv Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 656/849] RDMA/hns: Fix initial arm_st of CQ Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 657/849] RDMA/hns: Modify the value of MAX_LP_MSG_LEN to meet hardware compatibility Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 658/849] ASoC: rsnd: Fix an error handling path in rsnd_node_count() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 659/849] serial: cpm_uart: Protect udbg definitions by CONFIG_SERIAL_CPM_CONSOLE Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 660/849] virtio_ring: check desc == NULL when using indirect with packed Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 661/849] mips: cm: Convert to bitfield API to fix out-of-bounds access Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 662/849] power: supply: bq27xxx: Fix kernel crash on IRQ handler register error Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 663/849] RDMA/core: Require the driver to set the IOVA correctly during rereg_mr Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 664/849] apparmor: fix error check Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 665/849] rpmsg: Fix rpmsg_create_ept return when RPMSG config is not defined Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 666/849] mtd: rawnand: intel: Fix potential buffer overflow in probe Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 667/849] nfsd: dont alloc under spinlock in rpc_parse_scope_id Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 668/849] rtc: ds1302: Add SPI ID table Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 669/849] rtc: ds1390: " Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 670/849] rtc: pcf2123: " Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 671/849] remoteproc: imx_rproc: Fix TCM io memory type Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 672/849] rtc: mcp795: Add SPI ID table Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 673/849] Input: ariel-pwrbutton - add SPI device " Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 674/849] i2c: mediatek: fixing the incorrect register offset Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 675/849] NFS: Default change_attr_type to NFS4_CHANGE_TYPE_IS_UNDEFINED Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 676/849] NFS: Dont set NFS_INO_DATA_INVAL_DEFER and NFS_INO_INVALID_DATA Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 677/849] NFS: Ignore the directory size when marking for revalidation Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 678/849] NFS: Fix dentry verifier races Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 679/849] pnfs/flexfiles: Fix misplaced barrier in nfs4_ff_layout_prepare_ds Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 680/849] drm/bridge/lontium-lt9611uxc: fix provided connector suport Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 681/849] drm/plane-helper: fix uninitialized variable reference Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 682/849] PCI: aardvark: Dont spam about PIO Response Status Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 683/849] PCI: aardvark: Fix preserving PCI_EXP_RTCTL_CRSSVE flag on emulated bridge Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 684/849] opp: Fix return in _opp_add_static_v2() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 685/849] NFS: Fix deadlocks in nfs_scan_commit_list() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 686/849] fs: orangefs: fix error return code of orangefs_revalidate_lookup() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 687/849] Input: st1232 - increase "wait ready" timeout Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 688/849] mtd: spi-nor: hisi-sfc: Remove excessive clk_disable_unprepare() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 689/849] PCI: uniphier: Serialize INTx masking/unmasking and fix the bit operation Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 690/849] mtd: rawnand: arasan: Prevent an unsupported configuration Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 691/849] mtd: core: dont remove debugfs directory if device is in use Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 692/849] remoteproc: Fix a memory leak in an error handling path in rproc_handle_vdev() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 693/849] rtc: rv3032: fix error handling in rv3032_clkout_set_rate() Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 694/849] dmaengine: at_xdmac: call at_xdmac_axi_config() on resume path Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 695/849] dmaengine: at_xdmac: fix AT_XDMAC_CC_PERID() macro Greg Kroah-Hartman
2021-11-15 17:02 ` [PATCH 5.14 696/849] dmaengine: stm32-dma: fix stm32_dma_get_max_width Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 697/849] NFS: Fix up commit deadlocks Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 698/849] NFS: Fix an Oops in pnfs_mark_request_commit() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 699/849] Fix user namespace leak Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 700/849] auxdisplay: img-ascii-lcd: Fix lock-up when displaying empty string Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 701/849] auxdisplay: ht16k33: Connect backlight to fbdev Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 702/849] auxdisplay: ht16k33: Fix frame buffer device blanking Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 703/849] soc: fsl: dpaa2-console: free buffer before returning from dpaa2_console_read Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 704/849] netfilter: nfnetlink_queue: fix OOB when mac header was cleared Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 705/849] dmaengine: dmaengine_desc_callback_valid(): Check for `callback_result` Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 706/849] signal/sh: Use force_sig(SIGKILL) instead of do_group_exit(SIGKILL) Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 707/849] m68k: set a default value for MEMORY_RESERVE Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 708/849] watchdog: f71808e_wdt: fix inaccurate report in WDIOC_GETTIMEOUT Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 709/849] ar7: fix kernel builds for compiler test Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 710/849] scsi: target: core: Remove from tmr_list during LUN unlink Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 711/849] scsi: qla2xxx: Fix gnl list corruption Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 712/849] scsi: qla2xxx: Turn off target reset during issue_lip Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 713/849] NFSv4: Fix a regression in nfs_set_open_stateid_locked() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 714/849] i2c: xlr: Fix a resource leak in the error handling path of xlr_i2c_probe() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 715/849] gpio: realtek-otto: fix GPIO line IRQ offset Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 716/849] xen-pciback: Fix return in pm_ctrl_init() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 717/849] nbd: fix max value for first_minor Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 718/849] nbd: fix possible overflow for first_minor in nbd_dev_add() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 719/849] net: davinci_emac: Fix interrupt pacing disable Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 720/849] kselftests/net: add missed icmp.sh test to Makefile Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 721/849] ethtool: fix ethtool msg len calculation for pause stats Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 722/849] openrisc: fix SMP tlb flush NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 723/849] net: vlan: fix a UAF in vlan_dev_real_dev() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 724/849] net: dsa: tag_ocelot: break circular dependency with ocelot switch lib driver Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 725/849] net: dsa: felix: fix broken VLAN-tagged PTP under VLAN-aware bridge Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 726/849] ice: Fix replacing VF hardware MAC to existing MAC filter Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 727/849] ice: Fix not stopping Tx queues for VFs Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 728/849] ACPI: PMIC: Fix intel_pmic_regs_handler() read accesses Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 729/849] PCI: j721e: Fix j721e_pcie_probe() error path Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 730/849] nvdimm/btt: do not call del_gendisk() if not needed Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 731/849] drm/nouveau/svm: Fix refcount leak bug and missing check against null bug Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 732/849] block/ataflop: use the blk_cleanup_disk() helper Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 733/849] block/ataflop: add registration bool before calling del_gendisk() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 734/849] block/ataflop: provide a helper for cleanup up an atari disk Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 735/849] ataflop: remove ataflop_probe_lock mutex Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 736/849] PCI: Do not enable AtomicOps on VFs Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 737/849] cpufreq: intel_pstate: Clear HWP desired on suspend/shutdown and offline Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 738/849] net: phy: fix duplex out of sync problem while changing settings Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 739/849] drm/ttm: remove ttm_bo_vm_insert_huge() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 740/849] bonding: Fix a use-after-free problem when bond_sysfs_slave_add() failed Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 741/849] ALSA: memalloc: Catch call with NULL snd_dma_buffer pointer Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 742/849] mfd: core: Add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 743/849] mfd: cpcap: Add SPI device ID table Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 744/849] mfd: sprd: " Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 745/849] mfd: altera-sysmgr: Fix a mistake caused by resource_size conversion Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 746/849] ACPI: PM: Fix device wakeup power reference counting error Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 747/849] libbpf: Fix lookup_and_delete_elem_flags error reporting Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 748/849] selftests/bpf/xdp_redirect_multi: Put the logs to tmp folder Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 749/849] selftests/bpf/xdp_redirect_multi: Use arping to accurate the arp number Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 750/849] selftests/bpf/xdp_redirect_multi: Give tcpdump a chance to terminate cleanly Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 751/849] selftests/bpf/xdp_redirect_multi: Limit the tests in netns Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 752/849] drm: fb_helper: improve CONFIG_FB dependency Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 753/849] Revert "drm/imx: Annotate dma-fence critical section in commit path" Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 754/849] can: etas_es58x: es58x_rx_err_msg(): fix memory leak in error path Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 755/849] can: mcp251xfd: mcp251xfd_chip_start(): fix error handling for mcp251xfd_chip_rx_int_enable() Greg Kroah-Hartman
2021-11-15 17:03 ` [PATCH 5.14 756/849] mm/zsmalloc.c: close race window between zs_pool_dec_isolated() and zs_unregister_migration() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 757/849] zram: off by one in read_block_state() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 758/849] perf bpf: Add missing free to bpf_event__print_bpf_prog_info() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 759/849] llc: fix out-of-bound array index in llc_sk_dev_hash() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 760/849] nfc: pn533: Fix double free when pn533_fill_fragment_skbs() fails Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 761/849] arm64: arm64_ftr_reg->name may not be a human-readable string Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 762/849] arm64: pgtable: make __pte_to_phys/__phys_to_pte_val inline functions Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 763/849] bpf, sockmap: Remove unhash handler for BPF sockmap usage Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 764/849] bpf, sockmap: Fix race in ingress receive verdict with redirect to self Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 765/849] bpf: sockmap, strparser, and tls are reusing qdisc_skb_cb and colliding Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 766/849] bpf, sockmap: sk_skb data_end access incorrect when src_reg = dst_reg Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 767/849] dmaengine: stm32-dma: fix burst in case of unaligned memory address Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 768/849] dmaengine: stm32-dma: avoid 64-bit division in stm32_dma_get_max_width Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 769/849] gve: Fix off by one in gve_tx_timeout() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 770/849] drm/i915/fb: Fix rounding error in subsampled plane size calculation Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 771/849] seq_file: fix passing wrong private data Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 772/849] net: dsa: mv88e6xxx: Dont support >1G speeds on 6191X on ports other than 10 Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 773/849] net/sched: sch_taprio: fix undefined behavior in ktime_mono_to_any Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 774/849] net: hns3: fix ROCE base interrupt vector initialization bug Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 775/849] net: hns3: fix pfc packet number incorrect after querying pfc parameters Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 776/849] net: hns3: fix kernel crash when unload VF while it is being reset Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 777/849] net: hns3: allow configure ETS bandwidth of all TCs Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 778/849] net: stmmac: allow a tc-taprio base-time of zero Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 779/849] net: ethernet: ti: cpsw_ale: Fix access to un-initialized memory Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 780/849] net: marvell: mvpp2: Fix wrong SerDes reconfiguration order Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 781/849] vsock: prevent unnecessary refcnt inc for nonblocking connect Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 782/849] net/smc: fix sk_refcnt underflow on linkdown and fallback Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 783/849] cxgb4: fix eeprom len when diagnostics not implemented Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 784/849] selftests/net: udpgso_bench_rx: fix port argument Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 785/849] smb3: do not error on fsync when readonly Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 786/849] ARM: 9155/1: fix early early_iounmap() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 787/849] ARM: 9156/1: drop cc-option fallbacks for architecture selection Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 788/849] parisc: Fix backtrace to always include init funtion names Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 789/849] parisc: Flush kernel data mapping in set_pte_at() when installing pte for user page Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 790/849] MIPS: fix duplicated slashes for Platform file path Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 791/849] MIPS: Fix assembly error from MIPSr2 code used within MIPS_ISA_ARCH_LEVEL Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 792/849] x86/mce: Add errata workaround for Skylake SKX37 Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 793/849] KVM: x86: move guest_pv_has out of user_access section Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 794/849] posix-cpu-timers: Clear task::posix_cputimers_work in copy_process() Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 795/849] irqchip/sifive-plic: Fixup EOI failed when masked Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 796/849] f2fs: should use GFP_NOFS for directory inodes Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 797/849] f2fs: include non-compressed blocks in compr_written_block Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 798/849] f2fs: fix UAF in f2fs_available_free_memory Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 799/849] erofs: fix unsafe pagevec reuse of hooked pclusters Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 800/849] dmaengine: ti: k3-udma: Set bchan to NULL if a channel request fail Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 801/849] dmaengine: ti: k3-udma: Set r/tchan or rflow to NULL if " Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 802/849] dmaengine: bestcomm: fix system boot lockups Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 803/849] net, neigh: Enable state migration between NUD_PERMANENT and NTF_USE Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 804/849] bpf, cgroups: Fix cgroup v2 fallback on v1/v2 mixed mode Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 805/849] bpf, cgroup: Assign cgroup in cgroup_sk_alloc when called from interrupt Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 806/849] 9p/net: fix missing error check in p9_check_errors Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 807/849] mm/filemap.c: remove bogus VM_BUG_ON Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 808/849] memcg: prohibit unconditional exceeding the limit of dying tasks Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 809/849] io-wq: ensure that hash wait lock is IRQ disabling Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 810/849] io-wq: fix queue stalling race Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 811/849] io-wq: serialize hash clear with wakeup Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 812/849] mm, oom: pagefault_out_of_memory: dont force global OOM for dying tasks Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 813/849] mm, oom: do not trigger out_of_memory from the #PF Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 814/849] mfd: dln2: Add cell for initializing DLN2 ADC Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 815/849] video: backlight: Drop maximum brightness override for brightness zero Greg Kroah-Hartman
2021-11-15 17:04 ` [PATCH 5.14 816/849] PM: sleep: Avoid calling put_device() under dpm_list_mtx Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 817/849] s390/cpumf: cpum_cf PMU displays invalid value after hotplug remove Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 818/849] s390/cio: check the subchannel validity for dev_busid Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 819/849] s390/tape: fix timer initialization in tape_std_assign() Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 820/849] s390/ap: Fix hanging ioctl caused by orphaned replies Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 821/849] s390/cio: make ccw_device_dma_* more robust Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 822/849] remoteproc: elf_loader: Fix loading segment when is_iomem true Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 823/849] remoteproc: Fix the wrong default value of is_iomem Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 824/849] remoteproc: imx_rproc: Fix ignoring mapping vdev regions Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 825/849] remoteproc: imx_rproc: Fix rsc-table name Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 826/849] mtd: rawnand: fsmc: Fix use of SM ORDER Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 827/849] mtd: rawnand: ams-delta: Keep the driver compatible with on-die ECC engines Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 828/849] mtd: rawnand: xway: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 829/849] mtd: rawnand: mpc5121: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 830/849] mtd: rawnand: gpio: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 831/849] mtd: rawnand: pasemi: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 832/849] mtd: rawnand: orion: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 833/849] mtd: rawnand: plat_nand: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 834/849] mtd: rawnand: au1550nd: " Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 835/849] powerpc/vas: Fix potential NULL pointer dereference Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 836/849] powerpc/bpf: Fix write protecting JIT code Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 837/849] powerpc/32e: Ignore ESR in instruction storage interrupt handler Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 838/849] powerpc/powernv/prd: Unregister OPAL_MSG_PRD2 notifier during module unload Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 839/849] powerpc/security: Use a mutex for interrupt exit code patching Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 840/849] powerpc/64s/interrupt: Fix check_return_regs_valid() false positive Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 841/849] powerpc/pseries/mobility: ignore ibm, platform-facilities updates Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 842/849] powerpc/85xx: fix timebase sync issue when CONFIG_HOTPLUG_CPU=n Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 843/849] drm/sun4i: Fix macros in sun8i_csc.h Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 844/849] PCI: Add PCI_EXP_DEVCTL_PAYLOAD_* macros Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 845/849] PCI: aardvark: Fix PCIe Max Payload Size setting Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 846/849] SUNRPC: Partial revert of commit 6f9f17287e78 Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 847/849] pinctrl: amd: Add irq field data Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 848/849] pinctrl: amd: Handle wake-up interrupt Greg Kroah-Hartman
2021-11-15 17:05 ` [PATCH 5.14 849/849] drm/amd/display: Look at firmware version to determine using dmub on dcn21 Greg Kroah-Hartman
2021-11-16  0:53 ` [PATCH 5.14 000/849] 5.14.19-rc1 review Shuah Khan
2021-11-16  3:54 ` Fox Chen
2021-11-16 13:06 ` Naresh Kamboju
2021-11-16 13:39 ` Jon Hunter
2021-11-16 14:02   ` Greg Kroah-Hartman

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20211115165430.080492111@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=kaleshsingh@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lkp@intel.com \
    --cc=rostedt@goodmis.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).