4eac2c1a14c62ed74a316a98ff4228f4478352da
1 /* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1)
5 * wrapper around block layer functions and data structures. Using
6 * KALLSYMS to get its address when available, else we need to have a
7 * kernel that exports this function to GPL modules.
9 * Copyright (C) 2011-2014 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12 #ifndef _LTTNG_WRAPPER_GENHD_H
13 #define _LTTNG_WRAPPER_GENHD_H
15 #include <linux/genhd.h>
17 #ifdef CONFIG_KALLSYMS_ALL
19 #include <linux/kallsyms.h>
20 #include <wrapper/kallsyms.h>
23 struct class *wrapper_get_block_class(void)
25 struct class *ptr_block_class
;
27 ptr_block_class
= (struct class *) kallsyms_lookup_dataptr("block_class");
28 if (!ptr_block_class
) {
29 printk_once(KERN_WARNING
"LTTng: block_class symbol lookup failed.\n");
32 return ptr_block_class
;
36 struct device_type
*wrapper_get_disk_type(void)
38 struct device_type
*ptr_disk_type
;
40 ptr_disk_type
= (struct device_type
*) kallsyms_lookup_dataptr("disk_type");
42 printk_once(KERN_WARNING
"LTTng: disk_type symbol lookup failed.\n");
51 struct class *wrapper_get_block_class(void)
54 * Symbol block_class is not exported.
55 * TODO: return &block_class;
57 /* Feature currently unavailable without KALLSYMS_ALL */
62 struct device_type
*wrapper_get_disk_type(void)
65 * Symbol disk_type is not exported.
66 * TODO: return &disk_type;
68 /* Feature currently unavailable without KALLSYMS_ALL */
74 #endif /* _LTTNG_WRAPPER_GENHD_H */
This page took 0.03332 seconds and 3 git commands to generate.