Skip to content

Commit

Permalink
scst/include/backport.h: Fix the build against UEK kernels
Browse files Browse the repository at this point in the history
Commit 48ef509 ("scst/include/backport.h: Port to the latest UEK
kernels") broke the build for UEK kernel versions before v5.4.17-2136.
Fix it.
  • Loading branch information
lnocturno committed May 3, 2024
1 parent 52b5e84 commit 8a1a7fa
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scst/include/backport.h
Original file line number Diff line number Diff line change
Expand Up @@ -1678,7 +1678,9 @@ static inline void scsi_build_sense(struct scsi_cmnd *scmd, int desc,
(!defined(RHEL_RELEASE_CODE) || \
RHEL_RELEASE_CODE -0 < RHEL_RELEASE_VERSION(8, 7) || \
RHEL_RELEASE_CODE -0 == RHEL_RELEASE_VERSION(9, 0)) && \
!defined(UEK_KABI_RENAME)
(!defined(UEK_KABI_RENAME) || \
LINUX_VERSION_CODE < KERNEL_VERSION(5, 4, 17) || \
!defined(SB_I_SKIP_SYNC))
/*
* See also 51f3a4788928 ("scsi: core: Introduce the scsi_cmd_to_rq()
* function") # v5.15.
Expand Down

0 comments on commit 8a1a7fa

Please sign in to comment.