diff options
author | Stafford Horne <shorne@gmail.com> | 2020-09-03 05:48:58 +0900 |
---|---|---|
committer | Stafford Horne <shorne@gmail.com> | 2020-09-07 21:02:15 +0900 |
commit | 3ae90d764093dfcd6ab8ab6875377302892c87d4 (patch) | |
tree | 45adf1a45a989c867cd9c392359591832cbaed3c /arch/arm/common | |
parent | 141d170495beb4772fad653312364dac6f4716f5 (diff) | |
download | linux-3ae90d764093dfcd6ab8ab6875377302892c87d4.tar.bz2 |
openrisc: Fix cache API compile issue when not inlining
I found this when compiling a kbuild random config with GCC 11. The
config enables CONFIG_DEBUG_SECTION_MISMATCH, which sets CFLAGS
-fno-inline-functions-called-once. This causes the call to cache_loop in
cache.c to not be inlined causing the below compile error.
In file included from arch/openrisc/mm/cache.c:13:
arch/openrisc/mm/cache.c: In function 'cache_loop':
./arch/openrisc/include/asm/spr.h:16:27: warning: 'asm' operand 0 probably does not match constraints
16 | #define mtspr(_spr, _val) __asm__ __volatile__ ( \
| ^~~~~~~
arch/openrisc/mm/cache.c:25:3: note: in expansion of macro 'mtspr'
25 | mtspr(reg, line);
| ^~~~~
./arch/openrisc/include/asm/spr.h:16:27: error: impossible constraint in 'asm'
16 | #define mtspr(_spr, _val) __asm__ __volatile__ ( \
| ^~~~~~~
arch/openrisc/mm/cache.c:25:3: note: in expansion of macro 'mtspr'
25 | mtspr(reg, line);
| ^~~~~
make[1]: *** [scripts/Makefile.build:283: arch/openrisc/mm/cache.o] Error 1
The asm constraint "K" requires a immediate constant argument to mtspr,
however because of no inlining a register argument is passed causing a
failure. Fix this by using __always_inline.
Link: https://lore.kernel.org/lkml/202008200453.ohnhqkjQ%25lkp@intel.com/
Signed-off-by: Stafford Horne <shorne@gmail.com>
Diffstat (limited to 'arch/arm/common')
0 files changed, 0 insertions, 0 deletions