From: Oliver Chick Date: Fri, 21 Sep 2012 09:04:18 +0000 (+0100) Subject: xen/blkback: Change xen_vbd's flush_support and discard_secure to have type unsigned... X-Git-Tag: v3.7-rc4~23^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f999572f244f266c5b1b855025723541b0b475d;p=profile%2Fivi%2Fkernel-x86-ivi.git xen/blkback: Change xen_vbd's flush_support and discard_secure to have type unsigned int, rather than bool Changing the type of bdev parameters to be unsigned int :1, rather than bool. This is more consistent with the types of other features in the block drivers. Signed-off-by: Oliver Chick Signed-off-by: Konrad Rzeszutek Wilk Signed-off-by: Jens Axboe --- diff --git a/drivers/block/xen-blkback/common.h b/drivers/block/xen-blkback/common.h index 9ad3b5e..9a54623 100644 --- a/drivers/block/xen-blkback/common.h +++ b/drivers/block/xen-blkback/common.h @@ -158,8 +158,8 @@ struct xen_vbd { struct block_device *bdev; /* Cached size parameter. */ sector_t size; - bool flush_support; - bool discard_secure; + unsigned int flush_support:1; + unsigned int discard_secure:1; }; struct backend_info;