Commit 864dfa13 authored by Joe Perches's avatar Joe Perches Committed by Ingo Molnar

include/asm-x86/kprobes.h: checkpatch cleanups - formatting only

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent b69a3f9d
...@@ -35,12 +35,12 @@ typedef u8 kprobe_opcode_t; ...@@ -35,12 +35,12 @@ typedef u8 kprobe_opcode_t;
#define RELATIVEJUMP_INSTRUCTION 0xe9 #define RELATIVEJUMP_INSTRUCTION 0xe9
#define MAX_INSN_SIZE 16 #define MAX_INSN_SIZE 16
#define MAX_STACK_SIZE 64 #define MAX_STACK_SIZE 64
#define MIN_STACK_SIZE(ADDR) (((MAX_STACK_SIZE) < \ #define MIN_STACK_SIZE(ADDR) \
(((unsigned long)current_thread_info()) + THREAD_SIZE \ (((MAX_STACK_SIZE) < (((unsigned long)current_thread_info()) + \
- (unsigned long)(ADDR))) \ THREAD_SIZE - (unsigned long)(ADDR))) \
? (MAX_STACK_SIZE) \ ? (MAX_STACK_SIZE) \
: (((unsigned long)current_thread_info()) + THREAD_SIZE \ : (((unsigned long)current_thread_info()) + \
- (unsigned long)(ADDR))) THREAD_SIZE - (unsigned long)(ADDR)))
#define flush_insn_slot(p) do { } while (0) #define flush_insn_slot(p) do { } while (0)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment