Patch "RISC-V: fix funct4 definition for c.jalr in parse_asm.h" has been added to the 5.10-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

    RISC-V: fix funct4 definition for c.jalr in parse_asm.h

to the 5.10-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:
     risc-v-fix-funct4-definition-for-c.jalr-in-parse_asm.patch
and it can be found in the queue-5.10 subdirectory.

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



commit c5ffe270e253e6cf09fa3b8f7393a1cd22f21f37
Author: Heiko Stuebner <heiko.stuebner@xxxxxxxx>
Date:   Fri Dec 23 23:13:21 2022 +0100

    RISC-V: fix funct4 definition for c.jalr in parse_asm.h
    
    [ Upstream commit a3775634f6da23f5511d0282d7e792cf606e5f3b ]
    
    The opcode definition for c.jalr is
        c.jalr c_rs1_n0  1..0=2 15..13=4 12=1 6..2=0
    
    This means funct4 consisting of bit [15:12] is 1001b, so the value is 0x9.
    
    Fixes: edde5584c7ab ("riscv: Add SW single-step support for KDB")
    Reported-by: Andrew Jones <ajones@xxxxxxxxxxxxxxxx>
    Reviewed-by: Andrew Jones <ajones@xxxxxxxxxxxxxxxx>
    Reviewed-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@xxxxxxxxxxxxxx>
    Signed-off-by: Heiko Stuebner <heiko.stuebner@xxxxxxxx>
    Link: https://lore.kernel.org/r/20221223221332.4127602-2-heiko@xxxxxxxxx
    Signed-off-by: Palmer Dabbelt <palmer@xxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/riscv/include/asm/parse_asm.h b/arch/riscv/include/asm/parse_asm.h
index f36368de839f5..7fee806805c1b 100644
--- a/arch/riscv/include/asm/parse_asm.h
+++ b/arch/riscv/include/asm/parse_asm.h
@@ -125,7 +125,7 @@
 #define FUNCT3_C_J		0xa000
 #define FUNCT3_C_JAL		0x2000
 #define FUNCT4_C_JR		0x8000
-#define FUNCT4_C_JALR		0xf000
+#define FUNCT4_C_JALR		0x9000
 
 #define FUNCT12_SRET		0x10200000
 



[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