linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, "Paul E. McKenney" <paulmck@kernel.org>,
	Frederic Weisbecker <frederic@kernel.org>,
	Boqun Feng <boqun.feng@gmail.com>,
	Lai Jiangshan <jiangshanlai@gmail.com>,
	Neeraj Upadhyay <neeraju@codeaurora.org>,
	Josh Triplett <josh@joshtriplett.org>,
	Joel Fernandes <joel@joelfernandes.org>,
	Uladzislau Rezki <urezki@gmail.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.12 038/292] srcu: Fix broken node geometry after early ssp init
Date: Mon, 19 Jul 2021 16:51:40 +0200	[thread overview]
Message-ID: <20210719144943.772588012@linuxfoundation.org> (raw)
In-Reply-To: <20210719144942.514164272@linuxfoundation.org>

From: Frederic Weisbecker <frederic@kernel.org>

[ Upstream commit b5befe842e6612cf894cf4a199924ee872d8b7d8 ]

An srcu_struct structure that is initialized before rcu_init_geometry()
will have its srcu_node hierarchy based on CONFIG_NR_CPUS.  Once
rcu_init_geometry() is called, this hierarchy is compressed as needed
for the actual maximum number of CPUs for this system.

Later on, that srcu_struct structure is confused, sometimes referring
to its initial CONFIG_NR_CPUS-based hierarchy, and sometimes instead
to the new num_possible_cpus() hierarchy.  For example, each of its
->mynode fields continues to reference the original leaf rcu_node
structures, some of which might no longer exist.  On the other hand,
srcu_for_each_node_breadth_first() traverses to the new node hierarchy.

There are at least two bad possible outcomes to this:

1) a) A callback enqueued early on an srcu_data structure (call it
      *sdp) is recorded pending on sdp->mynode->srcu_data_have_cbs in
      srcu_funnel_gp_start() with sdp->mynode pointing to a deep leaf
      (say 3 levels).

   b) The grace period ends after rcu_init_geometry() shrinks the
      nodes level to a single one.  srcu_gp_end() walks through the new
      srcu_node hierarchy without ever reaching the old leaves so the
      callback is never executed.

   This is easily reproduced on an 8 CPUs machine with CONFIG_NR_CPUS >= 32
   and "rcupdate.rcu_self_test=1". The srcu_barrier() after early tests
   verification never completes and the boot hangs:

	[ 5413.141029] INFO: task swapper/0:1 blocked for more than 4915 seconds.
	[ 5413.147564]       Not tainted 5.12.0-rc4+ #28
	[ 5413.151927] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
	[ 5413.159753] task:swapper/0       state:D stack:    0 pid:    1 ppid:     0 flags:0x00004000
	[ 5413.168099] Call Trace:
	[ 5413.170555]  __schedule+0x36c/0x930
	[ 5413.174057]  ? wait_for_completion+0x88/0x110
	[ 5413.178423]  schedule+0x46/0xf0
	[ 5413.181575]  schedule_timeout+0x284/0x380
	[ 5413.185591]  ? wait_for_completion+0x88/0x110
	[ 5413.189957]  ? mark_held_locks+0x61/0x80
	[ 5413.193882]  ? mark_held_locks+0x61/0x80
	[ 5413.197809]  ? _raw_spin_unlock_irq+0x24/0x50
	[ 5413.202173]  ? wait_for_completion+0x88/0x110
	[ 5413.206535]  wait_for_completion+0xb4/0x110
	[ 5413.210724]  ? srcu_torture_stats_print+0x110/0x110
	[ 5413.215610]  srcu_barrier+0x187/0x200
	[ 5413.219277]  ? rcu_tasks_verify_self_tests+0x50/0x50
	[ 5413.224244]  ? rdinit_setup+0x2b/0x2b
	[ 5413.227907]  rcu_verify_early_boot_tests+0x2d/0x40
	[ 5413.232700]  do_one_initcall+0x63/0x310
	[ 5413.236541]  ? rdinit_setup+0x2b/0x2b
	[ 5413.240207]  ? rcu_read_lock_sched_held+0x52/0x80
	[ 5413.244912]  kernel_init_freeable+0x253/0x28f
	[ 5413.249273]  ? rest_init+0x250/0x250
	[ 5413.252846]  kernel_init+0xa/0x110
	[ 5413.256257]  ret_from_fork+0x22/0x30

