search for: buildresult

Displaying 9 results from an estimated 9 matches for "buildresult".

2014 Jan 15
2
[PATCH stable-only] virtio-net: fix build on m68k and sparc64
On Wed, Jan 15, 2014 at 09:36:13AM +0100, Geert Uytterhoeven wrote: > On Wed, Jan 15, 2014 at 9:26 AM, Michael S. Tsirkin <mst at redhat.com> wrote: > > As a result of backporting a bugfix, virtio_net started passing void * > > to page_address, assuming that it will get silently converted to struct > > page *. But this does not happen on architectures where page_address
2014 Jan 15
2
[PATCH stable-only] virtio-net: fix build on m68k and sparc64
On Wed, Jan 15, 2014 at 09:36:13AM +0100, Geert Uytterhoeven wrote: > On Wed, Jan 15, 2014 at 9:26 AM, Michael S. Tsirkin <mst at redhat.com> wrote: > > As a result of backporting a bugfix, virtio_net started passing void * > > to page_address, assuming that it will get silently converted to struct > > page *. But this does not happen on architectures where page_address
2019 Dec 09
1
[PATCH RFC net-next v8 1/3] netdev: pass the stuck queue to the timeout handler
...- __ei_tx_timeout(dev); > + __ei_tx_timeout(dev, txqueue); > } > EXPORT_SYMBOL(eip_tx_timeout); On Mon, Dec 9, 2019 at 6:37 AM <noreply at ellerman.id.au> wrote: > FAILED linux-next/m68k-defconfig/m68k Mon Dec 09, 16:34 > > http://kisskb.ellerman.id.au/kisskb/buildresult/14060060/ > > Commit: Add linux-next specific files for 20191209 > 6cf8298daad041cd15dc514d8a4f93ca3636c84e > Compiler: m68k-linux-gcc (GCC) 4.6.3 / GNU ld (GNU Binutils) 2.22 > > Possible errors > --------------- > > drivers/net/ethernet/8390/8390p.c:44:6: er...
2016 Jul 04
0
Build regressions/improvements in v4.7-rc6
...NG_AVAIL_ALIGN_SIZE); The alignment of the *vq->avail should be '2' on all architectures, however an ARM OABI compiler will have a padded structure with alignment '4'. Looking at the build logs, I find it only in a single randconfig build at http://kisskb.ellerman.id.au/kisskb/buildresult/12735927/ which apparently enabled the vhost driver in combination with ARM_AEABI=n. In my own randconfig builds I am forcing ARM_AEABI=y because there are a couple of other problems with OABI. If we want to avoid this one, we could make the inclusion of drivers/vhost/Kconfig from arch/arm/kvm/Kc...
2014 Jan 15
0
[PATCH stable-only] virtio-net: fix build on m68k and sparc64
...investigating a similar failure in -next. >> >> Gr{oetje,eeting}s, >> >> Geert > > You don't mean linux-next? And not in virtio-net? I don't see page_address > being used on void * anywhere there. http://kisskb.ellerman.id.au/kisskb/buildresult/10469287/ I'm making {,set}page_address() static inline to fix this. Gr{oetje,eeting}s, Geert -- Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert at linux-m68k.org In personal conversations with technical people, I call myself a hacker. But when...
2016 Jul 04
2
Build regressions/improvements in v4.7-rc6
On Mon, Jul 4, 2016 at 10:12 AM, Geert Uytterhoeven <geert at linux-m68k.org> wrote: > JFYI, when comparing v4.7-rc6[1] to v4.7-rc5[3], the summaries are: > - build errors: +3/-2 + /home/kisskb/slave/src/drivers/vhost/vhost.c: error: call to '__compiletime_assert_844' declared with attribute error: BUILD_BUG_ON failed: __alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE:
2016 Jul 04
2
Build regressions/improvements in v4.7-rc6
On Mon, Jul 4, 2016 at 10:12 AM, Geert Uytterhoeven <geert at linux-m68k.org> wrote: > JFYI, when comparing v4.7-rc6[1] to v4.7-rc5[3], the summaries are: > - build errors: +3/-2 + /home/kisskb/slave/src/drivers/vhost/vhost.c: error: call to '__compiletime_assert_844' declared with attribute error: BUILD_BUG_ON failed: __alignof__ *vq->avail > VRING_AVAIL_ALIGN_SIZE:
2013 Jan 26
0
Processed: switching email address
...r 682981 ! Bug #682981 [xfonts-utils] update-fonts-dir removes /u/s/f/X11/encodings/encodings.dir Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>' > submitter 420458 ! Bug #420458 [pbuilder] pbuilder: if BUILDRESULT is created, it's owned by root:root Changed Bug submitter to 'Andreas Beckmann <anbe at debian.org>' from 'Andreas Beckmann <debian at abeckmann.de>' > submitter 688205 ! Bug #688205 {Done: gregor herrmann <gregoa at debian.org>} [mono-xsp2] mono-xsp2: modif...
2019 Dec 03
4
[PATCH RFC net-next v8 0/3] netdev: ndo_tx_timeout cleanup
A bunch of drivers want to know which tx queue triggered a timeout, and virtio wants to do the same. We actually have the info to hand, let's just pass it on to drivers. Note: tested with an experimental virtio patch by Julio. That patch itself isn't ready yet though, so not included. Other drivers compiled only. Michael S. Tsirkin (3): netdev: pass the stuck queue to the timeout