Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753325AbaKZQ5g (ORCPT ); Wed, 26 Nov 2014 11:57:36 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37245 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752754AbaKZQ5d (ORCPT ); Wed, 26 Nov 2014 11:57:33 -0500 Date: Wed, 26 Nov 2014 18:56:53 +0200 From: "Michael S. Tsirkin" To: Greg Kurz Cc: linux-kernel@vger.kernel.org, rusty@au1.ibm.com, Heiko Carstens , Sudeep Dutt , virtualization@lists.linux-foundation.org, linux-s390@vger.kernel.org, lguest@lists.ozlabs.org, Pawel Moll , Christian Borntraeger , Joel Stanley , Arnd Bergmann , Siva Yerramreddy , Martin Schwidefsky , pbonzini@redhat.com, Brian Swetland , Ashutosh Dixit , Greg Kroah-Hartman , Amit Shah , linux390@de.ibm.com, David Miller Subject: Re: [PATCH v4 02/42] virtio: add support for 64 bit features. Message-ID: <20141126165653.GB11202@redhat.com> References: <1416933600-21398-1-git-send-email-mst@redhat.com> <1416933600-21398-3-git-send-email-mst@redhat.com> <20141126174809.24f6be4d@bahia.local> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20141126174809.24f6be4d@bahia.local> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Nov 26, 2014 at 05:48:09PM +0100, Greg Kurz wrote: > On Tue, 25 Nov 2014 18:41:22 +0200 > "Michael S. Tsirkin" wrote: > > > From: Rusty Russell > > > > Change the u32 to a u64, and make sure to use 1ULL everywhere! > > > > Cc: Brian Swetland > > Cc: Christian Borntraeger > > [Thomas Huth: fix up virtio-ccw get_features] > > Signed-off-by: Rusty Russell > > Signed-off-by: Cornelia Huck > > Acked-by: Pawel Moll > > Acked-by: Ohad Ben-Cohen > > > > Signed-off-by: Michael S. Tsirkin ... > > @@ -86,14 +86,14 @@ static inline bool virtio_has_feature(const struct virtio_device *vdev, > > { > > /* Did you forget to fix assumptions on max features? */ > > if (__builtin_constant_p(fbit)) > > - BUILD_BUG_ON(fbit >= 32); > > + BUILD_BUG_ON(fbit >= 64); > > > While you're here, maybe you could derive the max value from the .features field ? > > - BUILD_BUG_ON(fbit >= 64); > + BUILD_BUG_ON(fbit >= (sizeof(vdev->features) << 3)); I don't see how that will help. All that 1ULL math only works up to 64 bit. So this only makes it look like we support any size, but doesn't really. No? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/