2) An srcu_struct structure that is initialized before rcu_init_geometry()
   and used afterward will always have stale rdp->mynode references,
   resulting in callbacks to be missed in srcu_gp_end(), just like in
   the previous scenario.

This commit therefore causes init_srcu_struct_nodes to initialize the
geometry, if needed.  This ensures that the srcu_node hierarchy is
properly built and distributed from the get-go.

Suggested-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Frederic Weisbecker <frederic@kernel.org>
Cc: Boqun Feng <boqun.feng@gmail.com>
Cc: Lai Jiangshan <jiangshanlai@gmail.com>
Cc: Neeraj Upadhyay <neeraju@codeaurora.org>
Cc: Josh Triplett <josh@joshtriplett.org>
Cc: Joel Fernandes <joel@joelfernandes.org>
Cc: Uladzislau Rezki <urezki@gmail.com>
Signed-off-by: Paul E. McKenney <paulmck@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/rcu/rcu.h      |  2 ++
 kernel/rcu/srcutree.c |  3 +++
 kernel/rcu/tree.c     | 16 +++++++++++++++-
 3 files changed, 20 insertions(+), 1 deletion(-)

diff --git a/kernel/rcu/rcu.h b/kernel/rcu/rcu.h
index bf0827d4b659..cfd06fb5ba6d 100644
--- a/kernel/rcu/rcu.h
+++ b/kernel/rcu/rcu.h
@@ -308,6 +308,8 @@ static inline void rcu_init_levelspread(int *levelspread, const int *levelcnt)
 	}
 }
 
+extern void rcu_init_geometry(void);
+
 /* Returns a pointer to the first leaf rcu_node structure. */
 #define rcu_first_leaf_node() (rcu_state.level[rcu_num_lvls - 1])
 
diff --git a/kernel/rcu/srcutree.c b/kernel/rcu/srcutree.c
index e26547b34ad3..072e47288f1f 100644
--- a/kernel/rcu/srcutree.c
+++ b/kernel/rcu/srcutree.c
@@ -90,6 +90,9 @@ static void init_srcu_struct_nodes(struct srcu_struct *ssp, bool is_static)
 	struct srcu_node *snp;
 	struct srcu_node *snp_first;
 
+	/* Initialize geometry if it has not already been initialized. */
+	rcu_init_geometry();
+
 	/* Work out the overall tree geometry. */
 	ssp->level[0] = &ssp->node[0];
 	for (i = 1; i < rcu_num_lvls; i++)
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index a274622ed6fa..33bdbe0629d5 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -4502,11 +4502,25 @@ static void __init rcu_init_one(void)
  * replace the definitions in tree.h because those are needed to size
  * the ->node array in the rcu_state structure.
  */
