From mboxrd@z Thu Jan 1 00:00:00 1970 From: Radim =?utf-8?B?S3LEjW3DocWZ?= Subject: Re: [PATCH v2 2/5] KVM: add KVM request variants without barrier Date: Wed, 1 Mar 2017 17:58:02 +0100 Message-ID: <20170301165801.GC20547@potion> References: <20170224195002.28030-1-rkrcmar@redhat.com> <20170224195002.28030-3-rkrcmar@redhat.com> <096685e0-925a-03af-f4d5-349ba244241c@redhat.com> <969967af-8acd-4c63-ee69-a453112d8434@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org, Paolo Bonzini , Andrew Jones , Marc Zyngier , Christian Borntraeger , Cornelia Huck , James Hogan , Paul Mackerras , Christoffer Dall To: David Hildenbrand Return-path: Content-Disposition: inline In-Reply-To: <969967af-8acd-4c63-ee69-a453112d8434@redhat.com> Sender: linux-kernel-owner@vger.kernel.org List-Id: kvm.vger.kernel.org 2017-02-27 11:18+0100, David Hildenbrand: > Am 27.02.2017 um 11:02 schrieb David Hildenbrand: >> Am 24.02.2017 um 20:49 schrieb Radim Krčmář: >>> The leading underscores denote that the call is just a bitop wrapper. >> >> Actually, the leading underscore is misleading >> >> If we want to match the semantics of set/test/clear_bit, using a leading >> underscore might feel like using the non-atomic variants like >> __clear_bit and friends. >> >> I'd prefer to simply drop the underscore. >> > > Okay, this is not really possible for __kvm_request_set(). Hm..... Yeah, requests are always atomic, but have some extra cruft on top of bit operations and underscores are similar in the sense of doing less that the non-underscored version. Also, the underscores were something to make its use look undesirable in the code. kvm_request_set and kvm_request_test_and_clear use a barrier and kvm_request_test could be expected to do so as well. I think that a barrier makes no sense in kvm_request_clear, but called it with underscores for consistency with others and also because I think that some callers of could use a second thought.