X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Fwriteback.h;h=6601e0f70963b501021b4dbdd9953ed511e0f7e9;hb=b2b02c29ebd55ae6d6a39edaca62f483770221d8;hp=646246621174011aea00ab8e6f353e101208b0c9;hpb=9f36eaed6f91d5897924b551b44d1edd8cee00e2;p=lttng-modules.git diff --git a/wrapper/writeback.h b/wrapper/writeback.h index 64624662..6601e0f7 100644 --- a/wrapper/writeback.h +++ b/wrapper/writeback.h @@ -20,7 +20,7 @@ -#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0) +#if LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(4,2,0) static struct wb_domain *global_wb_domain_sym; @@ -37,7 +37,21 @@ unsigned long wrapper_global_dirty_limit(void) return 0; } } -#else + +/* + * Canary function to check for 'global_wb_domain' at compile time. + * + * From 'include/linux/writeback.h': + * + * extern struct wb_domain global_wb_domain; + */ +static inline +unsigned long __canary__global_wb_domain(void) +{ + return global_wb_domain.dirty_limit; +} + +#elif LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,1,0) static unsigned long *global_dirty_limit_sym; @@ -54,17 +68,33 @@ unsigned long wrapper_global_dirty_limit(void) return 0; } } + +/* + * Canary function to check for 'global_dirty_limit' at compile time. + * + * From 'include/linux/writeback.h': + * + * extern unsigned long global_dirty_limit; + */ +static inline +unsigned long __canary__global_dirty_limit(void) +{ + return global_dirty_limit; +} + #endif #else /* CONFIG_KALLSYMS_ALL */ #include +#if LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(3,1,0) static inline unsigned long wrapper_global_dirty_limit(void) { return global_dirty_limit; } +#endif #endif