Fix: use proper pid_ns in the process statedump
[lttng-modules.git] / wrapper / writeback.h
index 3e8a9f561c57b7d0c94fa9acea8624773a5ef978..22b2c1608a5e5df3495fbdcc863859364813cf76 100644 (file)
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
-#ifdef CONFIG_KALLSYMS_ALL
+#include <lttng-kernel-version.h>
 
+#ifdef CONFIG_KALLSYMS_ALL
 #include <linux/kallsyms.h>
 #include <wrapper/kallsyms.h>
 
+
+
+#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
@@ -41,12 +63,13 @@ unsigned long wrapper_global_dirty_limit(void)
        if (global_dirty_limit_sym) {
                return *global_dirty_limit_sym;
        } else {
-               printk(KERN_WARNING "LTTng: global_dirty_limit symbol lookup failed.\n");
+               printk_once(KERN_WARNING "LTTng: global_dirty_limit symbol lookup failed.\n");
                return 0;
        }
 }
+#endif
 
-#else
+#else /* CONFIG_KALLSYMS_ALL */
 
 #include <linux/writeback.h>
 
This page took 0.024436 seconds and 4 git commands to generate.