diff options
author | Frank Ch. Eigler <fche@elastic.org> | 2009-03-08 22:28:03 -0400 |
---|---|---|
committer | Frank Ch. Eigler <fche@elastic.org> | 2009-03-08 22:28:03 -0400 |
commit | b1f85b93f4cdc5eaad45891399c30341d4d6ce93 (patch) | |
tree | 173eda2e74a4f2fc921e1a55bb4ea935af98254d /runtime/autoconf-alloc-percpu-align.c | |
parent | 4be9af07213db548443da4ae7ed365e98ed2b29c (diff) | |
download | systemtap-steved-b1f85b93f4cdc5eaad45891399c30341d4d6ce93.tar.gz systemtap-steved-b1f85b93f4cdc5eaad45891399c30341d4d6ce93.tar.xz systemtap-steved-b1f85b93f4cdc5eaad45891399c30341d4d6ce93.zip |
Adapt to linux-next commit changing __alloc_percpu API.
After linux-next commit f2a8205c, it takes two parameters again,
so we autoconf for it rather than use KERNEL_VERSION ifdefs.
Diffstat (limited to 'runtime/autoconf-alloc-percpu-align.c')
-rw-r--r-- | runtime/autoconf-alloc-percpu-align.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/runtime/autoconf-alloc-percpu-align.c b/runtime/autoconf-alloc-percpu-align.c new file mode 100644 index 00000000..158d579c --- /dev/null +++ b/runtime/autoconf-alloc-percpu-align.c @@ -0,0 +1,6 @@ +#include <linux/percpu.h> + +/* kernel commit f2a8205c */ +void foo (void) { + (void) __alloc_percpu(sizeof(int), 8); +} |