From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takuya Yoshikawa Subject: Re: [PATCH 3/4] bitops: Introduce generic set_bit_le() Date: Tue, 12 Jun 2012 22:10:15 +0900 Message-ID: <20120612221015.53873334995f69573827c370@gmail.com> References: <20120611212735.f92ea521.yoshikawa.takuya@oss.ntt.co.jp> <20120611213101.5969fde5.yoshikawa.takuya@oss.ntt.co.jp> <201206111410.26359.arnd@arndb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <201206111410.26359.arnd@arndb.de> Sender: linux-kernel-owner@vger.kernel.org To: Arnd Bergmann Cc: Takuya Yoshikawa , bhutchings@solarflare.com, grundler@parisc-linux.org, avi@redhat.com, mtosatti@redhat.com, linux-net-drivers@solarflare.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, kvm@vger.kernel.org List-Id: linux-arch.vger.kernel.org On Mon, 11 Jun 2012 14:10:26 +0000 Arnd Bergmann wrote: > On Monday 11 June 2012, Takuya Yoshikawa wrote: > > From: Takuya Yoshikawa > > > > Needed to replace test_and_set_bit_le() in virt/kvm/kvm_main.c which is > > being used for this missing function. > > > > Signed-off-by: Takuya Yoshikawa > > Cc: Arnd Bergmann > > I would recommend adding the corresponding clear_bit_le() along with > set_bit_le, so the next person who needs that doesn't have to make > yet another patch. I will do in the next version. Now I have also noticed that I need to add the same code to powerpc's bitops file. Takuya From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-pb0-f46.google.com ([209.85.160.46]:47542 "EHLO mail-pb0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752509Ab2FLNKU (ORCPT ); Tue, 12 Jun 2012 09:10:20 -0400 Date: Tue, 12 Jun 2012 22:10:15 +0900 From: Takuya Yoshikawa Subject: Re: [PATCH 3/4] bitops: Introduce generic set_bit_le() Message-ID: <20120612221015.53873334995f69573827c370@gmail.com> In-Reply-To: <201206111410.26359.arnd@arndb.de> References: <20120611212735.f92ea521.yoshikawa.takuya@oss.ntt.co.jp> <20120611213101.5969fde5.yoshikawa.takuya@oss.ntt.co.jp> <201206111410.26359.arnd@arndb.de> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-arch-owner@vger.kernel.org List-ID: To: Arnd Bergmann Cc: Takuya Yoshikawa , bhutchings@solarflare.com, grundler@parisc-linux.org, avi@redhat.com, mtosatti@redhat.com, linux-net-drivers@solarflare.com, netdev@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arch@vger.kernel.org, kvm@vger.kernel.org Message-ID: <20120612131015.TWyn6ZctGVrnwgwxVsjRqDujQxo_KB08KXCXva-ZN10@z> On Mon, 11 Jun 2012 14:10:26 +0000 Arnd Bergmann wrote: > On Monday 11 June 2012, Takuya Yoshikawa wrote: > > From: Takuya Yoshikawa > > > > Needed to replace test_and_set_bit_le() in virt/kvm/kvm_main.c which is > > being used for this missing function. > > > > Signed-off-by: Takuya Yoshikawa > > Cc: Arnd Bergmann > > I would recommend adding the corresponding clear_bit_le() along with > set_bit_le, so the next person who needs that doesn't have to make > yet another patch. I will do in the next version. Now I have also noticed that I need to add the same code to powerpc's bitops file. Takuya