From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rusty Russell Subject: Re: [PATCH v5 03/14] KVM: ARM: Initial skeleton to compile KVM support Date: Thu, 17 Jan 2013 12:41:52 +1030 Message-ID: <87hamgy2vr.fsf@rustcorp.com.au> References: <20130108183811.46302.58543.stgit@ubuntu> <20130108183855.46302.40539.stgit@ubuntu> <20130114162415.GF23505@n2100.arm.linux.org.uk> <877gndzvi6.fsf@rustcorp.com.au> <20130116094444.GP23505@n2100.arm.linux.org.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Christoffer Dall , kvm@vger.kernel.org, Marc Zyngier , Marcelo Tosatti , Rusty Russell , kvmarm@lists.cs.columbia.edu, linux-arm-kernel@lists.infradead.org To: Russell King - ARM Linux Return-path: Received: from ozlabs.org ([203.10.76.45]:55710 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757759Ab3AQCif (ORCPT ); Wed, 16 Jan 2013 21:38:35 -0500 In-Reply-To: <20130116094444.GP23505@n2100.arm.linux.org.uk> Sender: kvm-owner@vger.kernel.org List-ID: Russell King - ARM Linux writes: > On Wed, Jan 16, 2013 at 01:26:01PM +1030, Rusty Russell wrote: >> Christoffer Dall writes: >> >> > On Mon, Jan 14, 2013 at 11:24 AM, Russell King - ARM Linux >> > wrote: >> >> On Tue, Jan 08, 2013 at 01:38:55PM -0500, Christoffer Dall wrote: >> >>> + /* -ENOENT for unknown features, -EINVAL for invalid combinations. */ >> >>> + for (i = 0; i < sizeof(init->features)*8; i++) { >> >>> + if (init->features[i / 32] & (1 << (i % 32))) { >> >> >> >> Isn't this an open-coded version of test_bit() ? >> > >> > indeed, nicely spotted: >> >> BTW, I wrote it that was out of excessive paranoia: it's a userspace >> API, and test_bit() won't be right on 64 bit BE systems. > > So why is this a concern for 32-bit systems (which are, by definition, > only in arch/arm) ? Because this feature bitmap system is the same code which other archs *should* be using for specifying kvm cpus :) Cheers, Rusty.