Skip to content

Commit

Permalink
Merge pull request dynup#860 from jpoimboe/rhel-immediate
Browse files Browse the repository at this point in the history
livepatch-patch-hook: add RHEL immediate check
  • Loading branch information
joe-lawrence committed May 30, 2018
2 parents ba5f3a9 + a3ee369 commit c2f6d4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kmod/patch/livepatch-patch-hook.c
Expand Up @@ -49,7 +49,8 @@

#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4, 12, 0) && \
LINUX_VERSION_CODE <= KERNEL_VERSION(4, 15, 0)) || \
defined(RHEL_RELEASE_CODE)
(defined(RHEL_RELEASE_CODE) && \
RHEL_RELEASE_CODE <= RHEL_RELEASE_VERSION(7, 5))
#define HAVE_IMMEDIATE
#endif

Expand Down

0 comments on commit c2f6d4d

Please sign in to comment.