Re: [PATCH v2] block: Change extern inline to static inline
From: Jens Axboe <axboe@kernel.dk>
Date: 2016-11-18 14:44:59
From: Jens Axboe <axboe@kernel.dk>
Date: 2016-11-18 14:44:59
On 11/18/2016 07:16 AM, Tobias Klauser wrote:
With compilers which follow the C99 standard (like modern versions of
gcc and clang), "extern inline" does the opposite thing from older
versions of gcc (emits code for an externally linkable version of the
inline function).
"static inline" does the intended behavior in all cases instead.
Description taken from commit 6d91857d4826 ("staging, rtl8192e,
LLVMLinux: Change extern inline to static inline").
This also fixes the following GCC warning when building with CONFIG_PM
disabled:
./include/linux/blkdev.h:1143:20: warning: no previous prototype for 'blk_set_runtime_active' [-Wmissing-prototypes]Applied, thanks. -- Jens Axboe