Patch "ACPI: HMAT: Fix initiator registration for single-initiator systems" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    ACPI: HMAT: Fix initiator registration for single-initiator systems

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     acpi-hmat-fix-initiator-registration-for-single-init.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit b35304e373e1b6d6edd8ee8c41175971e9936914
Author: Vishal Verma <vishal.l.verma@xxxxxxxxx>
Date:   Wed Nov 16 16:37:37 2022 -0700

    ACPI: HMAT: Fix initiator registration for single-initiator systems
    
    [ Upstream commit 48d4180939e12c4bd2846f984436d895bb9699ed ]
    
    In a system with a single initiator node, and one or more memory-only
    'target' nodes, the memory-only node(s) would fail to register their
    initiator node correctly. i.e. in sysfs:
    
      # ls /sys/devices/system/node/node0/access0/targets/
      node0
    
    Where as the correct behavior should be:
    
      # ls /sys/devices/system/node/node0/access0/targets/
      node0 node1
    
    This happened because hmat_register_target_initiators() uses list_sort()
    to sort the initiator list, but the sort comparision function
    (initiator_cmp()) is overloaded to also set the node mask's bits.
    
    In a system with a single initiator, the list is singular, and list_sort
    elides the comparision helper call. Thus the node mask never gets set,
    and the subsequent search for the best initiator comes up empty.
    
    Add a new helper to consume the sorted initiator list, and generate the
    nodemask, decoupling it from the overloaded initiator_cmp() comparision
    callback. This prevents the singular list corner case naturally, and
    makes the code easier to follow as well.
    
    Cc: <stable@xxxxxxxxxxxxxxx>
    Cc: Rafael J. Wysocki <rafael@xxxxxxxxxx>
    Cc: Liu Shixin <liushixin2@xxxxxxxxxx>
    Cc: Dan Williams <dan.j.williams@xxxxxxxxx>
    Cc: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx>
    Reported-by: Chris Piper <chris.d.piper@xxxxxxxxx>
    Signed-off-by: Vishal Verma <vishal.l.verma@xxxxxxxxx>
    Acked-by: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Acked-by: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20221116-acpi_hmat_fix-v2-2-3712569be691@xxxxxxxxx
    Signed-off-by: Dan Williams <dan.j.williams@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/acpi/numa/hmat.c b/drivers/acpi/numa/hmat.c
index fca69a726360..b42653707fdc 100644
--- a/drivers/acpi/numa/hmat.c
+++ b/drivers/acpi/numa/hmat.c
@@ -563,17 +563,26 @@ static int initiator_cmp(void *priv, const struct list_head *a,
 {
 	struct memory_initiator *ia;
 	struct memory_initiator *ib;
-	unsigned long *p_nodes = priv;
 
 	ia = list_entry(a, struct memory_initiator, node);
 	ib = list_entry(b, struct memory_initiator, node);
 
-	set_bit(ia->processor_pxm, p_nodes);
-	set_bit(ib->processor_pxm, p_nodes);
-
 	return ia->processor_pxm - ib->processor_pxm;
 }
 
+static int initiators_to_nodemask(unsigned long *p_nodes)
+{
+	struct memory_initiator *initiator;
+
+	if (list_empty(&initiators))
+		return -ENXIO;
+
+	list_for_each_entry(initiator, &initiators, node)
+		set_bit(initiator->processor_pxm, p_nodes);
+
+	return 0;
+}
+
 static void hmat_register_target_initiators(struct memory_target *target)
 {
 	static DECLARE_BITMAP(p_nodes, MAX_NUMNODES);
@@ -610,7 +619,10 @@ static void hmat_register_target_initiators(struct memory_target *target)
 	 * initiators.
 	 */
 	bitmap_zero(p_nodes, MAX_NUMNODES);
-	list_sort(p_nodes, &initiators, initiator_cmp);
+	list_sort(NULL, &initiators, initiator_cmp);
+	if (initiators_to_nodemask(p_nodes) < 0)
+		return;
+
 	if (!access0done) {
 		for (i = WRITE_LATENCY; i <= READ_BANDWIDTH; i++) {
 			loc = localities_types[i];
@@ -644,7 +656,9 @@ static void hmat_register_target_initiators(struct memory_target *target)
 
 	/* Access 1 ignores Generic Initiators */
 	bitmap_zero(p_nodes, MAX_NUMNODES);
-	list_sort(p_nodes, &initiators, initiator_cmp);
+	if (initiators_to_nodemask(p_nodes) < 0)
+		return;
+
 	for (i = WRITE_LATENCY; i <= READ_BANDWIDTH; i++) {
 		loc = localities_types[i];
 		if (!loc)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux