summaryrefslogtreecommitdiffstats
path: root/include/scsi
diff options
context:
space:
mode:
authorMike Christie <michael.christie@oracle.com>2022-11-21 21:26:01 -0600
committerMartin K. Petersen <martin.petersen@oracle.com>2022-12-01 03:22:23 +0000
commitc9293c1199ecd3cfa07931ec3630f37dba1ca1b8 (patch)
tree1033bf68c3b12ea7402f87da555303f1ff2a77ad /include/scsi
parent255c4f4a6d5b60cfcd218d8fdae517b886ff155a (diff)
downloadlinux-c9293c1199ecd3cfa07931ec3630f37dba1ca1b8.tar.bz2
scsi: core: Rename status_byte to sg_status_byte
The next patch adds a helper status_byte function that works like host_byte, so this patch renames the old status_byte to sg_status_byte since it's only used for SG IO. Signed-off-by: Mike Christie <michael.christie@oracle.com> Link: https://lore.kernel.org/r/20221122032603.32766-3-michael.christie@oracle.com Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/scsi')
-rw-r--r--include/scsi/sg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/sg.h b/include/scsi/sg.h
index 068e35d36557..af31cecd9012 100644
--- a/include/scsi/sg.h
+++ b/include/scsi/sg.h
@@ -159,7 +159,7 @@ struct compat_sg_io_hdr {
#define TASK_ABORTED 0x20
/* Obsolete status_byte() declaration */
-#define status_byte(result) (((result) >> 1) & 0x7f)
+#define sg_status_byte(result) (((result) >> 1) & 0x7f)
typedef struct sg_scsi_id { /* used by SG_GET_SCSI_ID ioctl() */
int host_no; /* as in "scsi<n>" where 'n' is one of 0, 1, 2 etc */