2017-11-01 15:07:57 +01:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2022-01-19 18:08:16 -08:00
|
|
|
/*
|
|
|
|
|
* NOTE:
|
|
|
|
|
*
|
|
|
|
|
* This header has combined a lot of unrelated to each other stuff.
|
|
|
|
|
* The process of splitting its content is in progress while keeping
|
|
|
|
|
* backward compatibility. That's why it's highly recommended NOT to
|
|
|
|
|
* include this header inside another header file, especially under
|
|
|
|
|
* generic or architectural include/ directory.
|
|
|
|
|
*/
|
2005-04-16 15:20:36 -07:00
|
|
|
#ifndef _LINUX_KERNEL_H
|
|
|
|
|
#define _LINUX_KERNEL_H
|
|
|
|
|
|
2021-08-02 23:40:32 +03:00
|
|
|
#include <linux/stdarg.h>
|
2021-05-06 18:02:30 -07:00
|
|
|
#include <linux/align.h>
|
2023-10-03 14:59:53 +03:00
|
|
|
#include <linux/array_size.h>
|
2019-03-07 16:27:14 -08:00
|
|
|
#include <linux/limits.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/linkage.h>
|
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
#include <linux/compiler.h>
|
2021-11-08 18:32:12 -08:00
|
|
|
#include <linux/container_of.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <linux/bitops.h>
|
2023-03-23 17:50:29 +02:00
|
|
|
#include <linux/hex.h>
|
2021-06-30 18:56:10 -07:00
|
|
|
#include <linux/kstrtox.h>
|
2006-12-08 02:37:49 -08:00
|
|
|
#include <linux/log2.h>
|
2020-12-15 20:42:48 -08:00
|
|
|
#include <linux/math.h>
|
2020-10-15 20:10:21 -07:00
|
|
|
#include <linux/minmax.h>
|
2008-07-25 01:45:24 -07:00
|
|
|
#include <linux/typecheck.h>
|
2021-06-30 18:54:59 -07:00
|
|
|
#include <linux/panic.h>
|
2010-11-15 13:37:37 -08:00
|
|
|
#include <linux/printk.h>
|
2017-07-12 14:33:04 -07:00
|
|
|
#include <linux/build_bug.h>
|
2023-08-14 19:33:43 +03:00
|
|
|
#include <linux/sprintf.h>
|
2021-01-18 15:12:20 +01:00
|
|
|
#include <linux/static_call_types.h>
|
2021-11-08 18:32:43 -08:00
|
|
|
#include <linux/instruction_pointer.h>
|
2025-03-24 12:50:25 +02:00
|
|
|
#include <linux/util_macros.h>
|
2024-02-14 19:26:32 +02:00
|
|
|
#include <linux/wordpart.h>
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
#include <asm/byteorder.h>
|
2020-12-15 20:42:48 -08:00
|
|
|
|
2012-10-13 10:46:48 +01:00
|
|
|
#include <uapi/linux/kernel.h>
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
|
#define STACK_MAGIC 0xdeadbeef
|
|
|
|
|
|
|
|
|
|
struct completion;
|
2006-01-09 20:51:37 -08:00
|
|
|
struct user;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2021-11-10 20:24:44 +00:00
|
|
|
#ifdef CONFIG_PREEMPT_VOLUNTARY_BUILD
|
2021-01-18 15:12:20 +01:00
|
|
|
|
|
|
|
|
extern int __cond_resched(void);
|
|
|
|
|
# define might_resched() __cond_resched()
|
|
|
|
|
|
2022-02-14 16:52:14 +00:00
|
|
|
#elif defined(CONFIG_PREEMPT_DYNAMIC) && defined(CONFIG_HAVE_PREEMPT_DYNAMIC_CALL)
|
2021-01-18 15:12:20 +01:00
|
|
|
|
|
|
|
|
extern int __cond_resched(void);
|
|
|
|
|
|
|
|
|
|
DECLARE_STATIC_CALL(might_resched, __cond_resched);
|
|
|
|
|
|
|
|
|
|
static __always_inline void might_resched(void)
|
|
|
|
|
{
|
2021-01-25 16:26:50 +01:00
|
|
|
static_call_mod(might_resched)();
|
2021-01-18 15:12:20 +01:00
|
|
|
}
|
|
|
|
|
|
2022-02-14 16:52:14 +00:00
|
|
|
#elif defined(CONFIG_PREEMPT_DYNAMIC) && defined(CONFIG_HAVE_PREEMPT_DYNAMIC_KEY)
|
|
|
|
|
|
|
|
|
|
extern int dynamic_might_resched(void);
|
|
|
|
|
# define might_resched() dynamic_might_resched()
|
|
|
|
|
|
2008-08-12 15:08:59 -07:00
|
|
|
#else
|
2021-01-18 15:12:20 +01:00
|
|
|
|
2008-08-12 15:08:59 -07:00
|
|
|
# define might_resched() do { } while (0)
|
2021-01-18 15:12:20 +01:00
|
|
|
|
|
|
|
|
#endif /* CONFIG_PREEMPT_* */
|
2008-08-12 15:08:59 -07:00
|
|
|
|
2011-06-08 19:31:56 +02:00
|
|
|
#ifdef CONFIG_DEBUG_ATOMIC_SLEEP
|
2021-09-23 18:54:43 +02:00
|
|
|
extern void __might_resched(const char *file, int line, unsigned int offsets);
|
2021-09-23 18:54:38 +02:00
|
|
|
extern void __might_sleep(const char *file, int line);
|
2019-01-28 17:21:52 -08:00
|
|
|
extern void __cant_sleep(const char *file, int line, int preempt_offset);
|
2020-11-18 20:48:42 +01:00
|
|
|
extern void __cant_migrate(const char *file, int line);
|
2019-01-28 17:21:52 -08:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
/**
|
|
|
|
|
* might_sleep - annotation for functions that can sleep
|
|
|
|
|
*
|
|
|
|
|
* this macro will print a stack trace if it is executed in an atomic
|
2019-08-26 22:14:23 +02:00
|
|
|
* context (spinlock, irq-handler, ...). Additional sections where blocking is
|
|
|
|
|
* not allowed can be annotated with non_block_start() and non_block_end()
|
|
|
|
|
* pairs.
|
2005-04-16 15:20:36 -07:00
|
|
|
*
|
|
|
|
|
* This is a useful debugging help to be able to catch problems early and not
|
2006-11-30 04:46:13 +01:00
|
|
|
* be bitten later when the calling function happens to sleep when it is not
|
2005-04-16 15:20:36 -07:00
|
|
|
* supposed to.
|
|
|
|
|
*/
|
2005-06-25 14:57:39 -07:00
|
|
|
# define might_sleep() \
|
2021-09-23 18:54:38 +02:00
|
|
|
do { __might_sleep(__FILE__, __LINE__); might_resched(); } while (0)
|
2019-01-28 17:21:52 -08:00
|
|
|
/**
|
|
|
|
|
* cant_sleep - annotation for functions that cannot sleep
|
|
|
|
|
*
|
|
|
|
|
* this macro will print a stack trace if it is executed with preemption enabled
|
|
|
|
|
*/
|
|
|
|
|
# define cant_sleep() \
|
|
|
|
|
do { __cant_sleep(__FILE__, __LINE__, 0); } while (0)
|
2015-02-01 12:23:32 -08:00
|
|
|
# define sched_annotate_sleep() (current->task_state_change = 0)
|
2020-11-18 20:48:42 +01:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* cant_migrate - annotation for functions that cannot migrate
|
|
|
|
|
*
|
|
|
|
|
* Will print a stack trace if executed in code which is migratable
|
|
|
|
|
*/
|
|
|
|
|
# define cant_migrate() \
|
|
|
|
|
do { \
|
|
|
|
|
if (IS_ENABLED(CONFIG_SMP)) \
|
|
|
|
|
__cant_migrate(__FILE__, __LINE__); \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
2019-08-26 22:14:23 +02:00
|
|
|
/**
|
|
|
|
|
* non_block_start - annotate the start of section where sleeping is prohibited
|
|
|
|
|
*
|
|
|
|
|
* This is on behalf of the oom reaper, specifically when it is calling the mmu
|
|
|
|
|
* notifiers. The problem is that if the notifier were to block on, for example,
|
|
|
|
|
* mutex_lock() and if the process which holds that mutex were to perform a
|
|
|
|
|
* sleeping memory allocation, the oom reaper is now blocked on completion of
|
|
|
|
|
* that memory allocation. Other blocking calls like wait_event() pose similar
|
|
|
|
|
* issues.
|
|
|
|
|
*/
|
|
|
|
|
# define non_block_start() (current->non_block_count++)
|
|
|
|
|
/**
|
|
|
|
|
* non_block_end - annotate the end of section where sleeping is prohibited
|
|
|
|
|
*
|
|
|
|
|
* Closes a section opened by non_block_start().
|
|
|
|
|
*/
|
|
|
|
|
# define non_block_end() WARN_ON(current->non_block_count-- == 0)
|
2005-06-25 14:57:39 -07:00
|
|
|
#else
|
2021-09-23 18:54:35 +02:00
|
|
|
static inline void __might_resched(const char *file, int line,
|
2021-09-23 18:54:43 +02:00
|
|
|
unsigned int offsets) { }
|
2021-09-23 18:54:38 +02:00
|
|
|
static inline void __might_sleep(const char *file, int line) { }
|
2005-06-25 14:57:39 -07:00
|
|
|
# define might_sleep() do { might_resched(); } while (0)
|
2019-01-28 17:21:52 -08:00
|
|
|
# define cant_sleep() do { } while (0)
|
2020-11-18 20:48:42 +01:00
|
|
|
# define cant_migrate() do { } while (0)
|
2014-09-24 10:18:49 +02:00
|
|
|
# define sched_annotate_sleep() do { } while (0)
|
2019-08-26 22:14:23 +02:00
|
|
|
# define non_block_start() do { } while (0)
|
|
|
|
|
# define non_block_end() do { } while (0)
|
2005-06-25 14:57:39 -07:00
|
|
|
#endif
|
|
|
|
|
|
2006-06-23 02:05:42 -07:00
|
|
|
#define might_sleep_if(cond) do { if (cond) might_sleep(); } while (0)
|
2005-06-25 14:57:39 -07:00
|
|
|
|
2013-12-12 17:12:24 -08:00
|
|
|
#if defined(CONFIG_MMU) && \
|
|
|
|
|
(defined(CONFIG_PROVE_LOCKING) || defined(CONFIG_DEBUG_ATOMIC_SLEEP))
|
2015-05-11 17:52:07 +02:00
|
|
|
#define might_fault() __might_fault(__FILE__, __LINE__)
|
|
|
|
|
void __might_fault(const char *file, int line);
|
2008-09-10 13:37:17 +02:00
|
|
|
#else
|
2013-05-26 17:32:23 +03:00
|
|
|
static inline void might_fault(void) { }
|
2008-09-10 13:37:17 +02:00
|
|
|
#endif
|
|
|
|
|
|
2016-09-13 18:37:29 +02:00
|
|
|
void do_exit(long error_code) __noreturn;
|
2011-03-22 16:34:40 -07:00
|
|
|
|
2006-05-15 09:44:06 -07:00
|
|
|
extern int core_kernel_text(unsigned long addr);
|
2005-04-16 15:20:36 -07:00
|
|
|
extern int __kernel_text_address(unsigned long addr);
|
|
|
|
|
extern int kernel_text_address(unsigned long addr);
|
2008-08-15 15:29:38 -07:00
|
|
|
extern int func_ptr_is_kernel_text(void *ptr);
|
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
extern void bust_spinlocks(int yes);
|
2015-06-30 14:57:46 -07:00
|
|
|
|
2008-02-08 04:19:31 -08:00
|
|
|
extern int root_mountflags;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2011-01-20 12:06:35 +01:00
|
|
|
extern bool early_boot_irqs_disabled;
|
|
|
|
|
|
2025-09-06 21:38:57 -07:00
|
|
|
/**
|
|
|
|
|
* enum system_states - Values used for system_state.
|
|
|
|
|
*
|
|
|
|
|
* @SYSTEM_BOOTING: %0, no init needed
|
|
|
|
|
* @SYSTEM_SCHEDULING: system is ready for scheduling; OK to use RCU
|
|
|
|
|
* @SYSTEM_FREEING_INITMEM: system is freeing all of initmem; almost running
|
|
|
|
|
* @SYSTEM_RUNNING: system is up and running
|
|
|
|
|
* @SYSTEM_HALT: system entered clean system halt state
|
|
|
|
|
* @SYSTEM_POWER_OFF: system entered shutdown/clean power off state
|
|
|
|
|
* @SYSTEM_RESTART: system entered emergency power off or normal restart
|
|
|
|
|
* @SYSTEM_SUSPEND: system entered suspend or hibernate state
|
|
|
|
|
*
|
|
|
|
|
* Note:
|
|
|
|
|
* Ordering of the states must not be changed
|
2017-05-16 20:42:47 +02:00
|
|
|
* as code checks for <, <=, >, >= STATE.
|
|
|
|
|
*/
|
2025-09-06 21:38:57 -07:00
|
|
|
enum system_states {
|
2005-04-16 15:20:36 -07:00
|
|
|
SYSTEM_BOOTING,
|
2017-05-16 20:42:47 +02:00
|
|
|
SYSTEM_SCHEDULING,
|
2021-11-05 13:40:40 -07:00
|
|
|
SYSTEM_FREEING_INITMEM,
|
2005-04-16 15:20:36 -07:00
|
|
|
SYSTEM_RUNNING,
|
|
|
|
|
SYSTEM_HALT,
|
|
|
|
|
SYSTEM_POWER_OFF,
|
|
|
|
|
SYSTEM_RESTART,
|
2018-05-25 17:54:41 +02:00
|
|
|
SYSTEM_SUSPEND,
|
2025-09-06 21:38:57 -07:00
|
|
|
};
|
|
|
|
|
extern enum system_states system_state;
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2009-03-05 10:28:45 +01:00
|
|
|
/*
|
|
|
|
|
* General tracing related utility functions - trace_printk(),
|
2009-03-05 10:35:56 -05:00
|
|
|
* tracing_on/tracing_off and tracing_start()/tracing_stop
|
|
|
|
|
*
|
|
|
|
|
* Use tracing_on/tracing_off when you want to quickly turn on or off
|
|
|
|
|
* tracing. It simply enables or disables the recording of the trace events.
|
2023-02-15 15:33:45 -07:00
|
|
|
* This also corresponds to the user space /sys/kernel/tracing/tracing_on
|
2009-03-05 10:35:56 -05:00
|
|
|
* file, which gives a means for the kernel and userspace to interact.
|
|
|
|
|
* Place a tracing_off() in the kernel where you want tracing to end.
|
|
|
|
|
* From user space, examine the trace, and then echo 1 > tracing_on
|
|
|
|
|
* to continue tracing.
|
|
|
|
|
*
|
|
|
|
|
* tracing_stop/tracing_start has slightly more overhead. It is used
|
|
|
|
|
* by things like suspend to ram where disabling the recording of the
|
|
|
|
|
* trace is not enough, but tracing must actually stop because things
|
|
|
|
|
* like calling smp_processor_id() may crash the system.
|
|
|
|
|
*
|
|
|
|
|
* Most likely, you want to use tracing_on/tracing_off.
|
2009-03-05 10:28:45 +01:00
|
|
|
*/
|
2010-04-18 19:08:41 +02:00
|
|
|
|
|
|
|
|
enum ftrace_dump_mode {
|
|
|
|
|
DUMP_NONE,
|
|
|
|
|
DUMP_ALL,
|
|
|
|
|
DUMP_ORIG,
|
2024-02-23 16:31:26 +08:00
|
|
|
DUMP_PARAM,
|
2010-04-18 19:08:41 +02:00
|
|
|
};
|
|
|
|
|
|
2009-03-05 10:28:45 +01:00
|
|
|
#ifdef CONFIG_TRACING
|
2012-03-20 12:28:29 -04:00
|
|
|
void tracing_on(void);
|
|
|
|
|
void tracing_off(void);
|
|
|
|
|
int tracing_is_on(void);
|
2013-03-06 21:45:37 -05:00
|
|
|
void tracing_snapshot(void);
|
|
|
|
|
void tracing_snapshot_alloc(void);
|
2012-03-20 12:28:29 -04:00
|
|
|
|
2009-03-05 10:28:45 +01:00
|
|
|
extern void tracing_start(void);
|
|
|
|
|
extern void tracing_stop(void);
|
|
|
|
|
|
2011-10-31 17:11:33 -07:00
|
|
|
static inline __printf(1, 2)
|
|
|
|
|
void ____trace_printk_check_format(const char *fmt, ...)
|
2009-03-06 17:21:49 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
#define __trace_printk_check_format(fmt, args...) \
|
|
|
|
|
do { \
|
|
|
|
|
if (0) \
|
|
|
|
|
____trace_printk_check_format(fmt, ##args); \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
2009-03-05 10:28:45 +01:00
|
|
|
/**
|
|
|
|
|
* trace_printk - printf formatting in the ftrace buffer
|
|
|
|
|
* @fmt: the printf format for printing
|
|
|
|
|
*
|
2017-10-13 15:58:11 -07:00
|
|
|
* Note: __trace_printk is an internal function for trace_printk() and
|
|
|
|
|
* the @ip is passed in via the trace_printk() macro.
|
2009-03-05 10:28:45 +01:00
|
|
|
*
|
|
|
|
|
* This function allows a kernel developer to debug fast path sections
|
|
|
|
|
* that printk is not appropriate for. By scattering in various
|
|
|
|
|
* printk like tracing in the code, a developer can quickly see
|
|
|
|
|
* where problems are occurring.
|
|
|
|
|
*
|
|
|
|
|
* This is intended as a debugging tool for the developer only.
|
|
|
|
|
* Please refrain from leaving trace_printks scattered around in
|
2013-03-08 21:02:34 -05:00
|
|
|
* your code. (Extra memory is used for special buffers that are
|
2017-10-13 15:58:11 -07:00
|
|
|
* allocated when trace_printk() is used.)
|
2013-03-08 22:11:57 -05:00
|
|
|
*
|
2018-04-24 14:22:38 -07:00
|
|
|
* A little optimization trick is done here. If there's only one
|
2013-03-08 22:11:57 -05:00
|
|
|
* argument, there's no need to scan the string for printf formats.
|
|
|
|
|
* The trace_puts() will suffice. But how can we take advantage of
|
|
|
|
|
* using trace_puts() when trace_printk() has only one argument?
|
|
|
|
|
* By stringifying the args and checking the size we can tell
|
|
|
|
|
* whether or not there are args. __stringify((__VA_ARGS__)) will
|
|
|
|
|
* turn into "()\0" with a size of 3 when there are no args, anything
|
|
|
|
|
* else will be bigger. All we need to do is define a string to this,
|
|
|
|
|
* and then take its size and compare to 3. If it's bigger, use
|
|
|
|
|
* do_trace_printk() otherwise, optimize it to trace_puts(). Then just
|
|
|
|
|
* let gcc optimize the rest.
|
2009-03-05 10:28:45 +01:00
|
|
|
*/
|
2009-03-06 17:21:49 +01:00
|
|
|
|
2013-03-08 22:11:57 -05:00
|
|
|
#define trace_printk(fmt, ...) \
|
|
|
|
|
do { \
|
|
|
|
|
char _______STR[] = __stringify((__VA_ARGS__)); \
|
|
|
|
|
if (sizeof(_______STR) > 3) \
|
|
|
|
|
do_trace_printk(fmt, ##__VA_ARGS__); \
|
|
|
|
|
else \
|
|
|
|
|
trace_puts(fmt); \
|
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
#define do_trace_printk(fmt, args...) \
|
2009-03-06 17:21:49 +01:00
|
|
|
do { \
|
2016-03-22 17:30:58 -04:00
|
|
|
static const char *trace_printk_fmt __used \
|
2020-10-21 19:36:07 -07:00
|
|
|
__section("__trace_printk_fmt") = \
|
2011-09-22 14:01:55 -04:00
|
|
|
__builtin_constant_p(fmt) ? fmt : NULL; \
|
2009-03-12 18:24:49 +01:00
|
|
|
\
|
2011-09-22 14:01:55 -04:00
|
|
|
__trace_printk_check_format(fmt, ##args); \
|
|
|
|
|
\
|
|
|
|
|
if (__builtin_constant_p(fmt)) \
|
2009-03-12 18:24:49 +01:00
|
|
|
__trace_bprintk(_THIS_IP_, trace_printk_fmt, ##args); \
|
2011-09-22 14:01:55 -04:00
|
|
|
else \
|
|
|
|
|
__trace_printk(_THIS_IP_, fmt, ##args); \
|
2009-03-06 17:21:49 +01:00
|
|
|
} while (0)
|
|
|
|
|
|
2011-10-31 17:11:33 -07:00
|
|
|
extern __printf(2, 3)
|
|
|
|
|
int __trace_bprintk(unsigned long ip, const char *fmt, ...);
|
2009-03-12 18:24:49 +01:00
|
|
|
|
2011-10-31 17:11:33 -07:00
|
|
|
extern __printf(2, 3)
|
|
|
|
|
int __trace_printk(unsigned long ip, const char *fmt, ...);
|
2009-03-06 17:21:49 +01:00
|
|
|
|
2013-03-08 21:02:34 -05:00
|
|
|
/**
|
|
|
|
|
* trace_puts - write a string into the ftrace buffer
|
|
|
|
|
* @str: the string to record
|
|
|
|
|
*
|
|
|
|
|
* Note: __trace_bputs is an internal function for trace_puts and
|
|
|
|
|
* the @ip is passed in via the trace_puts macro.
|
|
|
|
|
*
|
|
|
|
|
* This is similar to trace_printk() but is made for those really fast
|
2017-10-13 15:58:11 -07:00
|
|
|
* paths that a developer wants the least amount of "Heisenbug" effects,
|
2013-03-08 21:02:34 -05:00
|
|
|
* where the processing of the print format is still too much.
|
|
|
|
|
*
|
|
|
|
|
* This function allows a kernel developer to debug fast path sections
|
|
|
|
|
* that printk is not appropriate for. By scattering in various
|
|
|
|
|
* printk like tracing in the code, a developer can quickly see
|
|
|
|
|
* where problems are occurring.
|
|
|
|
|
*
|
|
|
|
|
* This is intended as a debugging tool for the developer only.
|
|
|
|
|
* Please refrain from leaving trace_puts scattered around in
|
|
|
|
|
* your code. (Extra memory is used for special buffers that are
|
2017-10-13 15:58:11 -07:00
|
|
|
* allocated when trace_puts() is used.)
|
2013-03-08 21:02:34 -05:00
|
|
|
*
|
|
|
|
|
* Returns: 0 if nothing was written, positive # if string was.
|
|
|
|
|
* (1 when __trace_bputs is used, strlen(str) when __trace_puts is used)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#define trace_puts(str) ({ \
|
2016-03-22 17:30:58 -04:00
|
|
|
static const char *trace_printk_fmt __used \
|
2020-10-21 19:36:07 -07:00
|
|
|
__section("__trace_printk_fmt") = \
|
2013-03-08 21:02:34 -05:00
|
|
|
__builtin_constant_p(str) ? str : NULL; \
|
|
|
|
|
\
|
|
|
|
|
if (__builtin_constant_p(str)) \
|
|
|
|
|
__trace_bputs(_THIS_IP_, trace_printk_fmt); \
|
|
|
|
|
else \
|
|
|
|
|
__trace_puts(_THIS_IP_, str, strlen(str)); \
|
|
|
|
|
})
|
2013-05-02 11:26:13 -04:00
|
|
|
extern int __trace_bputs(unsigned long ip, const char *str);
|
|
|
|
|
extern int __trace_puts(unsigned long ip, const char *str, int size);
|
2013-03-08 21:02:34 -05:00
|
|
|
|
2013-03-13 09:55:57 -04:00
|
|
|
extern void trace_dump_stack(int skip);
|
2009-12-11 09:48:22 -05:00
|
|
|
|
2009-03-12 18:24:49 +01:00
|
|
|
/*
|
|
|
|
|
* The double __builtin_constant_p is because gcc will give us an error
|
|
|
|
|
* if we try to allocate the static variable to fmt if it is not a
|
|
|
|
|
* constant. Even with the outer if statement.
|
|
|
|
|
*/
|
2009-03-06 17:21:49 +01:00
|
|
|
#define ftrace_vprintk(fmt, vargs) \
|
|
|
|
|
do { \
|
2009-03-12 18:24:49 +01:00
|
|
|
if (__builtin_constant_p(fmt)) { \
|
2016-03-22 17:30:58 -04:00
|
|
|
static const char *trace_printk_fmt __used \
|
2020-10-21 19:36:07 -07:00
|
|
|
__section("__trace_printk_fmt") = \
|
2009-03-12 18:24:49 +01:00
|
|
|
__builtin_constant_p(fmt) ? fmt : NULL; \
|
2009-03-09 10:11:36 +01:00
|
|
|
\
|
2009-03-12 18:24:49 +01:00
|
|
|
__ftrace_vbprintk(_THIS_IP_, trace_printk_fmt, vargs); \
|
|
|
|
|
} else \
|
|
|
|
|
__ftrace_vprintk(_THIS_IP_, fmt, vargs); \
|
2009-03-06 17:21:49 +01:00
|
|
|
} while (0)
|
|
|
|
|
|
2015-07-17 16:23:42 -07:00
|
|
|
extern __printf(2, 0) int
|
2009-03-12 18:24:49 +01:00
|
|
|
__ftrace_vbprintk(unsigned long ip, const char *fmt, va_list ap);
|
|
|
|
|
|
2015-07-17 16:23:42 -07:00
|
|
|
extern __printf(2, 0) int
|
2009-03-05 10:28:45 +01:00
|
|
|
__ftrace_vprintk(unsigned long ip, const char *fmt, va_list ap);
|
2009-03-06 17:21:49 +01:00
|
|
|
|
2010-04-18 19:08:41 +02:00
|
|
|
extern void ftrace_dump(enum ftrace_dump_mode oops_dump_mode);
|
2009-03-05 10:28:45 +01:00
|
|
|
#else
|
|
|
|
|
static inline void tracing_start(void) { }
|
|
|
|
|
static inline void tracing_stop(void) { }
|
2013-08-02 14:47:29 -04:00
|
|
|
static inline void trace_dump_stack(int skip) { }
|
2012-03-20 12:28:29 -04:00
|
|
|
|
|
|
|
|
static inline void tracing_on(void) { }
|
|
|
|
|
static inline void tracing_off(void) { }
|
|
|
|
|
static inline int tracing_is_on(void) { return 0; }
|
2013-03-06 21:45:37 -05:00
|
|
|
static inline void tracing_snapshot(void) { }
|
|
|
|
|
static inline void tracing_snapshot_alloc(void) { }
|
2012-03-20 12:28:29 -04:00
|
|
|
|
2012-10-25 15:41:51 +02:00
|
|
|
static inline __printf(1, 2)
|
|
|
|
|
int trace_printk(const char *fmt, ...)
|
2009-03-05 10:28:45 +01:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2015-07-17 16:23:42 -07:00
|
|
|
static __printf(1, 0) inline int
|
2009-03-05 10:28:45 +01:00
|
|
|
ftrace_vprintk(const char *fmt, va_list ap)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2010-04-18 19:08:41 +02:00
|
|
|
static inline void ftrace_dump(enum ftrace_dump_mode oops_dump_mode) { }
|
2009-03-06 17:21:49 +01:00
|
|
|
#endif /* CONFIG_TRACING */
|
2009-03-05 10:28:45 +01:00
|
|
|
|
2025-07-04 10:48:38 -04:00
|
|
|
/* Rebuild everything on CONFIG_DYNAMIC_FTRACE */
|
|
|
|
|
#ifdef CONFIG_DYNAMIC_FTRACE
|
|
|
|
|
# define REBUILD_DUE_TO_DYNAMIC_FTRACE
|
2011-07-25 17:13:03 -07:00
|
|
|
#endif
|
2011-07-25 17:13:02 -07:00
|
|
|
|
2014-03-24 12:00:34 +10:30
|
|
|
/* Permissions on a sysfs file: you didn't miss the 0 prefix did you? */
|
2015-05-27 11:09:38 +09:30
|
|
|
#define VERIFY_OCTAL_PERMISSIONS(perms) \
|
|
|
|
|
(BUILD_BUG_ON_ZERO((perms) < 0) + \
|
|
|
|
|
BUILD_BUG_ON_ZERO((perms) > 0777) + \
|
|
|
|
|
/* USER_READABLE >= GROUP_READABLE >= OTHER_READABLE */ \
|
|
|
|
|
BUILD_BUG_ON_ZERO((((perms) >> 6) & 4) < (((perms) >> 3) & 4)) + \
|
|
|
|
|
BUILD_BUG_ON_ZERO((((perms) >> 3) & 4) < ((perms) & 4)) + \
|
|
|
|
|
/* USER_WRITABLE >= GROUP_WRITABLE */ \
|
|
|
|
|
BUILD_BUG_ON_ZERO((((perms) >> 6) & 2) < (((perms) >> 3) & 2)) + \
|
|
|
|
|
/* OTHER_WRITABLE? Generally considered a bad idea. */ \
|
|
|
|
|
BUILD_BUG_ON_ZERO((perms) & 2) + \
|
2014-03-24 12:00:34 +10:30
|
|
|
(perms))
|
2005-04-16 15:20:36 -07:00
|
|
|
#endif
|