mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-17 04:36:22 +00:00
scst/include/backport.h: Fix the build against UEK kernels
Commit 48ef50966a ("scst/include/backport.h: Port to the latest UEK
kernels") broke the build for UEK kernel versions before v5.4.17-2136.
Fix it.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user