Message ID | 20210112191214.1264793-1-natechancellor@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 0a6d3038d914b51d6860f23ea2b508590e8340de |
Headers | show |
Series | dmaengine: qcom: Always inline gpi_update_reg | expand |
On 12-01-21, 12:12, Nathan Chancellor wrote: > 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. Applied, thanks
Hello: This patch was applied to qcom/linux.git (refs/heads/for-next): On Tue, 12 Jan 2021 12:12:14 -0700 you wrote: > 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 > > [...] Here is the summary with links: - dmaengine: qcom: Always inline gpi_update_reg https://git.kernel.org/qcom/c/0a6d3038d914 You are awesome, thank you! -- Deet-doot-dot, I am a bot. https://korg.docs.kernel.org/patchwork/pwbot.html
diff --git a/drivers/dma/qcom/gpi.c b/drivers/dma/qcom/gpi.c index 1a0bf6b0567a..e48eb397f433 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;