diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-13 11:31:28 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-13 11:31:28 -0700 |
commit | 8255309b887fcac11f791913a2d1d0b966a40d32 (patch) | |
tree | ae2d43366b946ab0968762a2b68cc862983db372 /include/linux | |
parent | bf20753c0cdf842c5c65af688c2cefd1eafa7630 (diff) | |
parent | 44e9c8b7adc52079f0535f9de0c2c2477831389b (diff) | |
download | op-kernel-dev-8255309b887fcac11f791913a2d1d0b966a40d32.zip op-kernel-dev-8255309b887fcac11f791913a2d1d0b966a40d32.tar.gz |
Merge branch 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'tracing-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
tracing/filters: return proper error code when writing filter file
tracing/filters: allow user input integer to be oct or hex
tracing/filters: fix NULL pointer dereference
tracing/filters: NIL-terminate user input filter
ftrace: Output REC->var instead of __entry->var for trace format
Make __stringify support variable argument macros too
tracing: fix document references
tracing: fix splice return too large
tracing: update file->f_pos when splice(2) it
tracing: allocate page when needed
tracing: disable seeking for trace_pipe_raw
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/stringify.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/stringify.h b/include/linux/stringify.h index 0b43883..841cec8 100644 --- a/include/linux/stringify.h +++ b/include/linux/stringify.h @@ -6,7 +6,7 @@ * converts to "bar". */ -#define __stringify_1(x) #x -#define __stringify(x) __stringify_1(x) +#define __stringify_1(x...) #x +#define __stringify(x...) __stringify_1(x) #endif /* !__LINUX_STRINGIFY_H */ |