public inbox for patches@lists.linux.dev
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Kees Cook <keescook@chromium.org>,
	Kieran Bingham <kieran.bingham@ideasonboard.com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.4 138/282] PM: domains: Fix up terminology with parent/child
Date: Mon, 15 May 2023 18:28:36 +0200	[thread overview]
Message-ID: <20230515161726.355765660@linuxfoundation.org> (raw)
In-Reply-To: <20230515161722.146344674@linuxfoundation.org>

From: Kees Cook <keescook@chromium.org>

[ Upstream commit 8d87ae48ced2dffd5e7247d19eb4c88be6f1c6f1 ]

The genpd infrastructure uses the terms master/slave, but such uses have
no external exposures (not even in Documentation/driver-api/pm/*) and are
not mandated by nor associated with any external specifications. Change
the language used through-out to parent/child.

There was one possible exception in the debugfs node
"pm_genpd/pm_genpd_summary" but its path has no hits outside of the
kernel itself when performing a code search[1], and it seems even this
single usage has been non-functional since it was introduced due to a
typo in the Python ("apend" instead of correct "append"). Fix the typo
while we're at it.

Link: https://codesearch.debian.net/ # [1]
Signed-off-by: Kees Cook <keescook@chromium.org>
Reviewed-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Stable-dep-of: f19c3c2959e4 ("scripts/gdb: bail early if there are no generic PD")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/base/power/domain.c          | 194 +++++++++++++--------------
 drivers/base/power/domain_governor.c |  12 +-
 include/linux/pm_domain.h            |  12 +-
 scripts/gdb/linux/genpd.py           |  12 +-
 4 files changed, 115 insertions(+), 115 deletions(-)

diff --git a/drivers/base/power/domain.c b/drivers/base/power/domain.c
index 4f63a8bc72604..edb791354421b 100644
--- a/drivers/base/power/domain.c
+++ b/drivers/base/power/domain.c
@@ -263,18 +263,18 @@ static int _genpd_reeval_performance_state(struct generic_pm_domain *genpd,
 	/*
 	 * Traverse all sub-domains within the domain. This can be
 	 * done without any additional locking as the link->performance_state
-	 * field is protected by the master genpd->lock, which is already taken.
+	 * field is protected by the parent genpd->lock, which is already taken.
 	 *
 	 * Also note that link->performance_state (subdomain's performance state
-	 * requirement to master domain) is different from
-	 * link->slave->performance_state (current performance state requirement
+	 * requirement to parent domain) is different from
+	 * link->child->performance_state (current performance state requirement
 	 * of the devices/sub-domains of the subdomain) and so can have a
 	 * different value.
 	 *
 	 * Note that we also take vote from powered-off sub-domains into account
 	 * as the same is done for devices right now.
 	 */
-	list_for_each_entry(link, &genpd->master_links, master_node) {
+	list_for_each_entry(link, &genpd->parent_links, parent_node) {
 		if (link->performance_state > state)
 			state = link->performance_state;
 	}
@@ -285,40 +285,40 @@ static int _genpd_reeval_performance_state(struct generic_pm_domain *genpd,
 static int _genpd_set_performance_state(struct generic_pm_domain *genpd,
 					unsigned int state, int depth)
 {
-	struct generic_pm_domain *master;
+	struct generic_pm_domain *parent;
 	struct gpd_link *link;
-	int master_state, ret;
+	int parent_state, ret;
 
 	if (state == genpd->performance_state)
 		return 0;
 
-	/* Propagate to masters of genpd */
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		master = link->master;
+	/* Propagate to parents of genpd */
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		parent = link->parent;
 
-		if (!master->set_performance_state)
+		if (!parent->set_performance_state)
 			continue;
 
-		/* Find master's performance state */
+		/* Find parent's performance state */
 		ret = dev_pm_opp_xlate_performance_state(genpd->opp_table,
-							 master->opp_table,
+							 parent->opp_table,
 							 state);
 		if (unlikely(ret < 0))
 			goto err;
 
-		master_state = ret;
+		parent_state = ret;
 
-		genpd_lock_nested(master, depth + 1);
+		genpd_lock_nested(parent, depth + 1);
 
 		link->prev_performance_state = link->performance_state;
-		link->performance_state = master_state;
-		master_state = _genpd_reeval_performance_state(master,
-						master_state);
-		ret = _genpd_set_performance_state(master, master_state, depth + 1);
+		link->performance_state = parent_state;
+		parent_state = _genpd_reeval_performance_state(parent,
+						parent_state);
+		ret = _genpd_set_performance_state(parent, parent_state, depth + 1);
 		if (ret)
 			link->performance_state = link->prev_performance_state;
 
-		genpd_unlock(master);
+		genpd_unlock(parent);
 
 		if (ret)
 			goto err;
@@ -333,26 +333,26 @@ static int _genpd_set_performance_state(struct generic_pm_domain *genpd,
 
 err:
 	/* Encountered an error, lets rollback */
-	list_for_each_entry_continue_reverse(link, &genpd->slave_links,
-					     slave_node) {
-		master = link->master;
+	list_for_each_entry_continue_reverse(link, &genpd->child_links,
+					     child_node) {
+		parent = link->parent;
 
-		if (!master->set_performance_state)
+		if (!parent->set_performance_state)
 			continue;
 
-		genpd_lock_nested(master, depth + 1);
+		genpd_lock_nested(parent, depth + 1);
 
-		master_state = link->prev_performance_state;
-		link->performance_state = master_state;
+		parent_state = link->prev_performance_state;
+		link->performance_state = parent_state;
 
-		master_state = _genpd_reeval_performance_state(master,
-						master_state);
-		if (_genpd_set_performance_state(master, master_state, depth + 1)) {
+		parent_state = _genpd_reeval_performance_state(parent,
+						parent_state);
+		if (_genpd_set_performance_state(parent, parent_state, depth + 1)) {
 			pr_err("%s: Failed to roll back to %d performance state\n",
-			       master->name, master_state);
+			       parent->name, parent_state);
 		}
 
-		genpd_unlock(master);
+		genpd_unlock(parent);
 	}
 
 	return ret;
@@ -552,7 +552,7 @@ static int genpd_power_off(struct generic_pm_domain *genpd, bool one_dev_on,
 
 		/*
 		 * If sd_count > 0 at this point, one of the subdomains hasn't
-		 * managed to call genpd_power_on() for the master yet after
+		 * managed to call genpd_power_on() for the parent yet after
 		 * incrementing it.  In that case genpd_power_on() will wait
 		 * for us to drop the lock, so we can call .power_off() and let
 		 * the genpd_power_on() restore power for us (this shouldn't
@@ -566,22 +566,22 @@ static int genpd_power_off(struct generic_pm_domain *genpd, bool one_dev_on,
 	genpd->status = GPD_STATE_POWER_OFF;
 	genpd_update_accounting(genpd);
 
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		genpd_sd_counter_dec(link->master);
-		genpd_lock_nested(link->master, depth + 1);
-		genpd_power_off(link->master, false, depth + 1);
-		genpd_unlock(link->master);
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		genpd_sd_counter_dec(link->parent);
+		genpd_lock_nested(link->parent, depth + 1);
+		genpd_power_off(link->parent, false, depth + 1);
+		genpd_unlock(link->parent);
 	}
 
 	return 0;
 }
 
 /**
- * genpd_power_on - Restore power to a given PM domain and its masters.
+ * genpd_power_on - Restore power to a given PM domain and its parents.
  * @genpd: PM domain to power up.
  * @depth: nesting count for lockdep.
  *
- * Restore power to @genpd and all of its masters so that it is possible to
+ * Restore power to @genpd and all of its parents so that it is possible to
  * resume a device belonging to it.
  */
 static int genpd_power_on(struct generic_pm_domain *genpd, unsigned int depth)
@@ -594,20 +594,20 @@ static int genpd_power_on(struct generic_pm_domain *genpd, unsigned int depth)
 
 	/*
 	 * The list is guaranteed not to change while the loop below is being
-	 * executed, unless one of the masters' .power_on() callbacks fiddles
+	 * executed, unless one of the parents' .power_on() callbacks fiddles
 	 * with it.
 	 */
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		struct generic_pm_domain *master = link->master;
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		struct generic_pm_domain *parent = link->parent;
 
-		genpd_sd_counter_inc(master);
+		genpd_sd_counter_inc(parent);
 
-		genpd_lock_nested(master, depth + 1);
-		ret = genpd_power_on(master, depth + 1);
-		genpd_unlock(master);
+		genpd_lock_nested(parent, depth + 1);
+		ret = genpd_power_on(parent, depth + 1);
+		genpd_unlock(parent);
 
 		if (ret) {
-			genpd_sd_counter_dec(master);
+			genpd_sd_counter_dec(parent);
 			goto err;
 		}
 	}
@@ -623,12 +623,12 @@ static int genpd_power_on(struct generic_pm_domain *genpd, unsigned int depth)
 
  err:
 	list_for_each_entry_continue_reverse(link,
-					&genpd->slave_links,
-					slave_node) {
-		genpd_sd_counter_dec(link->master);
-		genpd_lock_nested(link->master, depth + 1);
-		genpd_power_off(link->master, false, depth + 1);
-		genpd_unlock(link->master);
+					&genpd->child_links,
+					child_node) {
+		genpd_sd_counter_dec(link->parent);
+		genpd_lock_nested(link->parent, depth + 1);
+		genpd_power_off(link->parent, false, depth + 1);
+		genpd_unlock(link->parent);
 	}
 
 	return ret;
@@ -943,13 +943,13 @@ static bool genpd_present(const struct generic_pm_domain *genpd)
 #ifdef CONFIG_PM_SLEEP
 
 /**
- * genpd_sync_power_off - Synchronously power off a PM domain and its masters.
+ * genpd_sync_power_off - Synchronously power off a PM domain and its parents.
  * @genpd: PM domain to power off, if possible.
  * @use_lock: use the lock.
  * @depth: nesting count for lockdep.
  *
  * Check if the given PM domain can be powered off (during system suspend or
- * hibernation) and do that if so.  Also, in that case propagate to its masters.
+ * hibernation) and do that if so.  Also, in that case propagate to its parents.
  *
  * This function is only called in "noirq" and "syscore" stages of system power
  * transitions. The "noirq" callbacks may be executed asynchronously, thus in
@@ -974,21 +974,21 @@ static void genpd_sync_power_off(struct generic_pm_domain *genpd, bool use_lock,
 
 	genpd->status = GPD_STATE_POWER_OFF;
 
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		genpd_sd_counter_dec(link->master);
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		genpd_sd_counter_dec(link->parent);
 
 		if (use_lock)
-			genpd_lock_nested(link->master, depth + 1);
+			genpd_lock_nested(link->parent, depth + 1);
 
-		genpd_sync_power_off(link->master, use_lock, depth + 1);
+		genpd_sync_power_off(link->parent, use_lock, depth + 1);
 
 		if (use_lock)
-			genpd_unlock(link->master);
+			genpd_unlock(link->parent);
 	}
 }
 
 /**
- * genpd_sync_power_on - Synchronously power on a PM domain and its masters.
+ * genpd_sync_power_on - Synchronously power on a PM domain and its parents.
  * @genpd: PM domain to power on.
  * @use_lock: use the lock.
  * @depth: nesting count for lockdep.
@@ -1005,16 +1005,16 @@ static void genpd_sync_power_on(struct generic_pm_domain *genpd, bool use_lock,
 	if (genpd_status_on(genpd))
 		return;
 
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		genpd_sd_counter_inc(link->master);
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		genpd_sd_counter_inc(link->parent);
 
 		if (use_lock)
-			genpd_lock_nested(link->master, depth + 1);
+			genpd_lock_nested(link->parent, depth + 1);
 
-		genpd_sync_power_on(link->master, use_lock, depth + 1);
+		genpd_sync_power_on(link->parent, use_lock, depth + 1);
 
 		if (use_lock)
-			genpd_unlock(link->master);
+			genpd_unlock(link->parent);
 	}
 
 	_genpd_power_on(genpd, false);
@@ -1454,12 +1454,12 @@ static void genpd_update_cpumask(struct generic_pm_domain *genpd,
 	if (!genpd_is_cpu_domain(genpd))
 		return;
 
-	list_for_each_entry(link, &genpd->slave_links, slave_node) {
-		struct generic_pm_domain *master = link->master;
+	list_for_each_entry(link, &genpd->child_links, child_node) {
+		struct generic_pm_domain *parent = link->parent;
 
-		genpd_lock_nested(master, depth + 1);
-		genpd_update_cpumask(master, cpu, set, depth + 1);
-		genpd_unlock(master);
+		genpd_lock_nested(parent, depth + 1);
+		genpd_update_cpumask(parent, cpu, set, depth + 1);
+		genpd_unlock(parent);
 	}
 
 	if (set)
@@ -1647,17 +1647,17 @@ static int genpd_add_subdomain(struct generic_pm_domain *genpd,
 		goto out;
 	}
 
-	list_for_each_entry(itr, &genpd->master_links, master_node) {
-		if (itr->slave == subdomain && itr->master == genpd) {
+	list_for_each_entry(itr, &genpd->parent_links, parent_node) {
+		if (itr->child == subdomain && itr->parent == genpd) {
 			ret = -EINVAL;
 			goto out;
 		}
 	}
 
-	link->master = genpd;
-	list_add_tail(&link->master_node, &genpd->master_links);
-	link->slave = subdomain;
-	list_add_tail(&link->slave_node, &subdomain->slave_links);
+	link->parent = genpd;
+	list_add_tail(&link->parent_node, &genpd->parent_links);
+	link->child = subdomain;
+	list_add_tail(&link->child_node, &subdomain->child_links);
 	if (genpd_status_on(subdomain))
 		genpd_sd_counter_inc(genpd);
 
@@ -1671,7 +1671,7 @@ static int genpd_add_subdomain(struct generic_pm_domain *genpd,
 
 /**
  * pm_genpd_add_subdomain - Add a subdomain to an I/O PM domain.
- * @genpd: Master PM domain to add the subdomain to.
+ * @genpd: Leader PM domain to add the subdomain to.
  * @subdomain: Subdomain to be added.
  */
 int pm_genpd_add_subdomain(struct generic_pm_domain *genpd,
@@ -1689,7 +1689,7 @@ EXPORT_SYMBOL_GPL(pm_genpd_add_subdomain);
 
 /**
  * pm_genpd_remove_subdomain - Remove a subdomain from an I/O PM domain.
- * @genpd: Master PM domain to remove the subdomain from.
+ * @genpd: Leader PM domain to remove the subdomain from.
  * @subdomain: Subdomain to be removed.
  */
 int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
@@ -1704,19 +1704,19 @@ int pm_genpd_remove_subdomain(struct generic_pm_domain *genpd,
 	genpd_lock(subdomain);
 	genpd_lock_nested(genpd, SINGLE_DEPTH_NESTING);
 
-	if (!list_empty(&subdomain->master_links) || subdomain->device_count) {
+	if (!list_empty(&subdomain->parent_links) || subdomain->device_count) {
 		pr_warn("%s: unable to remove subdomain %s\n",
 			genpd->name, subdomain->name);
 		ret = -EBUSY;
 		goto out;
 	}
 
-	list_for_each_entry_safe(link, l, &genpd->master_links, master_node) {
-		if (link->slave != subdomain)
+	list_for_each_entry_safe(link, l, &genpd->parent_links, parent_node) {
+		if (link->child != subdomain)
 			continue;
 
-		list_del(&link->master_node);
-		list_del(&link->slave_node);
+		list_del(&link->parent_node);
+		list_del(&link->child_node);
 		kfree(link);
 		if (genpd_status_on(subdomain))
 			genpd_sd_counter_dec(genpd);
@@ -1781,8 +1781,8 @@ int pm_genpd_init(struct generic_pm_domain *genpd,
 	if (IS_ERR_OR_NULL(genpd))
 		return -EINVAL;
 
-	INIT_LIST_HEAD(&genpd->master_links);
-	INIT_LIST_HEAD(&genpd->slave_links);
+	INIT_LIST_HEAD(&genpd->parent_links);
+	INIT_LIST_HEAD(&genpd->child_links);
 	INIT_LIST_HEAD(&genpd->dev_list);
 	genpd_lock_init(genpd);
 	genpd->gov = gov;
@@ -1858,15 +1858,15 @@ static int genpd_remove(struct generic_pm_domain *genpd)
 		return -EBUSY;
 	}
 
-	if (!list_empty(&genpd->master_links) || genpd->device_count) {
+	if (!list_empty(&genpd->parent_links) || genpd->device_count) {
 		genpd_unlock(genpd);
 		pr_err("%s: unable to remove %s\n", __func__, genpd->name);
 		return -EBUSY;
 	}
 
-	list_for_each_entry_safe(link, l, &genpd->slave_links, slave_node) {
-		list_del(&link->master_node);
-		list_del(&link->slave_node);
+	list_for_each_entry_safe(link, l, &genpd->child_links, child_node) {
+		list_del(&link->parent_node);
+		list_del(&link->child_node);
 		kfree(link);
 	}
 
@@ -2793,12 +2793,12 @@ static int genpd_summary_one(struct seq_file *s,
 
 	/*
 	 * Modifications on the list require holding locks on both
-	 * master and slave, so we are safe.
+	 * parent and child, so we are safe.
 	 * Also genpd->name is immutable.
 	 */
-	list_for_each_entry(link, &genpd->master_links, master_node) {
-		seq_printf(s, "%s", link->slave->name);
-		if (!list_is_last(&link->master_node, &genpd->master_links))
+	list_for_each_entry(link, &genpd->parent_links, parent_node) {
+		seq_printf(s, "%s", link->child->name);
+		if (!list_is_last(&link->parent_node, &genpd->parent_links))
 			seq_puts(s, ", ");
 	}
 
@@ -2826,7 +2826,7 @@ static int summary_show(struct seq_file *s, void *data)
 	struct generic_pm_domain *genpd;
 	int ret = 0;
 
-	seq_puts(s, "domain                          status          slaves\n");
+	seq_puts(s, "domain                          status          children\n");
 	seq_puts(s, "    /device                                             runtime status\n");
 	seq_puts(s, "----------------------------------------------------------------------\n");
 
@@ -2881,8 +2881,8 @@ static int sub_domains_show(struct seq_file *s, void *data)
 	if (ret)
 		return -ERESTARTSYS;
 
-	list_for_each_entry(link, &genpd->master_links, master_node)
-		seq_printf(s, "%s\n", link->slave->name);
+	list_for_each_entry(link, &genpd->parent_links, parent_node)
+		seq_printf(s, "%s\n", link->child->name);
 
 	genpd_unlock(genpd);
 	return ret;
diff --git a/drivers/base/power/domain_governor.c b/drivers/base/power/domain_governor.c
index daa8c7689f7e6..490ed7deb99a7 100644
--- a/drivers/base/power/domain_governor.c
+++ b/drivers/base/power/domain_governor.c
@@ -135,8 +135,8 @@ static bool __default_power_down_ok(struct dev_pm_domain *pd,
 	 *
 	 * All subdomains have been powered off already at this point.
 	 */
-	list_for_each_entry(link, &genpd->master_links, master_node) {
-		struct generic_pm_domain *sd = link->slave;
+	list_for_each_entry(link, &genpd->parent_links, parent_node) {
+		struct generic_pm_domain *sd = link->child;
 		s64 sd_max_off_ns = sd->max_off_time_ns;
 
 		if (sd_max_off_ns < 0)
@@ -217,13 +217,13 @@ static bool default_power_down_ok(struct dev_pm_domain *pd)
 	}
 
 	/*
-	 * We have to invalidate the cached results for the masters, so
+	 * We have to invalidate the cached results for the parents, so
 	 * use the observation that default_power_down_ok() is not
-	 * going to be called for any master until this instance
+	 * going to be called for any parent until this instance
 	 * returns.
 	 */
-	list_for_each_entry(link, &genpd->slave_links, slave_node)
-		link->master->max_off_time_changed = true;
+	list_for_each_entry(link, &genpd->child_links, child_node)
+		link->parent->max_off_time_changed = true;
 
 	genpd->max_off_time_ns = -1;
 	genpd->max_off_time_changed = false;
diff --git a/include/linux/pm_domain.h b/include/linux/pm_domain.h
index baf02ff91a31a..3dffbfa627082 100644
--- a/include/linux/pm_domain.h
+++ b/include/linux/pm_domain.h
@@ -95,8 +95,8 @@ struct generic_pm_domain {
 	struct device dev;
 	struct dev_pm_domain domain;	/* PM domain operations */
 	struct list_head gpd_list_node;	/* Node in the global PM domains list */
-	struct list_head master_links;	/* Links with PM domain as a master */
-	struct list_head slave_links;	/* Links with PM domain as a slave */
+	struct list_head parent_links;	/* Links with PM domain as a parent */
+	struct list_head child_links;/* Links with PM domain as a child */
 	struct list_head dev_list;	/* List of devices */
 	struct dev_power_governor *gov;
 	struct work_struct power_off_work;
@@ -151,10 +151,10 @@ static inline struct generic_pm_domain *pd_to_genpd(struct dev_pm_domain *pd)
 }
 
 struct gpd_link {
-	struct generic_pm_domain *master;
-	struct list_head master_node;
-	struct generic_pm_domain *slave;
-	struct list_head slave_node;
+	struct generic_pm_domain *parent;
+	struct list_head parent_node;
+	struct generic_pm_domain *child;
+	struct list_head child_node;
 
 	/* Sub-domain's per-master domain performance state */
 	unsigned int performance_state;
diff --git a/scripts/gdb/linux/genpd.py b/scripts/gdb/linux/genpd.py
index 6ca93bd2949e8..39cd1abd85590 100644
--- a/scripts/gdb/linux/genpd.py
+++ b/scripts/gdb/linux/genpd.py
@@ -49,17 +49,17 @@ Output is similar to /sys/kernel/debug/pm_genpd/pm_genpd_summary'''
         else:
             status_string = 'off-{}'.format(genpd['state_idx'])
 
-        slave_names = []
+        child_names = []
         for link in list_for_each_entry(
-                genpd['master_links'],
+                genpd['parent_links'],
                 device_link_type.get_type().pointer(),
-                'master_node'):
-            slave_names.apend(link['slave']['name'])
+                'parent_node'):
+            child_names.append(link['child']['name'])
 
         gdb.write('%-30s  %-15s %s\n' % (
                 genpd['name'].string(),
                 status_string,
-                ', '.join(slave_names)))
+                ', '.join(child_names)))
 
         # Print devices in domain
         for pm_data in list_for_each_entry(genpd['dev_list'],
@@ -70,7 +70,7 @@ Output is similar to /sys/kernel/debug/pm_genpd/pm_genpd_summary'''
             gdb.write('    %-50s  %s\n' % (kobj_path, rtpm_status_str(dev)))
 
     def invoke(self, arg, from_tty):
-        gdb.write('domain                          status          slaves\n');
+        gdb.write('domain                          status          children\n');
         gdb.write('    /device                                             runtime status\n');
         gdb.write('----------------------------------------------------------------------\n');
         for genpd in list_for_each_entry(
-- 
2.39.2




  parent reply	other threads:[~2023-05-15 18:01 UTC|newest]

Thread overview: 296+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-15 16:26 [PATCH 5.4 000/282] 5.4.243-rc1 review Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 001/282] counter: 104-quad-8: Fix race condition between FLAG and CNTR reads Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 002/282] wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 003/282] drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 004/282] bluetooth: Perform careful capability checks in hci_sock_ioctl() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 005/282] USB: serial: option: add UNISOC vendor and TOZED LT70C product Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 006/282] iio: adc: palmas_gpadc: fix NULL dereference on rmmod Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 007/282] ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 008/282] asm-generic/io.h: suppress endianness warnings for readq() and writeq() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 009/282] IMA: allow/fix UML builds Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 010/282] USB: dwc3: fix runtime pm imbalance on probe errors Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 011/282] USB: dwc3: fix runtime pm imbalance on unbind Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 012/282] perf sched: Cast PTHREAD_STACK_MIN to int as it may turn into sysconf(__SC_THREAD_STACK_MIN_VALUE) Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 013/282] staging: iio: resolver: ads1210: fix config mode Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 014/282] debugfs: regset32: Add Runtime PM support Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 015/282] xhci: fix debugfs register accesses while suspended Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 016/282] MIPS: fw: Allow firmware to pass a empty env Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 017/282] ipmi:ssif: Add send_retries increment Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 018/282] ipmi: fix SSIF not responding under certain cond Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 019/282] kheaders: Use array declaration instead of char Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 020/282] pwm: meson: Fix axg ao mux parents Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 021/282] pwm: meson: Fix g12a ao clk81 name Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 022/282] ring-buffer: Sync IRQ works before buffer destruction Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 023/282] reiserfs: Add security prefix to xattr name in reiserfs_security_write() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 024/282] KVM: nVMX: Emulate NOPs in L2, and PAUSE if its not intercepted Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 025/282] i2c: omap: Fix standard mode false ACK readings Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 026/282] Revert "ubifs: dirty_cow_znode: Fix memleak in error handling path" Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 027/282] ubifs: Fix memleak when insert_old_idx() failed Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 028/282] ubi: Fix return value overwrite issue in try_write_vid_and_data() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 029/282] ubifs: Free memory for tmpfile name Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 030/282] selinux: fix Makefile dependencies of flask.h Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 031/282] selinux: ensure av_permissions.h is built when needed Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 032/282] tpm, tpm_tis: Do not skip reset of original interrupt vector Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 033/282] erofs: stop parsing non-compact HEAD index if clusterofs is invalid Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 034/282] erofs: fix potential overflow calculating xattr_isize Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 035/282] drm/rockchip: Drop unbalanced obj unref Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 036/282] drm/vgem: add missing mutex_destroy Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 037/282] drm/probe-helper: Cancel previous job before starting new one Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 038/282] arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 039/282] arm64: dts: renesas: r8a774c0: " Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 040/282] EDAC/skx: Fix overflows on the DRAM row address mapping arrays Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.4 041/282] ARM: dts: qcom: ipq4019: Fix the PCI I/O port range Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 042/282] ARM: dts: qcom: ipq8064: reduce pci IO size to 64K Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 043/282] ARM: dts: qcom: ipq8064: Fix the PCI I/O port range Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 044/282] media: bdisp: Add missing check for create_workqueue Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 045/282] media: uapi: add MEDIA_BUS_FMT_METADATA_FIXED media bus format Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 046/282] media: av7110: prevent underflow in write_ts_to_decoder() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 047/282] firmware: qcom_scm: Clear download bit during reboot Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 048/282] drm/msm: fix unbalanced pm_runtime_enable in adreno_gpu_{init, cleanup} Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 049/282] drm/msm/adreno: Defer enabling runpm until hw_init() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 050/282] drm/msm/adreno: drop bogus pm_runtime_set_active() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 051/282] mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 052/282] drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 053/282] regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 054/282] regulator: core: Avoid lockdep reports when resolving supplies Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 055/282] x86/apic: Fix atomic update of offset in reserve_eilvt_offset() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 056/282] media: dm1105: Fix use after free bug in dm1105_remove due to race condition Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 057/282] media: saa7134: fix use after free bug in saa7134_finidev " Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 058/282] media: rcar_fdp1: simplify error check logic at fdp_open() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 059/282] media: rcar_fdp1: fix pm_runtime_get_sync() usage count Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 060/282] media: rcar_fdp1: Make use of the helper function devm_platform_ioremap_resource() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 061/282] media: rcar_fdp1: Fix the correct variable assignments Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 062/282] media: rcar_fdp1: Fix refcount leak in probe and remove function Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 063/282] media: rc: gpio-ir-recv: Fix support for wake-up Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 064/282] regulator: stm32-pwr: fix of_iomap leak Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 065/282] x86/ioapic: Dont return 0 from arch_dynirq_lower_bound() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 066/282] arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 067/282] debugobject: Prevent init race with static objects Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 068/282] timekeeping: Split jiffies seqlock Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 069/282] tick/sched: Use tick_next_period for lockless quick check Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 070/282] tick/sched: Reduce seqcount held scope in tick_do_update_jiffies64() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 071/282] tick/sched: Optimize tick_do_update_jiffies64() further Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 072/282] tick: Get rid of tick_period Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 073/282] tick/common: Align tick period with the HZ tick Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 074/282] wifi: ath6kl: minor fix for allocation size Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 075/282] wifi: ath9k: hif_usb: fix memory leak of remain_skbs Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 076/282] wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 077/282] wifi: ath6kl: reduce WARN to dev_dbg() in callback Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 078/282] tools: bpftool: Remove invalid \ json escape Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 079/282] wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 080/282] wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 081/282] scm: fix MSG_CTRUNC setting condition for SO_PASSSEC Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 082/282] vlan: partially enable SIOCSHWTSTAMP in container Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 083/282] net/packet: annotate accesses to po->xmit Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 084/282] net/packet: convert po->origdev to an atomic flag Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 085/282] net/packet: convert po->auxdata " Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 086/282] scsi: target: iscsit: Fix TAS handling during conn cleanup Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 087/282] scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 088/282] f2fs: handle dqget error in f2fs_transfer_project_quota() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 089/282] rtlwifi: Start changing RT_TRACE into rtl_dbg Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 090/282] rtlwifi: Replace RT_TRACE with rtl_dbg Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 091/282] wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 092/282] wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 093/282] bpftool: Fix bug for long instructions in program CFG dumps Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 094/282] crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 095/282] crypto: drbg - Only fail when jent is unavailable in FIPS mode Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 096/282] scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 097/282] bpf, sockmap: fix deadlocks in the sockhash and sockmap Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 098/282] nvme: handle the persistent internal error AER Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 099/282] nvme: fix async event trace event Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 100/282] nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage" Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.4 101/282] bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 102/282] md/raid10: fix leak of r10bio->remaining for recovery Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 103/282] md/raid10: fix memleak for conf->bio_split Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 104/282] md: update the optimal I/O size on reshape Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 105/282] md/raid10: fix memleak of md thread Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 106/282] wifi: iwlwifi: make the loop for card preparation effective Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 107/282] wifi: iwlwifi: mvm: check firmware response size Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 108/282] ixgbe: Allow flow hash to be set via ethtool Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 109/282] ixgbe: Enable setting RSS table to default values Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 110/282] bpf: Dont EFAULT for getsockopt with optval=NULL Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 111/282] netfilter: nf_tables: dont write table validation state without mutex Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 112/282] ipv4: Fix potential uninit variable access bug in __ip_make_skb() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 113/282] Revert "Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work" Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 114/282] netlink: Use copy_to_user() for optval in netlink_getsockopt() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 115/282] net: amd: Fix link leak when verifying config failed Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 116/282] tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 117/282] pstore: Revert pmsg_lock back to a normal mutex Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 118/282] usb: host: xhci-rcar: remove leftover quirk handling Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 119/282] fpga: bridge: fix kernel-doc parameter description Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 120/282] iio: light: max44009: add missing OF device matching Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 121/282] spi: imx/fsl-lpspi: Convert to GPIO descriptors Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 122/282] spi: imx: enable runtime pm support Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 123/282] spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 124/282] spi: imx: Dont skip cleanup in removes error path Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 125/282] usb: gadget: udc: renesas_usb3: Fix use after free bug in renesas_usb3_remove due to race condition Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 126/282] PCI: imx6: Install the fault handler only on compatible match Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 127/282] genirq: Add IRQF_NO_AUTOEN for request_irq/nmi() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 128/282] ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 129/282] ASoC: es8316: Handle optional IRQ assignment Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 130/282] linux/vt_buffer.h: allow either builtin or modular for macros Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 131/282] spi: qup: Dont skip cleanup in removes error path Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 132/282] spi: fsl-spi: Fix CPM/QE mode Litte Endian Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 133/282] vmci_host: fix a race condition in vmci_host_poll() causing GPF Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 134/282] of: Fix modalias string generation Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 135/282] ia64: mm/contig: fix section mismatch warning/error Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 136/282] ia64: salinfo: placate defined-but-not-used warning Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 137/282] scripts/gdb: bail early if there are no clocks Greg Kroah-Hartman
2023-05-15 16:28 ` Greg Kroah-Hartman [this message]
2023-05-15 16:28 ` [PATCH 5.4 139/282] scripts/gdb: bail early if there are no generic PD Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 140/282] mtd: spi-nor: cadence-quadspi: Make driver independent of flash geometry Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 141/282] mtd: spi-nor: cadence-quadspi: Provide a way to disable DAC mode Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 142/282] mtd: spi-nor: cadence-quadspi: Dont initialize rx_dma_complete on failure Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 143/282] mtd: spi-nor: cadence-quadspi: Handle probe deferral while requesting DMA channel Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 144/282] spi: cadence-quadspi: fix suspend-resume implementations Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 145/282] uapi/linux/const.h: prefer ISO-friendly __typeof__ Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 146/282] sh: sq: Fix incorrect element size for allocating bitmap buffer Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 147/282] usb: chipidea: fix missing goto in `ci_hdrc_probe` Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 148/282] usb: mtu3: fix kernel panic at qmu transfer done irq handler Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 149/282] firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 150/282] tty: serial: fsl_lpuart: adjust buffer length to the intended size Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 151/282] serial: 8250: Add missing wakeup event reporting Greg Kroah-Hartman
2023-05-16  3:11   ` Florian Fainelli
2023-05-16  3:21     ` Florian Fainelli
2023-05-15 16:28 ` [PATCH 5.4 152/282] staging: rtl8192e: Fix W_DISABLE# does not work after stop/start Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 153/282] spmi: Add a check for remove callback when removing a SPMI driver Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 154/282] macintosh/windfarm_smu_sat: Add missing of_node_put() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 155/282] powerpc/mpc512x: fix resource printk format warning Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 156/282] powerpc/wii: fix resource printk format warnings Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 157/282] powerpc/sysdev/tsi108: " Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 158/282] macintosh: via-pmu-led: requires ATA to be set Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 159/282] powerpc/rtas: use memmove for potentially overlapping buffer copy Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 160/282] perf/core: Fix hardlockup failure caused by perf throttle Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.4 161/282] RDMA/siw: Fix potential page_array out of range access Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 162/282] RDMA/rdmavt: Delete unnecessary NULL check Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 163/282] rtc: omap: include header for omap_rtc_power_off_program prototype Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 164/282] RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 165/282] rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 166/282] power: supply: generic-adc-battery: fix unit scaling Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 167/282] clk: add missing of_node_put() in "assigned-clocks" property parsing Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 168/282] RDMA/siw: Remove namespace check from siw_netdev_event() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 169/282] IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 170/282] NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 171/282] firmware: raspberrypi: Keep count of all consumers Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 172/282] firmware: raspberrypi: Introduce devm_rpi_firmware_get() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 173/282] input: raspberrypi-ts: Release firmware handle when not needed Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 174/282] Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 175/282] SUNRPC: remove the maximum number of retries in call_bind_status Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 176/282] RDMA/mlx5: Use correct device num_ports when modify DC Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 177/282] clocksource/drivers/davinci: Avoid trailing \n hidden in pr_fmt() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 178/282] clocksource: davinci: axe a pointless __GFP_NOFAIL Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 179/282] clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when init fails Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 180/282] openrisc: Properly store r31 to pt_regs on unhandled exceptions Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 181/282] ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 182/282] leds: TI_LMU_COMMON: select REGMAP instead of depending on it Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 183/282] dmaengine: mv_xor_v2: Fix an error code Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 184/282] pwm: mtk-disp: Dont check the return code of pwmchip_remove() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 185/282] pwm: mtk-disp: Adjust the clocks to avoid them mismatch Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 186/282] pwm: mtk-disp: Disable shadow registers before setting backlight values Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 187/282] phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and ulpi_port Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 188/282] dmaengine: dw-edma: Fix to change for continuous transfer Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 189/282] dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 190/282] dmaengine: at_xdmac: do not enable all cyclic channels Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 191/282] afs: Fix updating of i_size with dv jump from server Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 192/282] parisc: Fix argument pointer in real64_call_asm() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 193/282] nilfs2: do not write dirty data after degenerating to read-only Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 194/282] nilfs2: fix infinite loop in nilfs_mdt_get_block() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 195/282] md/raid10: fix null-ptr-deref in raid10_sync_request Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 196/282] mailbox: zynqmp: Fix IPI isr handling Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 197/282] mailbox: zynqmp: Fix typo in IPI documentation Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 198/282] wifi: rtl8xxxu: RTL8192EU always needs full init Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 199/282] clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 200/282] scripts/gdb: fix lx-timerlist for Python3 Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 201/282] btrfs: scrub: reject unsupported scrub flags Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 202/282] s390/dasd: fix hanging blockdevice after request requeue Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 203/282] dm clone: call kmem_cache_destroy() in dm_clone_init() error path Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 204/282] dm integrity: call kmem_cache_destroy() in dm_integrity_init() " Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 205/282] dm flakey: fix a crash with invalid table line Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 206/282] dm ioctl: fix nested locking in table_clear() to remove deadlock concern Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 207/282] perf auxtrace: Fix address filter entire kernel size Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 208/282] perf intel-pt: Fix CYC timestamps after standalone CBR Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 209/282] debugobject: Ensure pool refill (again) Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 210/282] netfilter: nf_tables: deactivate anonymous set from preparation phase Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 211/282] nohz: Add TICK_DEP_BIT_RCU Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 212/282] tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 213/282] mailbox: zynq: Switch to flexible array to simplify code Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 214/282] mailbox: zynqmp: Fix counts of child nodes Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 215/282] dm verity: skip redundant verity_handle_err() on I/O errors Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 216/282] dm verity: fix error handling for check_at_most_once on FEC Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 217/282] crypto: inside-secure - irq balance Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 218/282] crypto: safexcel - Cleanup ring IRQ workqueues on load failure Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 219/282] kernel/relay.c: fix read_pos error when multiple readers Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 220/282] relayfs: fix out-of-bounds access in relay_file_read Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.4 221/282] net/ncsi: clear Tx enable mode when handling a Config required AEN Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 222/282] net/sched: cls_api: remove block_cb from driver_list before freeing Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 223/282] sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 224/282] net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 225/282] writeback: fix call of incorrect macro Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 226/282] net/sched: act_mirred: Add carrier check Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 227/282] rxrpc: Fix hard call timeout units Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 228/282] ionic: remove noise from ethtool rxnfc error msg Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 229/282] af_packet: Dont send zero-byte data in packet_sendmsg_spkt() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 230/282] drm/amdgpu: add a missing lock for AMDGPU_SCHED Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 231/282] ALSA: caiaq: input: Add error handling for unsupported input methods in `snd_usb_caiaq_input_init` Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 232/282] net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 233/282] virtio_net: split free_unused_bufs() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 234/282] virtio_net: suppress cpu stall when free_unused_bufs Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 235/282] net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() Greg Kroah-Hartman
2023-05-16  3:12   ` Florian Fainelli
2023-05-15 16:30 ` [PATCH 5.4 236/282] perf vendor events power9: Remove UTF-8 characters from JSON files Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 237/282] perf map: Delete two variable initialisations before null pointer checks in sort__sym_from_cmp() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 238/282] perf symbols: Fix return incorrect build_id size in elf_read_build_id() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 239/282] btrfs: fix btrfs_prev_leaf() to not return the same key twice Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 240/282] btrfs: dont free qgroup space unless specified Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 241/282] btrfs: print-tree: parent bytenr must be aligned to sector size Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 242/282] cifs: fix pcchunk length type in smb2_copychunk_range Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 243/282] platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 244/282] inotify: Avoid reporting event with invalid wd Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 245/282] sh: math-emu: fix macro redefined warning Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 246/282] sh: init: use OF_EARLY_FLATTREE for early init Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 247/282] sh: nmi_debug: fix return value of __setup handler Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 248/282] remoteproc: stm32: Call of_node_put() on iteration error Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 249/282] remoteproc: st: " Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 250/282] ARM: dts: exynos: fix WM8960 clock name in Itop Elite Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 251/282] ARM: dts: s5pv210: correct MIPI CSIS clock name Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 252/282] f2fs: fix potential corruption when moving a directory Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 253/282] drm/panel: otm8009a: Set backlight parent to panel device Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 254/282] drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 255/282] drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx ras Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 256/282] drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 257/282] HID: wacom: Set a default resolution for older tablets Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 258/282] HID: wacom: insert timestamp to packed Bluetooth (BT) events Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 259/282] ext4: fix WARNING in mb_find_extent Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 260/282] ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 261/282] ext4: fix data races when using cached status extents Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 262/282] ext4: improve error recovery code paths in __ext4_remount() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 263/282] ext4: fix deadlock when converting an inline directory in nojournal mode Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 264/282] ext4: add bounds checking in get_max_inline_xattr_value_size() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 265/282] ext4: bail out of ext4_xattr_ibody_get() fails for any reason Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 266/282] ext4: remove a BUG_ON in ext4_mb_release_group_pa() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 267/282] ext4: fix invalid free tracking in ext4_xattr_move_to_block() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 268/282] tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 269/282] serial: 8250: Fix serial8250_tx_empty() race with DMA Tx Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 270/282] drbd: correctly submit flush bio on barrier Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 271/282] PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 272/282] PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 273/282] printk: declare printk_deferred_{enter,safe}() in include/linux/printk.h Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 274/282] PM: domains: Restore comment indentation for generic_pm_domain.child_links Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 275/282] spi: imx: fix runtime pm support for !CONFIG_PM Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 276/282] spi: imx: fix reference leak in two imx operations Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 277/282] drm/msm: Fix double pm_runtime_disable() call Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 278/282] firmware: raspberrypi: fix possible memory leak in rpi_firmware_probe() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 279/282] drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 280/282] drm/exynos: move to use request_irq by IRQF_NO_AUTOEN flag Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.4 281/282] mm/page_alloc: fix potential deadlock on zonelist_update_seq seqlock Greg Kroah-Hartman
2023-05-15 16:31 ` [PATCH 5.4 282/282] drm/amd/display: Fix hang when skipping modeset Greg Kroah-Hartman
2023-05-15 20:09 ` [PATCH 5.4 000/282] 5.4.243-rc1 review Chris Paterson
2023-05-16  1:32 ` Shuah Khan
2023-05-16  9:12 ` Sudip Mukherjee (Codethink)
2023-05-16 11:20 ` Harshit Mogalapalli
2023-05-16 19:10 ` Naresh Kamboju
2023-05-17  3:52 ` Guenter Roeck
2023-05-17  8:25   ` Greg Kroah-Hartman
2023-05-17  8:26     ` Greg Kroah-Hartman
2023-05-17  8:58       ` Greg Kroah-Hartman
2023-05-17  7:55 ` Jon Hunter

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20230515161726.355765660@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=keescook@chromium.org \
    --cc=kieran.bingham@ideasonboard.com \
    --cc=patches@lists.linux.dev \
    --cc=rafael.j.wysocki@intel.com \
    --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