diff options
author | Martin Wilck <mwilck@suse.com> | 2018-04-18 01:35:08 +0200 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2018-04-20 19:14:35 -0400 |
commit | 1409880357ed33dc1c23eed080d88ea4410ed9a3 (patch) | |
tree | bedb737ada763f6fb7a65697dda062b66c745ba6 /include/scsi/scsi_device.h | |
parent | 659c1c1b29ebc4af9148eed74a9f28f00b8b6dc6 (diff) | |
download | linux-stable-1409880357ed33dc1c23eed080d88ea4410ed9a3.tar.gz linux-stable-1409880357ed33dc1c23eed080d88ea4410ed9a3.tar.bz2 linux-stable-1409880357ed33dc1c23eed080d88ea4410ed9a3.zip |
scsi: devinfo: change blist_flag_t to 64bit
Space for SCSI blist flags is gradually running out. Change the type to
__u64 and fix a checkpatch complaint about symbolic mode flags in
scsi_devinfo.c.
Make checkpatch happy by replacing simple_strtoul() with kstrtoull().
Signed-off-by: Martin Wilck <mwilck@suse.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'include/scsi/scsi_device.h')
-rw-r--r-- | include/scsi/scsi_device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h index 7ae177c8e399..4c36af6edd79 100644 --- a/include/scsi/scsi_device.h +++ b/include/scsi/scsi_device.h @@ -15,7 +15,7 @@ struct scsi_cmnd; struct scsi_lun; struct scsi_sense_hdr; -typedef unsigned int __bitwise blist_flags_t; +typedef __u64 __bitwise blist_flags_t; struct scsi_mode_data { __u32 length; |