From e6e1c9deb3babfde63f6fe6096a2eb3214c8f7df Mon Sep 17 00:00:00 2001 From: Josef 'Jeff' Sipek Date: Mon, 17 Aug 2015 09:52:24 -0400 Subject: [PATCH] 6131 struct scsi_device uses a 1-bit signed bitfield Reviewed by: Dan McDonald Reviewed by: Igor Kozhukhov Approved by: Robert Mustacchi --- usr/src/uts/common/sys/scsi/conf/device.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/src/uts/common/sys/scsi/conf/device.h b/usr/src/uts/common/sys/scsi/conf/device.h index 44942b7f35..fb9594c200 100644 --- a/usr/src/uts/common/sys/scsi/conf/device.h +++ b/usr/src/uts/common/sys/scsi/conf/device.h @@ -150,7 +150,7 @@ struct scsi_device { * tran_tgt_free(9E) independent of devinfo node state, this means * that uninitchild code should not call tran_tgt_free(9E). */ - int sd_uninit_prevent:16, + unsigned sd_uninit_prevent:16, sd_tran_tgt_free_done:1, sd_flags_pad:15; -- 2.11.4.GIT