mirror of
https://github.com/SCST-project/scst.git
synced 2026-08-18 13:16:34 +00:00
Merge branch 'svn-trunk'
This commit is contained in:
@@ -2118,6 +2118,37 @@ static inline struct ib_pd *ib_alloc_pd_backport(struct ib_device *device)
|
||||
})
|
||||
#endif
|
||||
|
||||
/* <scsi/scsi.h> */
|
||||
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(5, 14, 0)
|
||||
#ifndef msg_byte
|
||||
/*
|
||||
* See also commit 54cf31d07aa8 ("scsi: core: Drop message byte helper";
|
||||
* v5.14-rc1).
|
||||
*/
|
||||
static inline uint8_t msg_byte(uint32_t result)
|
||||
{
|
||||
return (result >> 8) & 0xff;
|
||||
}
|
||||
#endif
|
||||
#ifndef host_byte
|
||||
static inline uint8_t host_byte(uint32_t result)
|
||||
{
|
||||
return (result >> 16) & 0xff;
|
||||
}
|
||||
#endif
|
||||
#ifndef driver_byte
|
||||
/*
|
||||
* See also commit 54c29086195f ("scsi: core: Drop the now obsolete driver_byte
|
||||
* definitions"; v5.14-rc1).
|
||||
*/
|
||||
static inline uint8_t driver_byte(uint32_t result)
|
||||
{
|
||||
return (result >> 24) & 0xff;
|
||||
}
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* <scsi/scsi_cmnd.h> */
|
||||
|
||||
#if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 24) || \
|
||||
|
||||
@@ -264,7 +264,7 @@ static void disk_cmd_done(void *data, char *sense, int result, int resid)
|
||||
|
||||
WARN_ON_ONCE(IS_ERR_VALUE((long)result));
|
||||
|
||||
if (status_byte(result) == GOOD)
|
||||
if ((result & 0xff) == SAM_STAT_GOOD)
|
||||
goto out_complete;
|
||||
|
||||
work->result = result;
|
||||
|
||||
+2
-2
@@ -12928,7 +12928,7 @@ static void scst_check_internal_sense(struct scst_device *dev, int result,
|
||||
sl = scst_set_sense(sense, sense_len, dev->d_sense,
|
||||
SCST_LOAD_SENSE(scst_sense_reset_UA));
|
||||
scst_dev_check_set_UA(dev, NULL, sense, sl);
|
||||
} else if ((status_byte(result) == CHECK_CONDITION) &&
|
||||
} else if ((result & 0xff) == SAM_STAT_CHECK_CONDITION &&
|
||||
scst_is_ua_sense(sense, sense_len))
|
||||
scst_dev_check_set_UA(dev, NULL, sense, sense_len);
|
||||
|
||||
@@ -13809,7 +13809,7 @@ int scst_obtain_device_parameters(struct scst_device *dev,
|
||||
scst_check_internal_sense(dev, rc, sense_buffer,
|
||||
sizeof(sense_buffer));
|
||||
#if 0
|
||||
if ((status_byte(rc) == CHECK_CONDITION) &&
|
||||
if ((rc & 0xff) == SAM_STAT_CHECK_CONDITION &&
|
||||
scst_sense_valid(sense_buffer)) {
|
||||
#else
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user