Patch "dmaengine: qcom: Always inline gpi_update_reg" has been added to the 5.11-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

    dmaengine: qcom: Always inline gpi_update_reg

to the 5.11-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:
     dmaengine-qcom-always-inline-gpi_update_reg.patch
and it can be found in the queue-5.11 subdirectory.

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



commit 50541020f819f61f4b16081ef00f49a36b6e8aeb
Author: Nathan Chancellor <natechancellor@xxxxxxxxx>
Date:   Tue Jan 12 12:12:14 2021 -0700

    dmaengine: qcom: Always inline gpi_update_reg
    
    [ Upstream commit 0a6d3038d914b51d6860f23ea2b508590e8340de ]
    
    When building with CONFIG_UBSAN_UNSIGNED_OVERFLOW, clang decides not to
    inline gpi_update_reg, which causes a linkage failure around __bad_mask:
    
    ld.lld: error: undefined symbol: __bad_mask
    >>> referenced by bitfield.h:119 (include/linux/bitfield.h:119)
    >>>               dma/qcom/gpi.o:(gpi_update_reg) in archive drivers/built-in.a
    >>> referenced by bitfield.h:119 (include/linux/bitfield.h:119)
    >>>               dma/qcom/gpi.o:(gpi_update_reg) in archive drivers/built-in.a
    
    If gpi_update_reg is not inlined, the mask value will not be known at
    compile time so the check in field_multiplier stays in the final
    object file, causing the above linkage failure. Always inline
    gpi_update_reg so that this check can never fail.
    
    Fixes: 5d0c3533a19f ("dmaengine: qcom: Add GPI dma driver")
    Link: https://github.com/ClangBuiltLinux/linux/issues/1243
    Signed-off-by: Nathan Chancellor <natechancellor@xxxxxxxxx>
    Link: https://lore.kernel.org/r/20210112191214.1264793-1-natechancellor@xxxxxxxxx
    Signed-off-by: Vinod Koul <vkoul@xxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/dma/qcom/gpi.c b/drivers/dma/qcom/gpi.c
index 1a0bf6b0567a5..e48eb397f433d 100644
--- a/drivers/dma/qcom/gpi.c
+++ b/drivers/dma/qcom/gpi.c
@@ -584,7 +584,7 @@ static inline void gpi_write_reg_field(struct gpii *gpii, void __iomem *addr,
 	gpi_write_reg(gpii, addr, val);
 }
 
-static inline void
+static __always_inline void
 gpi_update_reg(struct gpii *gpii, u32 offset, u32 mask, u32 val)
 {
 	void __iomem *addr = gpii->regs + offset;



[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