public inbox for linux-kernel@vger.kernel.org
 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, Waiman Long <longman@redhat.com>,
	Tejun Heo <tj@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.13 171/300] cgroup/cpuset: Fix violation of cpuset locking rule
Date: Mon, 13 Sep 2021 15:13:52 +0200	[thread overview]
Message-ID: <20210913131115.181538073@linuxfoundation.org> (raw)
In-Reply-To: <20210913131109.253835823@linuxfoundation.org>

From: Waiman Long <longman@redhat.com>

[ Upstream commit 6ba34d3c73674e46d9e126e4f0cee79e5ef2481c ]

The cpuset fields that manage partition root state do not strictly
follow the cpuset locking rule that update to cpuset has to be done
with both the callback_lock and cpuset_mutex held. This is now fixed
by making sure that the locking rule is upheld.

Fixes: 3881b86128d0 ("cpuset: Add an error state to cpuset.sched.partition")
Fixes: 4b842da276a8 ("cpuset: Make CPU hotplug work with partition")
Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 kernel/cgroup/cpuset.c | 58 +++++++++++++++++++++++++-----------------
 1 file changed, 35 insertions(+), 23 deletions(-)

diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c
index 28a784bf64b1..13b5be6df4da 100644
--- a/kernel/cgroup/cpuset.c
+++ b/kernel/cgroup/cpuset.c
@@ -1148,6 +1148,7 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 	struct cpuset *parent = parent_cs(cpuset);
 	int adding;	/* Moving cpus from effective_cpus to subparts_cpus */
 	int deleting;	/* Moving cpus from subparts_cpus to effective_cpus */
+	int new_prs;
 	bool part_error = false;	/* Partition error? */
 
 	percpu_rwsem_assert_held(&cpuset_rwsem);
@@ -1183,6 +1184,7 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 	 * A cpumask update cannot make parent's effective_cpus become empty.
 	 */
 	adding = deleting = false;
+	new_prs = cpuset->partition_root_state;
 	if (cmd == partcmd_enable) {
 		cpumask_copy(tmp->addmask, cpuset->cpus_allowed);
 		adding = true;
@@ -1247,11 +1249,11 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 		switch (cpuset->partition_root_state) {
 		case PRS_ENABLED:
 			if (part_error)
-				cpuset->partition_root_state = PRS_ERROR;
+				new_prs = PRS_ERROR;
 			break;
 		case PRS_ERROR:
 			if (!part_error)
-				cpuset->partition_root_state = PRS_ENABLED;
+				new_prs = PRS_ENABLED;
 			break;
 		}
 		/*
@@ -1260,10 +1262,10 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 		part_error = (prev_prs == PRS_ERROR);
 	}
 
-	if (!part_error && (cpuset->partition_root_state == PRS_ERROR))
+	if (!part_error && (new_prs == PRS_ERROR))
 		return 0;	/* Nothing need to be done */
 
-	if (cpuset->partition_root_state == PRS_ERROR) {
+	if (new_prs == PRS_ERROR) {
 		/*
 		 * Remove all its cpus from parent's subparts_cpus.
 		 */
@@ -1272,7 +1274,7 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 				       parent->subparts_cpus);
 	}
 
-	if (!adding && !deleting)
+	if (!adding && !deleting && (new_prs == cpuset->partition_root_state))
 		return 0;
 
 	/*
@@ -1299,6 +1301,9 @@ static int update_parent_subparts_cpumask(struct cpuset *cpuset, int cmd,
 	}
 
 	parent->nr_subparts_cpus = cpumask_weight(parent->subparts_cpus);
+
+	if (cpuset->partition_root_state != new_prs)
+		cpuset->partition_root_state = new_prs;
 	spin_unlock_irq(&callback_lock);
 
 	return cmd == partcmd_update;
@@ -1321,6 +1326,7 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 	struct cpuset *cp;
 	struct cgroup_subsys_state *pos_css;
 	bool need_rebuild_sched_domains = false;
+	int new_prs;
 
 	rcu_read_lock();
 	cpuset_for_each_descendant_pre(cp, pos_css, cs) {
@@ -1360,7 +1366,8 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 		 * update_tasks_cpumask() again for tasks in the parent
 		 * cpuset if the parent's subparts_cpus changes.
 		 */
-		if ((cp != cs) && cp->partition_root_state) {
+		new_prs = cp->partition_root_state;
+		if ((cp != cs) && new_prs) {
 			switch (parent->partition_root_state) {
 			case PRS_DISABLED:
 				/*
@@ -1370,7 +1377,7 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 				 */
 				WARN_ON_ONCE(cp->partition_root_state
 					     != PRS_ERROR);
-				cp->partition_root_state = PRS_DISABLED;
+				new_prs = PRS_DISABLED;
 
 				/*
 				 * clear_bit() is an atomic operation and
@@ -1391,11 +1398,7 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 				/*
 				 * When parent is invalid, it has to be too.
 				 */
-				cp->partition_root_state = PRS_ERROR;
-				if (cp->nr_subparts_cpus) {
-					cp->nr_subparts_cpus = 0;
-					cpumask_clear(cp->subparts_cpus);
-				}
+				new_prs = PRS_ERROR;
 				break;
 			}
 		}
@@ -1407,8 +1410,7 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 		spin_lock_irq(&callback_lock);
 
 		cpumask_copy(cp->effective_cpus, tmp->new_cpus);
-		if (cp->nr_subparts_cpus &&
-		   (cp->partition_root_state != PRS_ENABLED)) {
+		if (cp->nr_subparts_cpus && (new_prs != PRS_ENABLED)) {
 			cp->nr_subparts_cpus = 0;
 			cpumask_clear(cp->subparts_cpus);
 		} else if (cp->nr_subparts_cpus) {
@@ -1435,6 +1437,10 @@ static void update_cpumasks_hier(struct cpuset *cs, struct tmpmasks *tmp)
 					= cpumask_weight(cp->subparts_cpus);
 			}
 		}
+
+		if (new_prs != cp->partition_root_state)
+			cp->partition_root_state = new_prs;
+
 		spin_unlock_irq(&callback_lock);
 
 		WARN_ON(!is_in_v2_mode() &&
@@ -1944,25 +1950,25 @@ out:
  */
 static int update_prstate(struct cpuset *cs, int new_prs)
 {
-	int err;
+	int err, old_prs = cs->partition_root_state;
 	struct cpuset *parent = parent_cs(cs);
 	struct tmpmasks tmpmask;
 
-	if (new_prs == cs->partition_root_state)
+	if (old_prs == new_prs)
 		return 0;
 
 	/*
 	 * Cannot force a partial or invalid partition root to a full
 	 * partition root.
 	 */
-	if (new_prs && (cs->partition_root_state < 0))
+	if (new_prs && (old_prs == PRS_ERROR))
 		return -EINVAL;
 
 	if (alloc_cpumasks(NULL, &tmpmask))
 		return -ENOMEM;
 
 	err = -EINVAL;
-	if (!cs->partition_root_state) {
+	if (!old_prs) {
 		/*
 		 * Turning on partition root requires setting the
 		 * CS_CPU_EXCLUSIVE bit implicitly as well and cpus_allowed
@@ -1981,14 +1987,12 @@ static int update_prstate(struct cpuset *cs, int new_prs)
 			update_flag(CS_CPU_EXCLUSIVE, cs, 0);
 			goto out;
 		}
-		cs->partition_root_state = PRS_ENABLED;
 	} else {
 		/*
 		 * Turning off partition root will clear the
 		 * CS_CPU_EXCLUSIVE bit.
 		 */
-		if (cs->partition_root_state == PRS_ERROR) {
-			cs->partition_root_state = PRS_DISABLED;
+		if (old_prs == PRS_ERROR) {
 			update_flag(CS_CPU_EXCLUSIVE, cs, 0);
 			err = 0;
 			goto out;
@@ -1999,8 +2003,6 @@ static int update_prstate(struct cpuset *cs, int new_prs)
 		if (err)
 			goto out;
 
-		cs->partition_root_state = PRS_DISABLED;
-
 		/* Turning off CS_CPU_EXCLUSIVE will not return error */
 		update_flag(CS_CPU_EXCLUSIVE, cs, 0);
 	}
@@ -2017,6 +2019,12 @@ static int update_prstate(struct cpuset *cs, int new_prs)
 
 	rebuild_sched_domains_locked();
 out:
+	if (!err) {
+		spin_lock_irq(&callback_lock);
+		cs->partition_root_state = new_prs;
+		spin_unlock_irq(&callback_lock);
+	}
+
 	free_cpumasks(NULL, &tmpmask);
 	return err;
 }
@@ -3080,8 +3088,10 @@ retry:
 	if (is_partition_root(cs) && (cpumask_empty(&new_cpus) ||
 	   (parent->partition_root_state == PRS_ERROR))) {
 		if (cs->nr_subparts_cpus) {
+			spin_lock_irq(&callback_lock);
 			cs->nr_subparts_cpus = 0;
 			cpumask_clear(cs->subparts_cpus);
+			spin_unlock_irq(&callback_lock);
 			compute_effective_cpumask(&new_cpus, cs, parent);
 		}
 
@@ -3095,7 +3105,9 @@ retry:
 		     cpumask_empty(&new_cpus)) {
 			update_parent_subparts_cpumask(cs, partcmd_disable,
 						       NULL, tmp);
+			spin_lock_irq(&callback_lock);
 			cs->partition_root_state = PRS_ERROR;
+			spin_unlock_irq(&callback_lock);
 		}
 		cpuset_force_rebuild();
 	}
-- 
2.30.2




  parent reply	other threads:[~2021-09-13 14:07 UTC|newest]

Thread overview: 308+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-13 13:11 [PATCH 5.13 000/300] 5.13.17-rc1 review Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 001/300] locking/mutex: Fix HANDOFF condition Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 002/300] regmap: fix the offset of register error log Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 003/300] regulator: tps65910: Silence deferred probe error Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 004/300] crypto: mxs-dcp - Check for DMA mapping errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 005/300] sched/deadline: Fix reset_on_fork reporting of DL tasks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 006/300] power: supply: axp288_fuel_gauge: Report register-address on readb / writeb errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 007/300] crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 008/300] sched/deadline: Fix missing clock update in migrate_task_rq_dl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 009/300] rcu/tree: Handle VM stoppage in stall detection Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 010/300] EDAC/mce_amd: Do not load edac_mce_amd module on guests Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 011/300] posix-cpu-timers: Force next expiration recalc after itimer reset Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 012/300] hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 013/300] hrtimer: Ensure timerfd notification for HIGHRES=n Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 014/300] udf: Check LVID earlier Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 015/300] udf: Fix iocharset=utf8 mount option Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 016/300] isofs: joliet: " Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 017/300] bcache: add proper error unwinding in bcache_device_init Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 018/300] nbd: add the check to prevent overflow in __nbd_ioctl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 019/300] blk-throtl: optimize IOPS throttle for large IO scenarios Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 020/300] nvme-tcp: dont update queue count when failing to set io queues Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 021/300] nvme-rdma: " Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 022/300] nvmet: pass back cntlid on successful completion Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 023/300] power: supply: smb347-charger: Add missing pin control activation Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 024/300] power: supply: max17042_battery: fix typo in MAx17042_TOFF Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 025/300] s390/cio: add dev_busid sysfs entry for each subchannel Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 026/300] s390/zcrypt: fix wrong offset index for APKA master key valid state Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 027/300] libata: fix ata_host_start() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 028/300] sched/topology: Skip updating masks for non-online nodes Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 029/300] crypto: omap - Fix inconsistent locking of device lists Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 030/300] crypto: qat - do not ignore errors from enable_vf2pf_comms() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 031/300] crypto: qat - handle both source of interrupt in VF ISR Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 032/300] crypto: qat - fix reuse of completion variable Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 033/300] crypto: qat - fix naming for init/shutdown VF to PF notifications Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 034/300] crypto: qat - do not export adf_iov_putmsg() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 035/300] crypto: hisilicon/sec - fix the abnormal exiting process Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 036/300] crypto: hisilicon/sec - modify the hardware endian configuration Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 037/300] crypto: tcrypt - Fix missing return value check Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 038/300] fcntl: fix potential deadlocks for &fown_struct.lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 039/300] fcntl: fix potential deadlock for &fasync_struct.fa_lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 040/300] udf_get_extendedattr() had no boundary checks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 041/300] io-wq: remove GFP_ATOMIC allocation off schedule out path Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 042/300] s390/kasan: fix large PMD pages address alignment check Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 043/300] s390/pci: fix misleading rc in clp_set_pci_fn() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 044/300] s390/debug: keep debug data on resize Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 045/300] s390/debug: fix debug area life cycle Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 046/300] s390/ap: fix state machine hang after failure to enable irq Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 047/300] sched/debug: Dont update sched_domain debug directories before sched_debug_init() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 048/300] power: supply: cw2015: use dev_err_probe to allow deferred probe Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 049/300] m68k: emu: Fix invalid free in nfeth_cleanup() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 050/300] crypto: x86/aes-ni - add missing error checks in XTS code Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 051/300] crypto: ecc - handle unaligned input buffer in ecc_swap_digits Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 052/300] sched/numa: Fix is_core_idle() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 053/300] sched: Fix UCLAMP_FLAG_IDLE setting Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 054/300] rcu: Fix to include first blocked task in stall warning Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 055/300] rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 056/300] m68k: Fix invalid RMW_INSNS on CPUs that lack CAS Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 057/300] block: return ELEVATOR_DISCARD_MERGE if possible Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 058/300] spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 059/300] spi: spi-pic32: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 060/300] genirq/timings: Fix error return code in irq_timings_test_irqs() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 061/300] irqchip/loongson-pch-pic: Improve edge triggered interrupt support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 062/300] lib/mpi: use kcalloc in mpi_resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 063/300] clocksource/drivers/sh_cmt: Fix wrong setting if dont request IRQ for clock source channel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 064/300] block: nbd: add sanity check for first_minor Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 065/300] spi: coldfire-qspi: Use clk_disable_unprepare in the remove function Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 066/300] irqchip/apple-aic: Fix irq_disable from within irq handlers Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 067/300] irqchip/gic-v3: Fix priority comparison when non-secure priorities are used Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 068/300] crypto: qat - use proper type for vf_mask Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 069/300] certs: Trigger creation of RSA module signing key if its not an RSA key Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 070/300] tpm: ibmvtpm: Avoid error message when process gets signal while waiting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 071/300] io_uring: refactor io_submit_flush_completions() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 072/300] x86/mce: Defer processing of early errors Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 073/300] spi: davinci: invoke chipselect callback Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 074/300] blk-crypto: fix check for too-large dun_bytes Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 075/300] regulator: vctrl: Use locked regulator_get_voltage in probe path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 076/300] regulator: vctrl: Avoid lockdep warning in enable/disable ops Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 077/300] spi: sprd: Fix the wrong WDG_LOAD_VAL Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 078/300] spi: spi-zynq-qspi: use wait_for_completion_timeout to make zynq_qspi_exec_mem_op not interruptible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 079/300] crypto: rmd320 - remove rmd320 in Makefile Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 080/300] EDAC/i10nm: Fix NVDIMM detection Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 081/300] drm/panfrost: Fix missing clk_disable_unprepare() on error in panfrost_clk_init() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 082/300] drm/gma500: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 083/300] ASoC: mediatek: mt8192:Fix Unbalanced pm_runtime_enable in mt8192_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 084/300] ASoC: mediatek: mt8183: Fix Unbalanced pm_runtime_enable in mt8183_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 085/300] media: TDA1997x: enable EDID support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 086/300] leds: is31fl32xx: Fix missing error code in is31fl32xx_parse_dt() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 087/300] soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 088/300] media: cxd2880-spi: Fix an error handling path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 089/300] drm/of: free the right object Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 090/300] bpf: Fix a typo of reuseport map in bpf.h Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 091/300] bpf: Fix potential memleak and UAF in the verifier Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 092/300] drm/of: free the iterator object on failure Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 093/300] gve: fix the wrong AdminQ buffer overflow check Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 094/300] libbpf: Fix the possible memory leak on error Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 095/300] ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 096/300] arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 097/300] i40e: improve locking of mac_filter_hash Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 098/300] arm64: dts: qcom: sc7180: Set adau wakeup delay to 80 ms Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 099/300] soc: qcom: rpmhpd: Use corner in power_off Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 100/300] libbpf: Fix removal of inner map in bpf_object__create_map Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 101/300] gfs2: Fix memory leak of object lsi on error return path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 102/300] arm64: dts: qcom: sm8250: fix usb2 qmp phy node Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 103/300] bpf, selftests: Fix test_maps now that sockmap supports UDP Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 104/300] firmware: fix theoretical UAF race with firmware cache and resume Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 105/300] driver core: Fix error return code in really_probe() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 106/300] ionic: cleanly release devlink instance Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 107/300] media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 108/300] media: dvb-usb: fix uninit-value in vp702x_read_mac_addr Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 109/300] media: dvb-usb: Fix error handling in dvb_usb_i2c_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 110/300] media: go7007: fix memory leak in go7007_usb_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 111/300] media: go7007: remove redundant initialization Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 112/300] media: rockchip/rga: use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 113/300] media: rockchip/rga: fix error handling in probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 114/300] media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 115/300] media: atomisp: fix the uninitialized use and rename "retvalue" Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 116/300] Bluetooth: sco: prevent information leak in sco_conn_defer_accept() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 117/300] Bluetooth: btusb: Fix a unspported condition to set available debug features Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 118/300] 6lowpan: iphc: Fix an off-by-one check of array index Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 119/300] drm/amdgpu/acp: Make PM domain really work Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 120/300] tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 121/300] ARM: dts: meson8: Use a higher default GPU clock frequency Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 122/300] ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 123/300] ARM: dts: meson8b: mxq: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 124/300] ARM: dts: meson8b: ec100: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 125/300] net/mlx5e: Prohibit inner indir TIRs in IPoIB Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 126/300] net/mlx5e: Block LRO if firmware asks for tunneled LRO Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 127/300] cgroup/cpuset: Fix a partition bug with hotplug Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 128/300] drm: mxsfb: Enable recovery on underflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 129/300] drm: mxsfb: Increase number of outstanding requests on V4 and newer HW Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 130/300] drm: mxsfb: Clear FIFO_CLEAR bit Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 131/300] net: cipso: fix warnings in netlbl_cipsov4_add_std Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 132/300] net: ti: am65-cpsw-nuss: fix wrong devlink release order Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 133/300] drm: rcar-du: Dont put reference to drm_device in rcar_du_remove() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 134/300] Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 135/300] tools: Free BTF objects at various locations Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 136/300] arm64: dts: renesas: hihope-rzg2-ex: Add EtherAVB internal rx delay Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 137/300] devlink: Break parameter notification sequence to be before/after unload/load driver Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 138/300] net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 139/300] i2c: highlander: add IRQ check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 140/300] leds: lgm-sso: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 141/300] leds: lgm-sso: Dont spam logs when probe is deferred Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 142/300] leds: lt3593: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 143/300] leds: rt8515: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 144/300] leds: trigger: audio: Add an activate callback to ensure the initial brightness is set Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 145/300] media: em28xx-input: fix refcount bug in em28xx_usb_disconnect Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 146/300] media: omap3isp: Fix missing unlock in isp_subdev_notifier_complete() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 147/300] media: venus: hfi: fix return value check in sys_get_prop_image_version() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 148/300] media: venus: venc: Fix potential null pointer dereference on pointer fmt Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 149/300] media: venus: helper: do not set constrained parameters for UBWC Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 150/300] soc: mmsys: mediatek: add mask to mmsys routes Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 151/300] PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 152/300] PCI: PM: Enable PME if it can be signaled from D3cold Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 153/300] bpf, samples: Add missing mprog-disable to xdp_redirect_cpus optstring Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 154/300] soc: qcom: smsm: Fix missed interrupts if state changes while masked Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 155/300] debugfs: Return error during {full/open}_proxy_open() on rmmod Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 156/300] Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 157/300] net: ti: am65-cpsw-nuss: fix RX IRQ state after .ndo_stop() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 158/300] net: dsa: stop syncing the bridge mcast_router attribute at join time Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 159/300] net: dsa: mt7530: remove the .port_set_mrouter implementation Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 160/300] net: dsa: dont disable multicast flooding to the CPU even without an IGMP querier Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 161/300] PM: EM: Increase energy calculation precision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 162/300] selftests/bpf: Fix bpf-iter-tcp4 test to print correctly the dest IP Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 163/300] leds: lgm-sso: Propagate error codes from callee to caller Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 164/300] drm/msm/mdp4: refactor HW revision detection into read_mdp_hw_revision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 165/300] drm/msm/mdp4: move HW revision detection to earlier phase Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 166/300] drm/msm/dp: update is_connected status base on sink count at dp_pm_resume() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 167/300] drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 168/300] arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 169/300] counter: 104-quad-8: Return error when invalid mode during ceiling_write Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 170/300] cgroup/cpuset: Miscellaneous code cleanup Greg Kroah-Hartman
2021-09-13 13:13 ` Greg Kroah-Hartman [this message]
2021-09-13 13:13 ` [PATCH 5.13 172/300] ASoC: Intel: Fix platform ID matching Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 173/300] Bluetooth: fix repeated calls to sco_sock_kill Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 174/300] drm/msm/dsi: Fix some reference counted resource leaks Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 175/300] drm/msm/dp: replug event is converted into an unplug followed by an plug events Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 176/300] net/mlx5: Fix unpublish devlink parameters Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 177/300] ASoC: rt5682: Implement remove callback Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 178/300] ASoC: rt5682: Properly turn off regulators if wrong device ID Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 179/300] usb: dwc3: meson-g12a: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 180/300] usb: dwc3: qcom: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 181/300] usb: gadget: udc: at91: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 182/300] usb: gadget: udc: s3c2410: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 183/300] usb: misc: brcmstb-usb-pinmap: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 184/300] usb: phy: fsl-usb: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 185/300] usb: phy: twl6030: add IRQ checks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 186/300] usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 187/300] selftests/bpf: Fix test_core_autosize on big-endian machines Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 188/300] devlink: Clear whole devlink_flash_notify struct Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 189/300] samples: pktgen: add missing IPv6 option to pktgen scripts Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 190/300] net: stmmac: fix INTR TBU status affecting irq count statistic Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 191/300] Bluetooth: Move shutdown callback before flushing tx and rx queue Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 192/300] PM: cpu: Make notifier chain use a raw_spinlock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 193/300] usb: host: ohci-tmio: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 194/300] usb: phy: tahvo: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 195/300] libbpf: Re-build libbpf.so when libbpf.map changes Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 196/300] mac80211: Fix insufficient headroom issue for AMSDU Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 197/300] locking/local_lock: Add missing owner initialization Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 198/300] lockd: Fix invalid lockowner cast after vfs_test_lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 199/300] SUNRPC: Fix a NULL pointer deref in trace_svc_stats_latency() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 200/300] nfsd4: Fix forced-expiry locking Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 201/300] arm64: dts: marvell: armada-37xx: Extend PCIe MEM space Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 202/300] clk: staging: correct reference to config IOMEM to config HAS_IOMEM Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 203/300] i2c: synquacer: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 204/300] hwmon: (pmbus/bpa-rs600) Dont use rated limits as warn limits Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 205/300] hwmon: remove amd_energy driver in Makefile Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 206/300] ASoC: fsl_rpmsg: Check -EPROBE_DEFER for getting clocks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 207/300] firmware: raspberrypi: Fix a leak in rpi_firmware_get() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 208/300] usb: gadget: mv_u3d: request_irq() after initializing UDC Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 209/300] mm/swap: consider max pages in iomap_swapfile_add_extent Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 210/300] lkdtm: replace SCSI_DISPATCH_CMD with SCSI_QUEUE_RQ Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 211/300] Bluetooth: add timeout sanity check to hci_inquiry Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 212/300] i2c: iop3xx: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 213/300] i2c: s3c2410: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 214/300] i2c: hix5hd2: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 215/300] gfs2: init system threads before freeze lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 216/300] rsi: fix error code in rsi_load_9116_firmware() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 217/300] rsi: fix an error code in rsi_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 218/300] octeontx2-af: cn10k: Fix SDP base channel number Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 219/300] octeontx2-pf: send correct vlan priority mask to npc_install_flow_req Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 220/300] octeontx2-pf: Dont install VLAN offload rule if netdev is down Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 221/300] octeontx2-pf: Fix algorithm index in MCAM rules with RSS action Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 222/300] m68k: coldfire: return success for clk_enable(NULL) Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 223/300] ASoC: Intel: kbl_da7219_max98927: Fix format selection for max98373 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 224/300] ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 225/300] ASoC: Intel: Skylake: Fix module resource and format selection Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 226/300] mmc: sdhci: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 227/300] mmc: dw_mmc: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 228/300] mmc: moxart: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 229/300] bpf: Fix possible out of bound write in narrow load handling Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 230/300] CIFS: Fix a potencially linear read overflow Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 231/300] i2c: mt65xx: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 232/300] i2c: xlp9xx: fix main " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 233/300] octeontx2-pf: cn10k: Fix error return code in otx2_set_flowkey_cfg() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 234/300] usb: ehci-orion: Handle errors of clk_prepare_enable() in probe Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 235/300] usb: bdc: Fix an error handling path in bdc_probe() when no suitable DMA config is available Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 236/300] usb: bdc: Fix a resource leak in the error handling path of bdc_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 237/300] tty: serial: fsl_lpuart: fix the wrong mapbase value Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 238/300] ASoC: wcd9335: Fix a double irq free in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 239/300] ASoC: wcd9335: Fix a memory leak in the error handling path of the probe function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 240/300] ASoC: wcd9335: Disable irq on slave ports in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 241/300] iwlwifi: skip first element in the WTAS ACPI table Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 242/300] net/mlx5: Remove all auxiliary devices at the unregister event Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 243/300] net/mlx5e: Fix possible use-after-free deleting fdb rule Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 244/300] net/mlx5: E-Switch, Set vhca id valid flag when creating indir fwd group Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 245/300] net/mlx5e: Use correct eswitch for stack devices with lag Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 246/300] ice: Only lock to update netdev dev_addr Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 247/300] net: phy: marvell10g: fix broken PHY interrupts for anyone after us in the driver probe list Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 248/300] ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 249/300] atlantic: Fix driver resume flow Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 250/300] bcma: Fix memory leak for internally-handled cores Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 251/300] brcmfmac: pcie: fix oops on failure to resume and reprobe Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 252/300] ipv6: make exception cache less predictible Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 253/300] ipv4: " Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 254/300] net: qrtr: make checks in qrtr_endpoint_post() stricter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 255/300] sch_htb: Fix inconsistency when leaf qdisc creation fails Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 256/300] net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 257/300] net: qualcomm: fix QCA7000 checksum handling Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 258/300] octeontx2-af: Fix loop in free and unmap counter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 259/300] octeontx2-af: Fix mailbox errors in nix_rss_flowkey_cfg Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 260/300] octeontx2-af: Fix static code analyzer reported issues Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 261/300] octeontx2-af: Set proper errorcode for IPv4 checksum errors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 262/300] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 263/300] amdgpu/pm: add extra info to SMU msg pre-check failed message Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 264/300] ASoC: rt5682: Remove unused variable in rt5682_i2c_remove() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 265/300] iwlwifi Add support for ax201 in Samsung Galaxy Book Flex2 Alpha Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 266/300] f2fs: guarantee to write dirty data when enabling checkpoint back Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 267/300] time: Handle negative seconds correctly in timespec64_to_ns() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 268/300] auxdisplay: hd44780: Fix oops on module unloading Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 269/300] io_uring: limit fixed table size by RLIMIT_NOFILE Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 270/300] io_uring: IORING_OP_WRITE needs hash_reg_file set Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 271/300] io_uring: io_uring_complete() trace should take an integer Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 272/300] bio: fix page leak bio_add_hw_page failure Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 273/300] raid1: ensure write behind bio has less than BIO_MAX_VECS sectors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 274/300] cifs: Do not leak EDEADLK to dgetents64 for STATUS_USER_SESSION_DELETED Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 275/300] smb3: fix posix extensions mount option Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 276/300] tty: Fix data race between tiocsti() and flush_to_ldisc() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 277/300] x86/efi: Restore Firmware IDT before calling ExitBootServices() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 278/300] perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 279/300] x86/resctrl: Fix a maybe-uninitialized build warning treated as error Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 280/300] Revert "KVM: x86: mmu: Add guest physical address check in translate_gpa()" Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 281/300] KVM: s390: index kvm->arch.idle_mask by vcpu_idx Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 282/300] KVM: x86: Update vCPUs hv_clock before back to guest when tsc_offset is adjusted Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 283/300] KVM: x86: clamp host mapping level to max_level in kvm_mmu_max_mapping_level Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 284/300] KVM: x86/mmu: Avoid collision with !PRESENT SPTEs in TDP MMU lpage stats Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 285/300] KVM: VMX: avoid running vmx_handle_exit_irqoff in case of emulation Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 286/300] KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 287/300] KVM: arm64: Unregister HYP sections from kmemleak in protected mode Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 288/300] ARM: dts: at91: add pinctrl-{names, 0} for all gpios Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 289/300] io-wq: check max_worker limits if a worker transitions bound state Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 290/300] md/raid10: Remove unnecessary rcu_dereference in raid10_handle_discard Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 291/300] char: tpm: Kconfig: remove bad i2c cr50 select Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 292/300] fuse: truncate pagecache on atomic_o_trunc Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 293/300] fuse: flush extending writes Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 294/300] fuse: wait for writepages in syncfs Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 295/300] IMA: remove -Wmissing-prototypes warning Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 296/300] IMA: remove the dependency on CRYPTO_MD5 Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 297/300] fbmem: dont allow too huge resolutions Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 298/300] RDMA/mlx5: Fix number of allocated XLT entries Greg Kroah-Hartman
2021-09-13 13:16 ` [PATCH 5.13 299/300] backlight: pwm_bl: Improve bootloader/kernel device handover Greg Kroah-Hartman
2021-09-13 13:16 ` [PATCH 5.13 300/300] clk: kirkwood: Fix a clocking boot regression Greg Kroah-Hartman
2021-09-13 17:58 ` [PATCH 5.13 000/300] 5.13.17-rc1 review Florian Fainelli
2021-09-13 18:01 ` Naresh Kamboju
2021-09-13 20:07 ` Shuah Khan
2021-09-13 21:14 ` Fox Chen
2021-09-14  9:31 ` Naresh Kamboju
2021-09-14 15:57 ` Guenter Roeck
2021-09-14 15:59 ` Justin Forbes

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=20210913131115.181538073@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=longman@redhat.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tj@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