From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35996) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WN8D3-0003mN-Qh for qemu-devel@nongnu.org; Mon, 10 Mar 2014 17:58:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WN8Cz-0005jp-2x for qemu-devel@nongnu.org; Mon, 10 Mar 2014 17:58:09 -0400 Date: Mon, 10 Mar 2014 23:58:04 +0200 From: "Michael S. Tsirkin" Message-ID: <20140310215804.GD7104@redhat.com> References: <1394478649-9453-1-git-send-email-peter.maydell@linaro.org> <1394478649-9453-4-git-send-email-peter.maydell@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1394478649-9453-4-git-send-email-peter.maydell@linaro.org> Subject: Re: [Qemu-devel] [PATCH 03/12] hw/pci/pci_host.c: Avoid shifting left into sign bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: qemu-trivial@nongnu.org, qemu-ppc@nongnu.org, qemu-devel@nongnu.org, patches@linaro.org On Mon, Mar 10, 2014 at 07:10:39PM +0000, Peter Maydell wrote: > Add U suffix to avoid undefined behaviour. > > Signed-off-by: Peter Maydell Reviewed-by: Michael S. Tsirkin > --- > hw/pci/pci_host.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/hw/pci/pci_host.c b/hw/pci/pci_host.c > index 77c7d1f..2c17916 100644 > --- a/hw/pci/pci_host.c > +++ b/hw/pci/pci_host.c > @@ -142,8 +142,9 @@ static uint64_t pci_host_data_read(void *opaque, > { > PCIHostState *s = opaque; > uint32_t val; > - if (!(s->config_reg & (1 << 31))) > + if (!(s->config_reg & (1u << 31))) { > return 0xffffffff; > + } > val = pci_data_read(s->bus, s->config_reg | (addr & 3), len); > PCI_DPRINTF("read addr " TARGET_FMT_plx " len %d val %x\n", > addr, len, val); > -- > 1.9.0 >