Build failed in Jenkins: FreeBSD_HEAD #2664

2015-04-18 Thread jenkins-admin
See Changes: [alc] Eliminate an unused variable. MFC after: 1 week [eadler] bin/ed: use correct type in multiplication The result is line_t** so the multiplication should be size * sizeof(line_t*) MFC After:

Re: Build failed in Jenkins: FreeBSD_HEAD #2663

2015-04-18 Thread Justin Hibbits
Sorry about that. Forgot the pmc.h changes. -Justin On Apr 18, 2015 4:53 PM, "Justin Hibbits" wrote: > Crap, sorry. I wonder how that compiled fine for me. I'll fix it in a > couple hours when I get home. > > -Justin > On Apr 18, 2015 4:49 PM, "Garrett Cooper" wrote: > >> >> > On Apr 18, 2015,

Re: Build failed in Jenkins: FreeBSD_HEAD #2663

2015-04-18 Thread Justin Hibbits
Crap, sorry. I wonder how that compiled fine for me. I'll fix it in a couple hours when I get home. -Justin On Apr 18, 2015 4:49 PM, "Garrett Cooper" wrote: > > > On Apr 18, 2015, at 15:56, jenkins-ad...@freebsd.org wrote: > > > > ===> lib/libpmc (all) > > --- libpmc.So --- > > cc -fpic -DPIC

Re: Build failed in Jenkins: FreeBSD_HEAD #2663

2015-04-18 Thread Garrett Cooper
> On Apr 18, 2015, at 15:56, jenkins-ad...@freebsd.org wrote: > ===> lib/libpmc (all) > --- libpmc.So --- > cc -fpic -DPIC -O2 -pipe -std=gnu99 -fstack-protector -Wsystem-headers > -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes > -Wmissing-prototypes -Wpointer-a

Build failed in Jenkins: FreeBSD_HEAD #2663

2015-04-18 Thread jenkins-admin
See Changes: [kib] Regen. [kib] Regen. [kib] The lseek(2), mmap(2), truncate(2), ftruncate(2), pread(2), and pwrite(2) syscalls are wrapped to provide compatibility with pre-7.x kernels which required padding before the off_t parameter

[Request for Help] Reducing gcc 4.9 compilation warnings

2015-04-18 Thread Craig Rodrigues
Hi, After the latest commits by members of freebsd-toolchain@ , I have managed to compile latest CURRENT world and GENERIC kernel on amd64 with an gcc 4.9 external toolchain by doing: pkg install devel/amd64-xtoolchain-gcc cd /usr/src sed -i "" -e 's/boot2//' sys/boot/i386/Makefile ma

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Konstantin Belousov
On Sat, Apr 18, 2015 at 10:53:10AM -0700, David Wolfskill wrote: > On Sat, Apr 18, 2015 at 07:46:40PM +0300, Konstantin Belousov wrote: > > ... > > No, this is equally wrong. If the problem is due to uintmax_t not brought > > in to the scope by other dependencies, explicit > > #include > > should

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread David Wolfskill
On Sat, Apr 18, 2015 at 07:46:40PM +0300, Konstantin Belousov wrote: > ... > No, this is equally wrong. If the problem is due to uintmax_t not brought > in to the scope by other dependencies, explicit > #include > should be added at the prologue. > > I am struggling for two days trying to pass m

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Steven Hartland
On 18/04/2015 17:30, David Wolfskill wrote: On Sat, Apr 18, 2015 at 06:34:59PM +0300, Konstantin Belousov wrote: ... - printf("LE_STATUS: %d %d %lx\n", e, rp.status, rp.le_status); + printf("LE_STATUS: %d %d %jx\n", e, rp.status, rp.le_status); return 0; } The j modifica

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Konstantin Belousov
On Sat, Apr 18, 2015 at 09:30:57AM -0700, David Wolfskill wrote: > On Sat, Apr 18, 2015 at 06:34:59PM +0300, Konstantin Belousov wrote: > > ... > > > - printf("LE_STATUS: %d %d %lx\n", e, rp.status, rp.le_status); > > > + printf("LE_STATUS: %d %d %jx\n", e, rp.status, rp.le_status); > > > > > >

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread David Wolfskill
On Sat, Apr 18, 2015 at 06:34:59PM +0300, Konstantin Belousov wrote: > ... > > - printf("LE_STATUS: %d %d %lx\n", e, rp.status, rp.le_status); > > + printf("LE_STATUS: %d %d %jx\n", e, rp.status, rp.le_status); > > > > return 0; > > } > > The j modificator specifies that the type of the

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread David Wolfskill
On Sat, Apr 18, 2015 at 11:36:05PM +0800, Marcelo Araujo wrote: > Hi, > > Saw your patch, why %ju and not %llx as the output shows? %llx fails amd64, as the object is 64 bits, and therefore merely "long", not "long long" in amd64. I will test kib@'s recommendation (casting) & report. >... Peac

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Marcelo Araujo
Hi, Saw your patch, why %ju and not %llx as the output shows? Best, Head/amd64 @ r281689 built OK, but my i386 build failed: ... --- usr.sbin.all__D --- --- all_subdir_bluetooth --- /usr/src/usr.sbin/bluetooth/hccontrol/le.c:236:4: error: format specifies type 'unsigned long' but the argument ha

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Konstantin Belousov
On Sat, Apr 18, 2015 at 08:17:02AM -0700, David Wolfskill wrote: > Head/amd64 @ r281689 built OK, but my i386 build failed: > > ... > --- usr.sbin.all__D --- > --- all_subdir_bluetooth --- > /usr/src/usr.sbin/bluetooth/hccontrol/le.c:236:4: error: format specifies > type 'unsigned long' but the a

Re: Fix for r281680 -- broke i386 world

2015-04-18 Thread Marcelo Araujo
I didn't catch it. But please unbroken the I386 build. On Apr 18, 2015 11:17 PM, "David Wolfskill" wrote: > Head/amd64 @ r281689 built OK, but my i386 build failed: > > ... > --- usr.sbin.all__D --- > --- all_subdir_bluetooth --- > /usr/src/usr.sbin/bluetooth/hccontrol/le.c:236:4: error: format s

Fix for r281680 -- broke i386 world

2015-04-18 Thread David Wolfskill
Head/amd64 @ r281689 built OK, but my i386 build failed: ... --- usr.sbin.all__D --- --- all_subdir_bluetooth --- /usr/src/usr.sbin/bluetooth/hccontrol/le.c:236:4: error: format specifies type 'unsigned long' but the argument has type 'u_int64_t' (aka 'unsigned long long') [-Werror,-Wformat]

Jenkins build is back to stable : FreeBSD_HEAD-tests2 #944

2015-04-18 Thread jenkins-admin
See ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Jenkins build is back to normal : FreeBSD_HEAD #2660

2015-04-18 Thread jenkins-admin
See ___ freebsd-current@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Build failed in Jenkins: FreeBSD_HEAD #2659

2015-04-18 Thread jenkins-admin
See Changes: [rpaulo] Fix French typos in etherswitch. [araujo] Fix misspelling. [araujo] Improve code style(9), no functional changes. Differential Revision: D2320 Reviewed by:takawata [takawata] Forgot to add default

Build failed in Jenkins: FreeBSD_HEAD #2658

2015-04-18 Thread jenkins-admin
See Changes: [takawata] Add LE related HCI control command to hccontrol(1). [loos] Move the items common to all SoCs to a single file. [loos] Fix the style(9) and adds two missing parentheses on the licence. Reduce the differences to