-static void __init rcu_init_geometry(void)
+void rcu_init_geometry(void)
 {
 	ulong d;
 	int i;
+	static unsigned long old_nr_cpu_ids;
 	int rcu_capacity[RCU_NUM_LVLS];
+	static bool initialized;
+
+	if (initialized) {
+		/*
+		 * Warn if setup_nr_cpu_ids() had not yet been invoked,
+		 * unless nr_cpus_ids == NR_CPUS, in which case who cares?
+		 */
+		WARN_ON_ONCE(old_nr_cpu_ids != nr_cpu_ids);
+		return;
+	}
+
+	old_nr_cpu_ids = nr_cpu_ids;
+	initialized = true;
 
 	/*
 	 * Initialize any unspecified boot parameters.
-- 
2.30.2




  parent reply	other threads:[~2021-07-19 17:59 UTC|newest]

Thread overview: 294+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-19 14:51 [PATCH 5.12 000/292] 5.12.19-rc1 review Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 001/292] cifs: use the expiry output of dns_query to schedule next resolution Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 002/292] cifs: handle reconnect of tcon when there is no cached dfs referral Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 003/292] cifs: Do not use the original cruid when following DFS links for multiuser mounts Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 004/292] KVM: mmio: Fix use-after-free Read in kvm_vm_ioctl_unregister_coalesced_mmio Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 005/292] KVM: x86: Use guest MAXPHYADDR from CPUID.0x8000_0008 iff TDP is enabled Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 006/292] KVM: x86/mmu: Do not apply HPA (memory encryption) mask to GPAs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 007/292] KVM: nSVM: Check the value written to MSR_VM_HSAVE_PA Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 008/292] KVM: X86: Disable hardware breakpoints unconditionally before kvm_x86->run() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 009/292] scsi: core: Fix bad pointer dereference when ehandler kthread is invalid Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 010/292] scsi: zfcp: Report port fc_security as unknown early during remote cable pull Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 011/292] iommu/vt-d: Global devTLB flush when present context entry changed Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 012/292] iommu/vt-d: Fix clearing real DMA devices scalable-mode context entries Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 013/292] tracing: Do not reference char * as a string in histograms Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 014/292] drm/amdgpu: add another Renoir DID Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 015/292] drm/i915/gtt: drop the page table optimisation Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 016/292] drm/i915/gt: Fix -EDEADLK handling regression Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 017/292] cgroup: verify that source is a string Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 018/292] fbmem: Do not delete the mode that is still in use Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 019/292] EDAC/igen6: fix core dependency AGAIN Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 020/292] mm/hugetlb: fix refs calculation from unaligned @vaddr Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 021/292] arm64: Avoid premature usercopy failure Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 022/292] io_uring: use right task for exiting checks Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 023/292] btrfs: properly split extent_map for REQ_OP_ZONE_APPEND Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 024/292] btrfs: fix deadlock with concurrent chunk allocations involving system chunks Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 025/292] btrfs: rework chunk allocation to avoid exhaustion of the system chunk array Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 026/292] btrfs: zoned: fix wrong mutex unlock on failure to allocate log root tree Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 027/292] drm/dp_mst: Do not set proposed vcpi directly Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 028/292] drm/dp_mst: Avoid to mess up payload table by ports in stale topology Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 029/292] drm/dp_mst: Add missing drm parameters to recently added call to drm_dbg_kms() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 030/292] io_uring: put link timeout req consistently Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 031/292] io_uring: fix link timeout refs Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 032/292] net: bridge: multicast: fix PIM hello router port marking race Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 033/292] net: bridge: multicast: fix MRD advertisement " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 034/292] leds: tlc591xx: fix return value check in tlc591xx_probe() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 035/292] ASoC: Intel: sof_sdw: add mutual exclusion between PCH DMIC and RT715 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 036/292] dmaengine: fsl-qdma: check dma_set_mask return value Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 037/292] scsi: arcmsr: Fix the wrong CDB payload report to IOP Greg Kroah-Hartman
2021-07-19 14:51 ` Greg Kroah-Hartman [this message]
2021-07-19 14:51 ` [PATCH 5.12 039/292] rcu: Reject RCU_LOCKDEP_WARN() false positives Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 040/292] usb: dwc3: pci: Fix DEFINE for Intel Elkhart Lake Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 041/292] tty: serial: fsl_lpuart: fix the potential risk of division or modulo by zero Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 042/292] serial: fsl_lpuart: disable DMA for console and fix sysrq Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 043/292] misc/libmasm/module: Fix two use after free in ibmasm_init_one Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 044/292] misc: alcor_pci: fix null-ptr-deref when there is no PCI bridge Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 045/292] ASoC: intel/boards: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 046/292] partitions: msdos: fix one-byte get_unaligned() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 047/292] iio: imu: st_lsm6dsx: correct ODR in header Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 048/292] iio: gyro: fxa21002c: Balance runtime pm + use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 049/292] iio: magn: bmc150: " Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 050/292] ALSA: usx2y: Avoid camelCase Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 051/292] ALSA: usx2y: Dont call free_pages_exact() with NULL address Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 052/292] Revert "ALSA: bebob/oxfw: fix Kconfig entry for Mackie d.2 Pro" Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 053/292] usb: common: usb-conn-gpio: fix NULL pointer dereference of charger Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 054/292] w1: ds2438: fixing bug that would always get page0 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 055/292] ASoC: Intel: sof_sdw: add quirk support for Brya and BT-offload Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 056/292] scsi: arcmsr: Fix doorbell status being updated late on ARC-1886 Greg Kroah-Hartman
2021-07-19 14:51 ` [PATCH 5.12 057/292] scsi: hisi_sas: Propagate errors in interrupt_init_v1_hw() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 058/292] scsi: lpfc: Fix "Unexpected timeout" error in direct attach topology Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 059/292] scsi: lpfc: Fix crash when lpfc_sli4_hba_setup() fails to initialize the SGLs Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 060/292] scsi: core: Cap scsi_host cmd_per_lun at can_queue Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 061/292] ALSA: ac97: fix PM reference leak in ac97_bus_remove() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 062/292] tty: serial: 8250: serial_cs: Fix a memory leak in error handling path Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 063/292] scsi: mpt3sas: Fix deadlock while cancelling the running firmware event Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 064/292] scsi: core: Fixup calling convention for scsi_mode_sense() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 065/292] scsi: scsi_dh_alua: Check for negative result value Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 066/292] fs/jfs: Fix missing error code in lmLogInit() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 067/292] scsi: megaraid_sas: Fix resource leak in case of probe failure Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 068/292] scsi: megaraid_sas: Early detection of VD deletion through RaidMap update Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 069/292] scsi: megaraid_sas: Handle missing interrupts while re-enabling IRQs Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 070/292] scsi: iscsi: Add iscsi_cls_conn refcount helpers Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 071/292] scsi: iscsi: Fix conn use after free during resets Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 072/292] scsi: iscsi: Fix shost->max_id use Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 073/292] scsi: qedi: Fix null ref during abort handling Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 074/292] scsi: qedi: Fix race during abort timeouts Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 075/292] scsi: qedi: Fix TMF session block/unblock use Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 076/292] scsi: qedi: Fix cleanup " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 077/292] mfd: da9052/stmpe: Add and modify MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 078/292] mfd: cpcap: Fix cpcap dmamask not set warnings Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 079/292] ASoC: img: Fix PM reference leak in img_i2s_in_probe() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 080/292] fsi: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 081/292] serial: tty: uartlite: fix console setup Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 082/292] s390/sclp_vt220: fix console name to match device Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 083/292] s390: disable SSP when needed Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 084/292] selftests: timers: rtcpie: skip test if default RTC device does not exist Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 085/292] iommu/arm-smmu-qcom: Skip the TTBR1 quirk for db820c Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 086/292] ALSA: sb: Fix potential double-free of CSP mixer elements Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 087/292] powerpc/ps3: Add dma_mask to ps3_dma_region Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 088/292] iommu/arm-smmu: Fix arm_smmu_device refcount leak when arm_smmu_rpm_get fails Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 089/292] iommu/arm-smmu: Fix arm_smmu_device refcount leak in address translation Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 090/292] ALSA: n64: check return value after calling platform_get_resource() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 091/292] ASoC: soc-pcm: fix the return value in dpcm_apply_symmetry() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 092/292] gpio: zynq: Check return value of pm_runtime_get_sync Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 093/292] gpio: zynq: Check return value of irq_get_irq_data Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 094/292] scsi: storvsc: Correctly handle multiple flags in srb_status Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 095/292] ALSA: ppc: fix error return code in snd_pmac_probe() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 096/292] selftests/powerpc: Fix "no_handler" EBB selftest Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 097/292] gpio: pca953x: Add support for the On Semi pca9655 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 098/292] powerpc/mm/book3s64: Fix possible build error Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 099/292] ASoC: soc-core: Fix the error return code in snd_soc_of_parse_audio_routing() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 100/292] xhci: handle failed buffer copy to URB sg list and fix a W=1 copiler warning Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 101/292] habanalabs/gaudi: set the correct cpu_id on MME2_QM failure Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 102/292] habanalabs: fix mask to obtain page offset Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 103/292] habanalabs: set rc as valid in case of intentional func exit Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 104/292] habanalabs: remove node from list before freeing the node Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 105/292] habanalabs/gaudi: set the correct rc in case of err Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 106/292] s390/processor: always inline stap() and __load_psw_mask() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 107/292] s390/ipl_parm: fix program check new psw handling Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 108/292] s390/mem_detect: fix diag260() " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 109/292] s390/mem_detect: fix tprot() " Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 110/292] Input: hideep - fix the uninitialized use in hideep_nvm_unlock() Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 111/292] ALSA: bebob: add support for ToneWeal FW66 Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 112/292] m68knommu: fix missing LCD splash screen data initializer Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 113/292] ALSA: usb-audio: scarlett2: Fix 18i8 Gen 2 PCM Input count Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 114/292] ALSA: usb-audio: scarlett2: Fix data_mutex lock Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 115/292] ALSA: usb-audio: scarlett2: Fix scarlett2_*_ctl_put() return values Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 116/292] usb: gadget: f_hid: fix endianness issue with descriptors Greg Kroah-Hartman
2021-07-19 14:52 ` [PATCH 5.12 117/292] usb: gadget: hid: fix error return code in hid_bind() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 118/292] powerpc/boot: Fixup device-tree on little endian Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 119/292] ASoC: fsl_xcvr: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 120/292] ASoC: Intel: kbl_da7219_max98357a: shrink platform_id below 20 characters Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 121/292] backlight: lm3630a: Fix return code of .update_status() callback Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 122/292] ALSA: hda: Add IRQ check for platform_get_irq() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 123/292] ALSA: usb-audio: scarlett2: Fix 6i6 Gen 2 line out descriptions Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 124/292] ALSA: firewire-motu: fix detection for S/PDIF source on optical interface in v2 protocol Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 125/292] leds: turris-omnia: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 126/292] staging: rtl8723bs: fix macro value for 2.4Ghz only device Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 127/292] intel_th: Wait until port is in reset before programming it Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 128/292] i2c: core: Disable client irq on reboot/shutdown Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 129/292] phy: intel: Fix for warnings due to EMMC clock 175Mhz change in FIP Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 130/292] lib/decompress_unlz4.c: correctly handle zero-padding around initrds Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 131/292] kcov: add __no_sanitize_coverage to fix noinstr for all architectures Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 132/292] power: supply: sc27xx: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 133/292] power: supply: sc2731_charger: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 134/292] pwm: spear: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 135/292] PCI: ftpci100: Rename macro name collision Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 136/292] power: supply: ab8500: Avoid NULL pointers Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 137/292] PCI: hv: Fix a race condition when removing the device Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 138/292] power: supply: max17042: Do not enforce (incorrect) interrupt trigger type Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 139/292] power: reset: gpio-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 140/292] ARM: 9087/1: kprobes: test-thumb: fix for LLVM_IAS=1 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 141/292] PCI/P2PDMA: Avoid pci_get_slot(), which may sleep Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 142/292] NFSv4: Fix delegation return in cases where we have to retry Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 143/292] PCI: pciehp: Ignore Link Down/Up caused by DPC Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 144/292] PCI: Dynamically map ECAM regions Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 145/292] watchdog: Fix possible use-after-free in wdt_startup() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 146/292] watchdog: sc520_wdt: Fix possible use-after-free in wdt_turnoff() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 147/292] watchdog: Fix possible use-after-free by calling del_timer_sync() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 148/292] watchdog: imx_sc_wdt: fix pretimeout Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 149/292] watchdog: iTCO_wdt: Account for rebooting on second timeout Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 150/292] x86/fpu: Return proper error codes from user access functions Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 151/292] remoteproc: core: Fix cdev remove and rproc del Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 152/292] PCI: tegra: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 153/292] orangefs: fix orangefs df output Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 154/292] ceph: remove bogus checks and WARN_ONs from ceph_set_page_dirty Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 155/292] drm/gma500: Add the missed drm_gem_object_put() in psb_user_framebuffer_create() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 156/292] NFS: nfs_find_open_context() may only select open files Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 157/292] power: reset: regulator-poweroff: add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 158/292] power: supply: charger-manager: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 159/292] power: supply: ab8500: " Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 160/292] power: supply: axp288_fuel_gauge: Make "T3 MRD" no_battery_list DMI entry more generic Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 161/292] drm/amdgpu: fix Navi1x tcp power gating hang when issuing lightweight invalidaiton Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 162/292] drm/amdkfd: fix sysfs kobj leak Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 163/292] pwm: img: Fix PM reference leak in img_pwm_enable() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 164/292] pwm: tegra: Dont modify HW state in .remove callback Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 165/292] ACPI: AMBA: Fix resource name in /proc/iomem Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 166/292] ACPI: video: Add quirk for the Dell Vostro 3350 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 167/292] PCI: rockchip: Register IRQ handlers after device and data are ready Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 168/292] ext4: fix WARN_ON_ONCE(!buffer_uptodate) after an error writing the superblock Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 169/292] virtio-blk: Fix memory leak among suspend/resume procedure Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 170/292] virtio_net: Fix error handling in virtnet_restore() Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 171/292] virtio_console: Assure used length from device is limited Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 172/292] block: fix the problem of io_ticks becoming smaller Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 173/292] f2fs: atgc: fix to set default age threshold Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 174/292] NFSD: Fix TP_printk() format specifier in nfsd_clid_class Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 175/292] x86/signal: Detect and prevent an alternate signal stack overflow Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 176/292] module: correctly exit module_kallsyms_on_each_symbol when fn() != 0 Greg Kroah-Hartman
2021-07-19 14:53 ` [PATCH 5.12 177/292] f2fs: add MODULE_SOFTDEP to ensure crc32 is included in the initramfs Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 178/292] f2fs: compress: fix to disallow temp extension Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 179/292] remoteproc: k3-r5: Fix an error message Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 180/292] PCI/sysfs: Fix dsm_label_utf16s_to_utf8s() buffer overrun Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 181/292] power: supply: rt5033_battery: Fix device tree enumeration Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 182/292] NFSv4: Initialise connection to the server in nfs4_alloc_client() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 183/292] NFSv4: Fix an Oops in pnfs_mark_request_commit() when doing O_DIRECT Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 184/292] sunrpc: Avoid a KASAN slab-out-of-bounds bug in xdr_set_page_base() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 185/292] um: Fix stack pointer alignment Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 186/292] um: fix error return code in slip_open() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 187/292] um: fix error return code in winch_tramp() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 188/292] ubifs: journal: Fix error return code in ubifs_jnl_write_inode() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 189/292] watchdog: keembay: Update WDT pre-timeout during the initialization Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 190/292] watchdog: keembay: Upadate WDT pretimeout for every update in timeout Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 191/292] watchdog: keembay: Update pretimeout to zero in the TH ISR Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 192/292] watchdog: keembay: Clear either the TO or TH interrupt bit Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 193/292] watchdog: keembay: Remove timeout update in the WDT start function Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 194/292] watchdog: keembay: Removed timeout update in the TO ISR Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 195/292] watchdog: aspeed: fix hardware timeout calculation Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 196/292] watchdog: jz4740: Fix return value check in jz4740_wdt_probe() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 197/292] SUNRPC: prevent port reuse on transports which dont request it Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 198/292] nfs: fix acl memory leak of posix_acl_create() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 199/292] ubifs: Set/Clear I_LINKABLE under i_lock for whiteout inode Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 200/292] PCI: iproc: Fix multi-MSI base vector number allocation Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 201/292] PCI: iproc: Support multi-MSI only on uniprocessor kernel Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 202/292] f2fs: fix to avoid adding tab before doc section Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 203/292] x86/fpu: Fix copy_xstate_to_kernel() gap handling Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 204/292] x86/fpu: Limit xstate copy size in xstateregs_set() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 205/292] PCI: intel-gw: Fix INTx enable Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 206/292] pwm: imx1: Dont disable clocks at device remove time Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 207/292] PCI: tegra194: Fix tegra_pcie_ep_raise_msi_irq() ill-defined shift Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 208/292] vdpa/mlx5: Fix umem sizes assignments on VQ create Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 209/292] vdpa/mlx5: Fix possible failure in umem size calculation Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 210/292] vdp/mlx5: Fix setting the correct dma_device Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 211/292] virtio_net: move tx vq operation under tx queue lock Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 212/292] nvme-tcp: cant set sk_user_data without write_lock Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 213/292] powerpc/bpf: Fix detecting BPF atomic instructions Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 214/292] nfsd: Reduce contention for the nfsd_file nf_rwsem Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 215/292] ALSA: isa: Fix error return code in snd_cmi8330_probe() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 216/292] vdpa/mlx5: Clear vq ready indication upon device reset Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 217/292] virtio-mem: dont read big block size in Sub Block Mode Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 218/292] NFS: Fix fscache read from NFS after cache error Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 219/292] NFSv4/pnfs: Fix the layout barrier update Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 220/292] NFSv4/pnfs: Fix layoutget behaviour after invalidation Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 221/292] NFSv4/pNFS: Dont call _nfs4_pnfs_v3_ds_connect multiple times Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 222/292] hexagon: handle {,SOFT}IRQENTRY_TEXT in linker script Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 223/292] hexagon: use common DISCARDS macro Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 224/292] ARM: dts: gemini-rut1xx: remove duplicate ethernet node Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 225/292] arm64: dts: rockchip: Drop fephy pinctrl from gmac2phy on rk3328 rock-pi-e Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 226/292] reset: RESET_BRCMSTB_RESCAL should depend on ARCH_BRCMSTB Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 227/292] reset: RESET_INTEL_GW should depend on X86 Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 228/292] reset: a10sr: add missing of_match_table reference Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 229/292] ARM: exynos: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 230/292] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU/XU3 Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 231/292] ARM: dts: exynos: fix PWM LED max brightness on Odroid HC1 Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 232/292] ARM: dts: exynos: fix PWM LED max brightness on Odroid XU4 Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 233/292] memory: stm32-fmc2-ebi: add missing of_node_put for loop iteration Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 234/292] memory: atmel-ebi: " Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 235/292] reset: brcmstb: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 236/292] memory: pl353: Fix error return code in pl353_smc_probe() Greg Kroah-Hartman
2021-07-19 14:54 ` [PATCH 5.12 237/292] ARM: dts: sun8i: h3: orangepi-plus: Fix ethernet phy-mode Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 238/292] rtc: fix snprintf() checking in is_rtc_hctosys() Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 239/292] arm64: dts: renesas: v3msk: Fix memory size Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 240/292] ARM: dts: r8a7779, marzen: Fix DU clock names Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 241/292] arm64: dts: qcom: sdm845-oneplus-common: guard rmtfs-mem Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 242/292] arm64: dts: ti: j7200-main: Enable USB2 PHY RX sensitivity workaround Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 243/292] arm64: dts: renesas: Add missing opp-suspend properties Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 244/292] arm64: dts: renesas: r8a7796[01]: Fix OPP table entry voltages Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 245/292] ARM: dts: stm32: Rework LAN8710Ai PHY reset on DHCOM SoM Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 246/292] arm64: dts: qcom: msm8994-angler: Fix gpio-reserved-ranges 85-88 Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 247/292] arm64: dts: qcom: trogdor: Add no-hpd to DSI bridge node Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 248/292] arm64: dts: qcom: c630: " Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 249/292] firmware: tegra: Fix error return code in tegra210_bpmp_init() Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 250/292] soc: mtk-pm-domains: do not register smi node as syscon Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 251/292] soc: mtk-pm-domains: Fix the clock prepared issue Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 252/292] firmware: arm_scmi: Reset Rx buffer to max size during async commands Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 253/292] dt-bindings: i2c: at91: fix example for scl-gpios Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 254/292] ARM: dts: BCM5301X: Fixup SPI binding Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 255/292] reset: bail if try_module_get() fails Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 256/292] arm64: dts: renesas: r8a779a0: Drop power-domains property from GIC node Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 257/292] Revert "ARM: dts: bcm283x: increase dwc2s RX FIFO size" Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 258/292] arm64: dts: ti: k3-j721e-main: Fix external refclk input to SERDES Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 259/292] arm64: dts: ti: k3-j721e-common-proc-board: Use external clock for SERDES Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 260/292] arm64: dts: ti: k3-j721e-common-proc-board: Re-name "link" name as "phy" Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 261/292] memory: fsl_ifc: fix leak of IO mapping on probe failure Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 262/292] memory: fsl_ifc: fix leak of private memory " Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 263/292] arm64: dts: allwinner: a64-sopine-baseboard: change RGMII mode to TXID Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 264/292] ARM: dts: dra7: Fix duplicate USB4 target module node Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 265/292] ARM: dts: am335x: align ti,pindir-d0-out-d1-in property with dt-shema Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 266/292] ARM: dts: am437x: " Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 267/292] thermal/drivers/sprd: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 268/292] ARM: dts: imx6q-dhcom: Fix ethernet reset time properties Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 269/292] ARM: dts: imx6q-dhcom: Fix ethernet plugin detection problems Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 270/292] ARM: dts: imx6q-dhcom: Add gpios pinctrl for i2c bus recovery Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 271/292] thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 272/292] firmware: turris-mox-rwtm: fix reply status decoding function Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 273/292] firmware: turris-mox-rwtm: report failures better Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 274/292] firmware: turris-mox-rwtm: fail probing when firmware does not support hwrng Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 275/292] firmware: turris-mox-rwtm: show message about HWRNG registration Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 276/292] arm64: dts: rockchip: Re-add regulator-boot-on, regulator-always-on for vdd_gpu on rk3399-roc-pc Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 277/292] arm64: dts: rockchip: Re-add regulator-always-on for vcc_sdio for rk3399-roc-pc Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 278/292] scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe() Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 279/292] sched/uclamp: Ignore max aggregation if rq is idle Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 280/292] jump_label: Fix jump_label_text_reserved() vs __init Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 281/292] static_call: Fix static_call_text_reserved() " Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 282/292] kprobe/static_call: Restore missing static_call_text_reserved() Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 283/292] mips: always link byteswap helpers into decompressor Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 284/292] mips: disable branch profiling in boot/decompress.o Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 285/292] perf report: Fix --task and --stat with pipe input Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 286/292] perf script python: Fix buffer size to report iregs in perf script Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 287/292] s390/irq: remove HAVE_IRQ_EXIT_ON_IRQ_STACK Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 288/292] MIPS: vdso: Invalid GIC access through VDSO Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 289/292] cpufreq: CPPC: Fix potential memleak in cppc_cpufreq_cpu_init Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 290/292] certs: add x509_revocation_list to gitignore Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 291/292] scsi: scsi_dh_alua: Fix signedness bug in alua_rtpg() Greg Kroah-Hartman
2021-07-19 14:55 ` [PATCH 5.12 292/292] misc: alcor_pci: fix inverted branch condition Greg Kroah-Hartman
2021-07-19 17:28 ` [PATCH 5.12 000/292] 5.12.19-rc1 review Naresh Kamboju

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20210719144943.772588012@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=boqun.feng@gmail.com \
    --cc=frederic@kernel.org \
    --cc=jiangshanlai@gmail.com \
    --cc=joel@joelfernandes.org \
    --cc=josh@joshtriplett.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=neeraju@codeaurora.org \
    --cc=paulmck@kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=urezki@gmail.com \
    /path/to/YOUR_REPLY

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

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