X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=wrapper%2Fgenhd.h;h=1b4a420167ef4c7d34b436fc9b64c56903b17c13;hb=00b42dbf832993005036d0bc28aef9eb2171f539;hp=4eac2c1a14c62ed74a316a98ff4228f4478352da;hpb=3bcb1fb34fc8904413476afd87afbdeab3806e56;p=lttng-modules.git diff --git a/wrapper/genhd.h b/wrapper/genhd.h index 4eac2c1a..1b4a4201 100644 --- a/wrapper/genhd.h +++ b/wrapper/genhd.h @@ -13,6 +13,13 @@ #define _LTTNG_WRAPPER_GENHD_H #include +#include + +#if (LTTNG_LINUX_VERSION_CODE >= LTTNG_KERNEL_VERSION(5,11,0)) +#define LTTNG_DISK_PART_TYPE struct block_device +#else +#define LTTNG_DISK_PART_TYPE struct hd_struct +#endif #ifdef CONFIG_KALLSYMS_ALL @@ -32,6 +39,19 @@ struct class *wrapper_get_block_class(void) return ptr_block_class; } +/* + * Canary function to check for 'block_class' at compile time. + * + * From 'include/linux/genhd.h': + * + * extern struct class block_class; + */ +static inline +struct class *__canary__get_block_class(void) +{ + return &block_class; +} + static inline struct device_type *wrapper_get_disk_type(void) { @@ -45,6 +65,16 @@ struct device_type *wrapper_get_disk_type(void) return ptr_disk_type; } +/* + * No canary for 'disk_type', it's only defined in 'block/genhd.c'. + * + * static inline + * struct device_type *__canary__get_disk_type(void) + * { + * return &disk_type; + * } + */ + #else static inline @@ -71,4 +101,59 @@ struct device_type *wrapper_get_disk_type(void) #endif +/* + * This wrapper has an 'int' return type instead of the original 'void', to be + * able to report the symbol lookup failure to the caller. + * + * Return 0 on success, -1 on error. + */ +int wrapper_disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk, + unsigned int flags); +LTTNG_DISK_PART_TYPE *wrapper_disk_part_iter_next(struct disk_part_iter *piter); +void wrapper_disk_part_iter_exit(struct disk_part_iter *piter); + +/* + * Canary function to check for 'disk_part_iter_init()' at compile time. + * + * From 'include/linux/genhd.h': + * + * extern void disk_part_iter_init(struct disk_part_iter *piter, + * struct gendisk *disk, unsigned int flags); + * + */ +static inline +void __canary__disk_part_iter_init(struct disk_part_iter *piter, struct gendisk *disk, + unsigned int flags) +{ + disk_part_iter_init(piter, disk, flags); +} + +/* + * Canary function to check for 'disk_part_iter_next()' at compile time. + * + * From 'include/linux/genhd.h': + * + * struct block_device *disk_part_iter_next(struct disk_part_iter *piter); + * + */ +static inline +LTTNG_DISK_PART_TYPE *__canary__disk_part_iter_next(struct disk_part_iter *piter) +{ + return disk_part_iter_next(piter); +} + +/* + * Canary function to check for 'disk_part_iter_exit()' at compile time. + * + * From 'include/linux/genhd.h': + * + * extern void disk_part_iter_exit(struct disk_part_iter *piter); + * + */ +static inline +void __canary__disk_part_iter_exit(struct disk_part_iter *piter) +{ + return disk_part_iter_exit(piter); +} + #endif /* _LTTNG_WRAPPER_GENHD_H */