X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=probes%2Flttng-probe-kmem.c;h=01202418dfc499884cb2b6f7bac510439c01d79d;hb=7b10d281eaed1cb8774b2b5f0c99e96b3bc4b0c7;hp=af677594546947c63861e43dc0de464ca5892a72;hpb=b283666ff19841a28b0448c6a867beb2f809f11a;p=lttng-modules.git diff --git a/probes/lttng-probe-kmem.c b/probes/lttng-probe-kmem.c index af677594..01202418 100644 --- a/probes/lttng-probe-kmem.c +++ b/probes/lttng-probe-kmem.c @@ -21,7 +21,13 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +/* + * This page_alloc.h wrapper needs to be included before gfpflags.h because it + * overrides a function with a define. + */ +#include "../wrapper/page_alloc.h" #include +#include "../lttng-tracer.h" /* * Create the tracepoint static inlines from the kernel to validate that our @@ -29,6 +35,8 @@ */ #include +#include "../wrapper/tracepoint.h" + /* * Create LTTng tracepoint probes. */ @@ -39,5 +47,9 @@ #include "../instrumentation/events/lttng-module/kmem.h" MODULE_LICENSE("GPL and additional rights"); -MODULE_AUTHOR("Wade Farnsworth "); +MODULE_AUTHOR("Wade Farnsworth and Andrew Gabbasov "); MODULE_DESCRIPTION("LTTng kmem probes"); +MODULE_VERSION(__stringify(LTTNG_MODULES_MAJOR_VERSION) "." + __stringify(LTTNG_MODULES_MINOR_VERSION) "." + __stringify(LTTNG_MODULES_PATCHLEVEL_VERSION) + LTTNG_MODULES_EXTRAVERSION);