X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=wrapper%2Fwriteback.h;h=22b2c1608a5e5df3495fbdcc863859364813cf76;hb=6284ae7ced3a8c6a4bee55b071d4de74d7400cad;hp=cdcbd58444e0efbd8c3cca8cea04d6332c83f540;hpb=0910ab71db3c3f618edae89ec46fe9b7487c7eac;p=lttng-modules.git diff --git a/wrapper/writeback.h b/wrapper/writeback.h index cdcbd584..22b2c160 100644 --- a/wrapper/writeback.h +++ b/wrapper/writeback.h @@ -25,11 +25,33 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -#ifdef CONFIG_KALLSYMS_ALL +#include +#ifdef CONFIG_KALLSYMS_ALL #include #include + + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(4,2,0) + +static struct wb_domain *global_wb_domain_sym; + +static inline +unsigned long wrapper_global_dirty_limit(void) +{ + if (!global_wb_domain_sym) + global_wb_domain_sym = + (void *) kallsyms_lookup_dataptr("global_wb_domain"); + if (global_wb_domain_sym) { + return global_wb_domain_sym->dirty_limit; + } else { + printk_once(KERN_WARNING "LTTng: global_wb_domain symbol lookup failed.\n"); + return 0; + } +} +#else + static unsigned long *global_dirty_limit_sym; static inline @@ -45,8 +67,9 @@ unsigned long wrapper_global_dirty_limit(void) return 0; } } +#endif -#else +#else /* CONFIG_KALLSYMS_ALL */ #include