1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/* SPDX-License-Identifier: (GPL-2.0-only or LGPL-2.1-only)
*
* wrapper/writeback.h
*
* wrapper around global_dirty_limit read. Using KALLSYMS with KALLSYMS_ALL
* to get its address when available, else we need to have a kernel that
* exports this variable to GPL modules.
*
* Copyright (C) 2013 Mentor Graphics Corp.
*/
#ifndef _LTTNG_WRAPPER_WRITEBACK_H
#define _LTTNG_WRAPPER_WRITEBACK_H
#ifdef CONFIG_KALLSYMS_ALL
#include <linux/kallsyms.h>
#include <wrapper/kallsyms.h>
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;
}
}
/*
* 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;
}
#else /* CONFIG_KALLSYMS_ALL */
#include <linux/writeback.h>
static inline
unsigned long wrapper_global_dirty_limit(void)
{
return global_dirty_limit;
}
#endif /* CONFIG_KALLSYMS_ALL */
#endif /* _LTTNG_WRAPPER_WRITEBACK_H */
|