Patch "thermal: int340x: fix build on 32-bit targets" has been added to the 5.15-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

    thermal: int340x: fix build on 32-bit targets

to the 5.15-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:
     thermal-int340x-fix-build-on-32-bit-targets.patch
and it can be found in the queue-5.15 subdirectory.

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



commit 94d2aa48b08ea50685724dce78a1c134fcce0f44
Author: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
Date:   Fri Nov 12 10:56:25 2021 -0800

    thermal: int340x: fix build on 32-bit targets
    
    [ Upstream commit d9c8e52ff9e84ff1a406330f9ea4de7c5eb40282 ]
    
    Commit aeb58c860dc5 ("thermal/drivers/int340x: processor_thermal: Suppot
    64 bit RFIM responses") started using 'readq()' to read 64-bit status
    responses from the int340x hardware.
    
    That's all fine and good, but on 32-bit targets a 64-bit 'readq()' is
    ambiguous, since it's no longer an atomic access.  Some hardware might
    require 64-bit accesses, and other hardware might want low word first or
    high word first.
    
    It's quite likely that the driver isn't relevant in a 32-bit environment
    any more, and there's a patch floating around to just make it depend on
    X86_64, but let's make it buildable on x86-32 anyway.
    
    The driver previously just read the low 32 bits, so the hardware
    certainly is ok with 32-bit reads, and in a little-endian environment
    the low word first model is the natural one.
    
    So just add the include for the 'io-64-nonatomic-lo-hi.h' version.
    
    Fixes: aeb58c860dc5 ("thermal/drivers/int340x: processor_thermal: Suppot 64 bit RFIM responses")
    Reported-by: Jakub Kicinski <kuba@xxxxxxxxxx>
    Cc: Srinivas Pandruvada <srinivas.pandruvada@xxxxxxxxxxxxxxx>
    Cc: Rafael J. Wysocki <rafael.j.wysocki@xxxxxxxxx>
    Signed-off-by: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.c b/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.c
index 59e93b04f0a9e..66cd0190bc035 100644
--- a/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.c
+++ b/drivers/thermal/intel/int340x_thermal/processor_thermal_mbox.c
@@ -7,6 +7,7 @@
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/pci.h>
+#include <linux/io-64-nonatomic-lo-hi.h>
 #include "processor_thermal_device.h"
 
 #define MBOX_CMD_WORKLOAD_TYPE_READ	0x0E



[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