2005-04-17 05:20:36 +07:00
|
|
|
#ifndef _LINUX_UML_INIT_H
|
|
|
|
#define _LINUX_UML_INIT_H
|
|
|
|
|
|
|
|
/* These macros are used to mark some functions or
|
|
|
|
* initialized data (doesn't apply to uninitialized data)
|
|
|
|
* as `initialization' functions. The kernel can take this
|
|
|
|
* as hint that the function is used only during the initialization
|
|
|
|
* phase and free up used memory resources after
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
* For functions:
|
|
|
|
*
|
|
|
|
* You should add __init immediately before the function name, like:
|
|
|
|
*
|
|
|
|
* static void __init initme(int x, int y)
|
|
|
|
* {
|
|
|
|
* extern int z; z = x * y;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* If the function has a prototype somewhere, you can also add
|
|
|
|
* __init between closing brace of the prototype and semicolon:
|
|
|
|
*
|
|
|
|
* extern int initialize_foobar_device(int, int, int) __init;
|
|
|
|
*
|
|
|
|
* For initialized data:
|
|
|
|
* You should insert __initdata between the variable name and equal
|
|
|
|
* sign followed by value, e.g.:
|
|
|
|
*
|
|
|
|
* static int init_variable __initdata = 0;
|
2009-06-17 05:34:19 +07:00
|
|
|
* static const char linux_logo[] __initconst = { 0x32, 0x36, ... };
|
2005-04-17 05:20:36 +07:00
|
|
|
*
|
|
|
|
* Don't forget to initialize data not at file scope, i.e. within a function,
|
|
|
|
* as gcc otherwise puts the data into the bss section and not into the init
|
|
|
|
* section.
|
|
|
|
*
|
|
|
|
* Also note, that this data cannot be "const".
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LINUX_INIT_H
|
|
|
|
typedef int (*initcall_t)(void);
|
|
|
|
typedef void (*exitcall_t)(void);
|
|
|
|
|
linux/compiler.h: Split into compiler.h and compiler_types.h
linux/compiler.h is included indirectly by linux/types.h via
uapi/linux/types.h -> uapi/linux/posix_types.h -> linux/stddef.h
-> uapi/linux/stddef.h and is needed to provide a proper definition of
offsetof.
Unfortunately, compiler.h requires a definition of
smp_read_barrier_depends() for defining lockless_dereference() and soon
for defining READ_ONCE(), which means that all
users of READ_ONCE() will need to include asm/barrier.h to avoid splats
such as:
In file included from include/uapi/linux/stddef.h:1:0,
from include/linux/stddef.h:4,
from arch/h8300/kernel/asm-offsets.c:11:
include/linux/list.h: In function 'list_empty':
>> include/linux/compiler.h:343:2: error: implicit declaration of function 'smp_read_barrier_depends' [-Werror=implicit-function-declaration]
smp_read_barrier_depends(); /* Enforce dependency ordering from x */ \
^
A better alternative is to include asm/barrier.h in linux/compiler.h,
but this requires a type definition for "bool" on some architectures
(e.g. x86), which is defined later by linux/types.h. Type "bool" is also
used directly in linux/compiler.h, so the whole thing is pretty fragile.
This patch splits compiler.h in two: compiler_types.h contains type
annotations, definitions and the compiler-specific parts, whereas
compiler.h #includes compiler-types.h and additionally defines macros
such as {READ,WRITE.ACCESS}_ONCE().
uapi/linux/stddef.h and linux/linkage.h are then moved over to include
linux/compiler_types.h, which fixes the build for h8 and blackfin.
Signed-off-by: Will Deacon <will.deacon@arm.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1508840570-22169-2-git-send-email-will.deacon@arm.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-10-24 17:22:46 +07:00
|
|
|
#include <linux/compiler_types.h>
|
2015-06-01 03:15:58 +07:00
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
/* These are for everybody (although not all archs will actually
|
|
|
|
discard it in modules) */
|
2008-01-25 04:16:20 +07:00
|
|
|
#define __init __section(.init.text)
|
|
|
|
#define __initdata __section(.init.data)
|
|
|
|
#define __exitdata __section(.exit.data)
|
|
|
|
#define __exit_call __used __section(.exitcall.exit)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#ifdef MODULE
|
2008-01-25 04:16:20 +07:00
|
|
|
#define __exit __section(.exit.text)
|
2005-04-17 05:20:36 +07:00
|
|
|
#else
|
2008-01-25 04:16:20 +07:00
|
|
|
#define __exit __used __section(.exit.text)
|
2005-04-17 05:20:36 +07:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef MODULE
|
|
|
|
struct uml_param {
|
|
|
|
const char *str;
|
|
|
|
int (*setup_func)(char *, int *);
|
|
|
|
};
|
|
|
|
|
|
|
|
extern initcall_t __uml_initcall_start, __uml_initcall_end;
|
|
|
|
extern initcall_t __uml_postsetup_start, __uml_postsetup_end;
|
|
|
|
extern const char *__uml_help_start, *__uml_help_end;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __uml_initcall(fn) \
|
|
|
|
static initcall_t __uml_initcall_##fn __uml_init_call = fn
|
|
|
|
|
|
|
|
#define __uml_exitcall(fn) \
|
|
|
|
static exitcall_t __uml_exitcall_##fn __uml_exit_call = fn
|
|
|
|
|
|
|
|
extern struct uml_param __uml_setup_start, __uml_setup_end;
|
|
|
|
|
|
|
|
#define __uml_postsetup(fn) \
|
|
|
|
static initcall_t __uml_postsetup_##fn __uml_postsetup_call = fn
|
|
|
|
|
|
|
|
#define __non_empty_string(dummyname,string) \
|
|
|
|
struct __uml_non_empty_string_struct_##dummyname \
|
|
|
|
{ \
|
|
|
|
char _string[sizeof(string)-2]; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef MODULE
|
|
|
|
#define __uml_setup(str, fn, help...) \
|
|
|
|
__non_empty_string(fn ##_setup, str); \
|
|
|
|
__uml_help(fn, help); \
|
|
|
|
static char __uml_setup_str_##fn[] __initdata = str; \
|
|
|
|
static struct uml_param __uml_setup_##fn __uml_init_setup = { __uml_setup_str_##fn, fn }
|
|
|
|
#else
|
|
|
|
#define __uml_setup(str, fn, help...) \
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define __uml_help(fn, help...) \
|
|
|
|
__non_empty_string(fn ##__help, help); \
|
|
|
|
static char __uml_help_str_##fn[] __initdata = help; \
|
|
|
|
static const char *__uml_help_##fn __uml_setup_help = __uml_help_str_##fn
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mark functions and data as being only used at initialization
|
|
|
|
* or exit time.
|
|
|
|
*/
|
2008-01-25 04:16:20 +07:00
|
|
|
#define __uml_init_setup __used __section(.uml.setup.init)
|
|
|
|
#define __uml_setup_help __used __section(.uml.help.init)
|
|
|
|
#define __uml_init_call __used __section(.uml.initcall.init)
|
|
|
|
#define __uml_postsetup_call __used __section(.uml.postsetup.init)
|
|
|
|
#define __uml_exit_call __used __section(.uml.exitcall.exit)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2015-06-01 00:50:57 +07:00
|
|
|
#ifdef __UM_HOST__
|
2005-04-17 05:20:36 +07:00
|
|
|
|
2005-09-04 05:57:45 +07:00
|
|
|
#define __define_initcall(level,fn) \
|
2008-01-25 04:16:20 +07:00
|
|
|
static initcall_t __initcall_##fn __used \
|
2005-09-04 05:57:45 +07:00
|
|
|
__attribute__((__section__(".initcall" level ".init"))) = fn
|
|
|
|
|
|
|
|
/* Userspace initcalls shouldn't depend on anything in the kernel, so we'll
|
|
|
|
* make them run first.
|
|
|
|
*/
|
|
|
|
#define __initcall(fn) __define_initcall("1", fn)
|
|
|
|
|
2005-04-17 05:20:36 +07:00
|
|
|
#define __exitcall(fn) static exitcall_t __exitcall_##fn __exit_call = fn
|
|
|
|
|
2008-01-25 04:16:20 +07:00
|
|
|
#define __init_call __used __section(.initcall.init)
|
2005-04-17 05:20:36 +07:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _LINUX_UML_INIT_H */
|