From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933782Ab3BSSow (ORCPT ); Tue, 19 Feb 2013 13:44:52 -0500 Received: from aserp1040.oracle.com ([141.146.126.69]:23076 "EHLO aserp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933292Ab3BSSou (ORCPT ); Tue, 19 Feb 2013 13:44:50 -0500 Date: Tue, 19 Feb 2013 13:43:37 -0500 From: Konrad Rzeszutek Wilk To: Stefano Stabellini Cc: Ian Campbell , "xen-devel@lists.xen.org" , "linux-kernel@vger.kernel.org" , Jan Beulich , "Keir (Xen.org)" , "Tim (Xen.org)" , "linux-arm-kernel@lists.infradead.org" Subject: Re: [PATCH LINUX v4] xen: event channel arrays are xen_ulong_t and not unsigned long Message-ID: <20130219184337.GB18831@phenom.dumpdata.com> References: <1361285327.1051.115.camel@zakaz.uk.xensource.com> <1361294951-28633-1-git-send-email-ian.campbell@citrix.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.21 (2010-09-15) X-Source-IP: acsinet21.oracle.com [141.146.126.237] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 19, 2013 at 06:12:35PM +0000, Stefano Stabellini wrote: > On Tue, 19 Feb 2013, Ian Campbell wrote: > > On ARM we want these to be the same size on 32- and 64-bit. > > > > This is an ABI change on ARM. X86 does not change. > > > > Signed-off-by: Ian Campbell > > Cc: Jan Beulich > > Cc: Keir (Xen.org) > > Cc: Tim Deegan > > Cc: Stefano Stabellini > > Cc: linux-arm-kernel@lists.infradead.org > > Cc: xen-devel@lists.xen.org > > Cc: Konrad Rzeszutek Wilk > > --- > > Changes since V3 > > s/read_evtchn_pending_sel/xchg_xen_ulong/ in a comment. > > Changes since V2 > > Add comments about the correct bitops to use, and on the ordering/barrier > > requirements on xchg_xen_ulong. > > Changes since V1 > > use find_first_set not __ffs > > fix some more unsigned long -> xen_ulong_t > > use more generic xchg_xen_ulong instead of ...read_evtchn... > > still doesn't apply to 3.8 Weird. It applied to my tree (stable/for-linus-3.9) without fuss. > > > > do { > > - unsigned long pending_words; > > + xen_ulong_t pending_words; > > > > vcpu_info->evtchn_upcall_pending = 0; > > > > if (__this_cpu_inc_return(xed_nesting_count) - 1) > > goto out; > > > > -#ifndef CONFIG_X86 /* No need for a barrier -- XCHG is a barrier on x86. */ > > - /* Clear master flag /before/ clearing selector flag. */ > > - wmb(); > > -#endif > > - pending_words = xchg(&vcpu_info->evtchn_pending_sel, 0); > > + /* > > + * Master flag must be /before/ clearing selector > > + * flag. xchg_xen_ulong must contain an appropriate > > + * barrier. > > + */ > > Master flag must be *cleared* ... > > > + pending_words = xchg_xen_ulong(&vcpu_info->evtchn_pending_sel, 0); > > > > start_word_idx = __this_cpu_read(current_word_idx); > > start_bit_idx = __this_cpu_read(current_bit_idx);