Skip to content

Commit

Permalink
Fix support for RHEL 9.0
Browse files Browse the repository at this point in the history
This was very briefly broken with the previous commit
  • Loading branch information
solardiz committed Nov 8, 2023
1 parent 310e85d commit 3760e0e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
defined(P_LKRG_KERNEL_RHEL_VAR_LEN_JUMP_LABEL)
#if !P_LKRG_KERNEL_HAS_VAR_LEN_JUMP_LABEL || \
(defined(P_LKRG_KERNEL_RHEL_VAR_LEN_JUMP_LABEL) && \
RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(9,1) && \
RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(8,8))
(RHEL_RELEASE_CODE == RHEL_RELEASE_VERSION(9,0) || \
RHEL_RELEASE_CODE < RHEL_RELEASE_VERSION(8,8)))
typedef struct _p_text_poke_loc {
s32 rel_addr; /* addr := _stext + rel_addr */
s32 rel32;
Expand Down

0 comments on commit 3760e0e

Please sign in to comment.