summaryrefslogtreecommitdiffstats
path: root/src/kernel/xloop_main.c
blob: cd1a76774e6764c5460b92def3583041faa85b83 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

#include "xloop_main.h"

#if RHEL_CHECK_VERSION(RHEL_RELEASE_CODE >= RHEL_RELEASE_VERSION(8, 5))
#include "xloop_main_rhel_8.5.c"
#elif LINUX_VERSION_CODE < KERNEL_VERSION(5, 15, 0)
#include "xloop_main_4.18.c"
#else
#include "xloop_main_5.15.c"
#endif