fix: UTS_UBUNTU_RELEASE_ABI is close to overflow
[lttng-modules.git] / include / lttng / kernel-version.h
index 38b47cc34e424fc92fb47d82a624b42832461b00..5f388dce11a0257aa4f0aa7062a55e8418e0f6d9 100644 (file)
 /* Ubuntu */
 
 #define LTTNG_UBUNTU_KERNEL_VERSION(a, b, c, d) \
-       (((LTTNG_KERNEL_VERSION(a, b, c)) << 8) + (d))
+       (((LTTNG_KERNEL_VERSION(a, b, c)) << 16) + (d))
 
 #ifdef UTS_UBUNTU_RELEASE_ABI
 #define LTTNG_UBUNTU_VERSION_CODE \
-       ((LTTNG_LINUX_VERSION_CODE << 8) + UTS_UBUNTU_RELEASE_ABI)
+       ((LTTNG_LINUX_VERSION_CODE << 16) + UTS_UBUNTU_RELEASE_ABI)
 #else
 #define LTTNG_UBUNTU_VERSION_CODE      0
 #endif
This page took 0.023693 seconds and 4 git commands to generate.