From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PULL 21/29] xen/pt: Sync up the dev.config and data values. Date: Tue, 15 Sep 2015 09:25:31 -0400 Message-ID: <20150915132531.GC9134@l.oracle.com> References: <1441905361-31967-21-git-send-email-stefano.stabellini@eu.citrix.com> <55F69ADF.40404@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Stefano Stabellini Cc: Paolo Bonzini , xen-devel@lists.xensource.com, qemu-devel@nongnu.org, peter.maydell@linaro.org List-Id: xen-devel@lists.xenproject.org On Tue, Sep 15, 2015 at 11:07:02AM +0100, Stefano Stabellini wrote: > CC Konrad > > On Mon, 14 Sep 2015, Paolo Bonzini wrote: > > On 10/09/2015 19:15, Stefano Stabellini wrote: > > > + > > > + switch (reg->size) { > > > + case 1: rc = xen_host_pci_get_byte(&s->real_device, offset, (uint8_t *)&val); > > > > A bit ugly, and it relies on the host being little endian. > > > > > + break; > > > + case 2: rc = xen_host_pci_get_word(&s->real_device, offset, (uint16_t *)&val); > > > > Same here. > > cpu_to_le32? > > But in practice, Xen being little endian only, I doubt that xen_pt_config_init.c > would actually work on be. > > > > > + break; > > > + case 4: rc = xen_host_pci_get_long(&s->real_device, offset, &val); > > > + break; > > > + default: assert(1); > > > > This should be assert(0) or, better, abort(). OK. Stefano, do you want me to: 1). Rebase the patches on top of your tag? 2). Send an follow up patch to change this to abort()? (and wherever else I used assert(..)? 3). Wait till Paolo is done going through the patchset and then revisit 1) or 2)?