From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Akinobu Mita" Subject: Re: [PATCH 1 of 4] mm: add a ptep_modify_prot transaction abstraction Date: Thu, 19 Jun 2008 21:20:47 +0900 Message-ID: <961aa3350806190520m28edf130x3bb40d1ced56a303@mail.gmail.com> References: <1213831403.8011.24.camel@pasglop> <4859A149.9090004@goop.org> <4859A528.1010107@goop.org> <4859AA47.2020903@goop.org> <20080619115832.GM15228@elte.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <20080619115832.GM15228@elte.hu> Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org To: Ingo Molnar Cc: Linus Torvalds , Jeremy Fitzhardinge , benh@kernel.crashing.org, xen-devel , Peter Zijlstra , kvm-devel , x86@kernel.org, LKML , Virtualization Mailing List , Hugh Dickins , Thomas Gleixner List-Id: virtualization@lists.linuxfoundation.org > Below is the commit, it needed a small amount of massaging to apply the > void * -> unsigned long * change in the x86/bitops topic. So you need to change this line > +#define CONST_MASK_ADDR BITOP_ADDR(addr + (nr>>3)) to be #define CONST_MASK_ADDR BITOP_ADDR((void *)addr + (nr>>3)) or something like this. Otherwise it will get wrong address in set_bit > -static inline void set_bit(int nr, volatile unsigned long *addr) > +static inline void set_bit(unsigned int nr, volatile unsigned long *addr) > { > - asm volatile(LOCK_PREFIX "bts %1,%0" : ADDR : "Ir" (nr) : "memory"); > + if (IS_IMMEDIATE(nr)) > + asm volatile(LOCK_PREFIX "orb %1,%0" : CONST_MASK_ADDR : "i" (CONST_MASK) : "memory"); > + else > + asm volatile(LOCK_PREFIX "bts %1,%0" : ADDR : "Ir" (nr) : "memory"); > }