[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] stubdom build failure with gcc 4.8 (Was: Re: [PATCH] Fix stubdom build failure for RELEASE-4.3.1)
create ^ title it stubdom build failures with gcc 4.8 thanks On Thu, 2013-10-31 at 14:44 +0000, Alex Sharp wrote: Hey, > > I noticed that RELEASE-4.3.1 (commit 4e8e0bdef96859e6f428af74be6f4a3bc7fd11f3) > was failing to make stubdom, complaining of various forms of format string > mismatch. User "concave" reported on #xentest during the test day yesterday that this issue affects 4.4-rc2 as well. There were a couple of minor comments, which should appear in the bug log once it is create (or search the archives). Assuming Alex isn't able to resubmit are there any devs with a suitable distro who'd like to take a run at it? Ian. > The following patch at least gets things to compile, but I'm not sure > if there's a deeper underlying issue. I'm using gcc version 4.8.1 > (Ubuntu/Linaro 4.8.1-10ubuntu8) on x86_64. My .config contains the > line "PYTHON_PREFIX_ARG=--install-layout=deb" and I'm ./configuring > with --prefix= > > Hope this helps. > > diff --git a/extras/mini-os/fbfront.c b/extras/mini-os/fbfront.c > index 54a5e67..b6aaa6b 100644 > --- a/extras/mini-os/fbfront.c > +++ b/extras/mini-os/fbfront.c > @@ -105,7 +105,7 @@ again: > free(err); > } > > - err = xenbus_printf(xbt, nodename, "page-ref","%u", virt_to_mfn(s)); > + err = xenbus_printf(xbt, nodename, "page-ref","%lu", virt_to_mfn(s)); > if (err) { > message = "writing page-ref"; > goto abort_transaction; > @@ -463,7 +463,7 @@ again: > free(err); > } > > - err = xenbus_printf(xbt, nodename, "page-ref","%u", virt_to_mfn(s)); > + err = xenbus_printf(xbt, nodename, "page-ref","%lu", virt_to_mfn(s)); > if (err) { > message = "writing page-ref"; > goto abort_transaction; > diff --git a/extras/mini-os/pcifront.c b/extras/mini-os/pcifront.c > index bbe21e0..9d0cb17 100644 > --- a/extras/mini-os/pcifront.c > +++ b/extras/mini-os/pcifront.c > @@ -413,7 +413,7 @@ int pcifront_physical_to_virtual (struct pcifront_dev > *dev, > continue; > } > > - if (sscanf(s, "%x:%x:%x.%x", dom, bus, slot, fun) != 4) { > + if (sscanf(s, "%x:%x:%x.%lx", dom, bus, slot, fun) != 4) { > printk("\"%s\" does not look like a PCI device address\n", > s); > free(s); > continue; > diff --git a/extras/mini-os/xenbus/xenbus.c b/extras/mini-os/xenbus/xenbus.c > index ee1691b..fa2e872 100644 > --- a/extras/mini-os/xenbus/xenbus.c > +++ b/extras/mini-os/xenbus/xenbus.c > @@ -672,7 +672,7 @@ char *xenbus_transaction_start(xenbus_transaction_t *xbt) > err = errmsg(rep); > if (err) > return err; > - sscanf((char *)(rep + 1), "%u", xbt); > + sscanf((char *)(rep + 1), "%lu", xbt); > free(rep); > return NULL; > } > @@ -769,7 +769,7 @@ domid_t xenbus_get_self_id(void) > domid_t ret; > > BUG_ON(xenbus_read(XBT_NIL, "domid", &dom_id)); > - sscanf(dom_id, "%d", &ret); > + sscanf(dom_id, "%u", (unsigned int*)&ret); > > return ret; > } > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@xxxxxxxxxxxxx > http://lists.xen.org/xen-devel _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |