[Bug 214169] Kernel panic using IPv6 and TCP-SIGNATURE (IPSEC)

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214169

Mark Linimon  changed:

   What|Removed |Added

 CC|freebsd-am...@freebsd.org   |
   Assignee|freebsd-bugs@FreeBSD.org|freebsd-...@freebsd.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 187015] [panic] make_dev_credv: bad si_name (error=17, si_name=agpgart)

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=187015

Geoff Mottram  changed:

   What|Removed |Added

 CC||ge...@minaret.biz

--- Comment #13 from Geoff Mottram  ---
Created attachment 176606
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176606=edit
Patch for FreeBSD 11 to remove kernel panic and number agpgart devices

I was affected when I installed FreeBSD 11 on a 2004 Toshiba laptop with an
Intel 855 graphics chip and an external VGA port. There was a kernel panic as
the PCI bus was checked for devices. Each graphics port has a separate set of
memory addresses and shows up separately during the PCI probe.

The patch uses make_dev_s with MAKEDEV_CHECKNAME to prevent a kernel panic if
something goes wrong but includes logging and state cleanup on error.

The patch creates /dev/agpgart for the first AGP device found on the bus and
numbers each unit after that (/dev/agpgart2, ...).

Without the patch, the work-around is to stop the boot loader and enter the
following commands:

set hint.agp.1.disabled=1
boot

Once booted, the following line is added to /boot/loader.conf:
hint.agp.1.disabled=1

These fixes have been tested with X11 and a dual monitor setup.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214171] [tcp] Out-of-order transmission severely degrades performance

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214171

Hiren Panchasara  changed:

   What|Removed |Added

 CC||hi...@freebsd.org
   Assignee|freebsd-bugs@FreeBSD.org|freebsd-...@freebsd.org

--- Comment #1 from Hiren Panchasara  ---
Yes, you are right. We don't do well with loss in general and ooo packets in
particular. We are trying to fix a bunch of issues around that right now.

Would it be possible to you to test -CURRENT? That should work a little better.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 205131] random_fortuna: module cannot be loaded if crypto is compiled into the kernel

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=205131

Martin Birgmeier  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |Overcome By Events

--- Comment #1 from Martin Birgmeier  ---
This seems to be outdated...

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214173] gcc48 doesn't accept -march=nehalem

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214173

Jung-uk Kim  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|ger...@freebsd.org

--- Comment #2 from Jung-uk Kim  ---
Gerald, please take a look.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214173] gcc48 doesn't accept -march=nehalem

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214173

Jung-uk Kim  changed:

   What|Removed |Added

 CC||j...@freebsd.org

--- Comment #1 from Jung-uk Kim  ---
Created attachment 176595
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176595=edit
Patch to treat nehalem as corei7

This patch is for lang/gcc.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214173] gcc48 doesn't accept -march=nehalem

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214173

Bug ID: 214173
   Summary: gcc48 doesn't accept -march=nehalem
   Product: Base System
   Version: 11.0-RELEASE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: conf
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: lant...@gmail.com
CC: freebsd-am...@freebsd.org
CC: freebsd-am...@freebsd.org

/usr/share/mk/bsd.cpu.mk in FreeBSD 11 unconditionally convert CPUTYPE=corei7
to CPUTYPE=nehalem. It can cause error in ports built with the default version
of gcc, including gcc itself, ghc, and other ports with USE_GCC=yes.

A simple test:

$ echo 'int main(){}' > main.c
$ gcc48 -march=corei7 main.c && echo "OK"
OK
$ gcc48 -march=nehalem main.c && echo "OK"
main.c:1:0: error: bad value (nehalem) for -march= switch
 int main(){}
 ^

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214171] [tcp] Out-of-order transmission severely degrades performance

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214171

Bug ID: 214171
   Summary: [tcp] Out-of-order transmission severely degrades
performance
   Product: Base System
   Version: 10.3-RELEASE
  Hardware: Any
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: noah.bergba...@tum.de

Downloading data from a FreeBSD server over a fast (~700Mbps with 0.1% loss)
internet connection that suffers from a lot of packet reordering, I'm seeing
very bad transmission rates (~4Mbps whereas Linux gets ~40Mbps on the same
connection).

Traffic analysis shows that when the client (Windows in my tests) receives
out-of-order packets, it first sends out SACKs until the missing packet arrives
(usually just ~1ms late). Then it ACKs everything normally.

Linux reacts to this by just carrying on - after all, no packets were dropped.
FreeBSD however appears to react to each SACK immediately and indepentently,
assuming that the late packets were actually lost. Because of that, it
retransmits them and lowers the transmission rate (I tested with several
different congestion control modules and it affects all of them).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214169] Kernel panic using IPv6 and TCP-SIGNATURE (IPSEC)

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214169

Bug ID: 214169
   Summary: Kernel panic using IPv6 and TCP-SIGNATURE (IPSEC)
   Product: Base System
   Version: 11.0-STABLE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: anderson.soa...@embrapa.br
CC: freebsd-am...@freebsd.org
CC: freebsd-am...@freebsd.org

After migrate my gateway to FreeBSD 11 STABLE, the quagga bgpd daemon started
to cause kernel panics in my gateway every time quagga starts.
At first, I thought it was a quagga related problem and I tried to replace it
to OpenBGPD. But as soon as I started openbgpd, the system crashed again.
After that, I was able to trace the problem to some bgp peers using password
protected connections. A few more tests showed that the problem only happened
in IPv6 connections.
Since bgp protected connections use RFC 2385 TCP MD5 signatures option, I've
tried to simulate the problem in other environment using IPSEC and netcat (nc
-S).
As expected, every time I tried to connect two hosts with TCP-MD5 signatures,
the host opening the connection crashes. Nothing happens to the host listening
to connections.
I've forced to downgrade my gateway to FreeBSD 10.3, and since then, my gateway
has worked without any failure.

The kernel panics as follow:

Fatal trap 12: page fault while in kernel mode
cpuid = 1; apic id = 01
fault virtual address   = 0x8
fault code  = supervisor read data, page not present
instruction pointer = 0x20:0x80c6e0ea
stack pointer   = 0x28:0xfe00510da6b0
frame pointer   = 0x28:0xfe00510da790
code segment= base 0x0, limit 0xf, type 0x1b
= DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags= interrupt enabled, resume, IOPL = 0
current process = 743 (nc)
trap number = 12
panic: page fault
cpuid = 1
KDB: stack backtrace:
#0 0x80a98d27 at kdb_backtrace+0x67
#1 0x80a4f6c2 at vpanic+0x182
#2 0x80a4f533 at panic+0x43
#3 0x80ef2e41 at trap_fatal+0x351
#4 0x80ef3033 at trap_pfault+0x1e3
#5 0x80ef25bc at trap+0x26c
#6 0x80ed5d11 at calltrap+0x8
#7 0x80c6801b at tcp_output+0x16ab
#8 0x80c78b11 at tcp6_usr_connect+0x271
#9 0x80aee5de at kern_connectat+0x12e
#10 0x80aee487 at sys_connect+0x77
#11 0x80ef37ee at amd64_syscall+0x51e
#12 0x80ed5ffb at Xfast_syscall+0xfb


How-To-Repeat:

- In a system with TCP_SIGNATURE kernel option enabled, enable IPSEC and add a
TCP-MD5 key in /etc/ipsec.conf for each side of connection.

- Run nc -6S  


The system

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214001] Difference of ISO install images 11.0 and 10.3

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214001

Mark Linimon  changed:

   What|Removed |Added

Version|unspecified |11.0-RELEASE
  Component|FreeBSD Update  |misc
Product|Services|Base System
   Assignee|sect...@freebsd.org |freebsd-bugs@FreeBSD.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214004] Hyper-V no buffer space are available

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214004

Mark Linimon  changed:

   What|Removed |Added

 CC|freebsd-am...@freebsd.org   |
   Assignee|freebsd-bugs@FreeBSD.org|freebsd-virtualization@Free
   ||BSD.org

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214107] [bhyve] Error during installation Remote Desktop Services in Windows 2012R2 and 2016

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214107

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|freebsd-virtualization@Free
   ||BSD.org
 CC|freebsd-am...@freebsd.org   |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214164] camcontrol devlist fails on ioctl

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214164

Mark Linimon  changed:

   What|Removed |Added

 CC|freebsd-am...@freebsd.org   |
   Keywords||regression

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214165] [patch] fix to support xtoolchains that need WITHOUT_FORMAT_EXTENSIONS

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214165

Mark Linimon  changed:

   What|Removed |Added

   Assignee|freebsd-bugs@FreeBSD.org|freebsd-toolchain@FreeBSD.o
   ||rg

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 203371] [patch] libc.so patch for worlds built WITHOUT_SSP - should not add libssp_nonshared.a

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203371

Kenneth Salerno  changed:

   What|Removed |Added

Version|10.1-RELEASE|11.0-RELEASE

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 203371] [patch] libc.so patch for worlds built WITHOUT_SSP - should not add libssp_nonshared.a

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203371

Kenneth Salerno  changed:

   What|Removed |Added

 Attachment #161421|0   |1
is obsolete||

--- Comment #1 from Kenneth Salerno  ---
Created attachment 176591
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176591=edit
fix for WITHOUT_SSP

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214165] [patch] fix to support xtoolchains that need WITHOUT_FORMAT_EXTENSIONS

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214165

Bug ID: 214165
   Summary: [patch] fix to support xtoolchains that need
WITHOUT_FORMAT_EXTENSIONS
   Product: Base System
   Version: 11.0-RELEASE
  Hardware: Any
OS: Any
Status: New
  Keywords: patch
  Severity: Affects Only Me
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: kennethsale...@yahoo.com
  Keywords: patch

Created attachment 176590
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176590=edit
fix for XCCs which are not patched to support -fformat-extensions

This patch compliments sys/conf/kern.mk's test for MK_FORMAT_EXTENSIONS ==
"no", which is only available by sys/conf/kern.options, so can't use that same
test in share/mk/bsd.sys.mk here.

Patch tested successfully with 11.0-RELEASE-p3 for i386 using xtoochain built
from unpatched gcc-5.4.0 supporting --sysroot.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214164] camcontrol devlist fails on ioctl

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214164

Bug ID: 214164
   Summary: camcontrol devlist fails on ioctl
   Product: Base System
   Version: 11.0-RELEASE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: bin
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: vicnau...@gmail.com
CC: freebsd-am...@freebsd.org
CC: freebsd-am...@freebsd.org

Hi,

After upgrade to 11.0-RELEASE-p1 I started having problem with camcontrol,
smartctl, etc

# camcontrol devlist
camcontrol: error sending CAMIOCOMMAND ioctl: Inappropriate ioctl for device


# smartctl /dev/ada0
smartctl 6.5 2016-05-07 r4318 [FreeBSD 11.0-RELEASE-p1 amd64] (local build)
Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org

error sending CAMIOCOMMAND ioctl: Inappropriate ioctl for device
Unable to get CAM device list
/dev/ada0: Unable to detect device type
Please specify device type with the -d option.

Use smartctl -h to get a usage summary


Motherboard: Asrock N68-GE3 UCC (NVIDIA® GeForce 7025 / nForce 630a)
CPU: AMD Sempron 145

atapci1@pci0:0:8:0: class=0x010185 card=0x03f61849 chip=0x03f610de rev=0xa2
hdr=0x00
vendor = 'NVIDIA Corporation'
device = 'MCP61 SATA Controller'
class  = mass storage
subclass   = ATA


wbr
victor

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"

[Bug 212822] Cannot set console font on FreeBSD 11.0-RC3

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=212822

Sergey  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |FIXED

--- Comment #4 from Sergey  ---
The issue is solved.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214163] kernel build fails: undefined reference to `memset'

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214163

Bug ID: 214163
   Summary: kernel build fails: undefined reference to `memset'
   Product: Base System
   Version: 11.0-RELEASE
  Hardware: i386
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: o...@zaplinski.de
CC: freebsd-i...@freebsd.org
CC: freebsd-i...@freebsd.org

Created attachment 176589
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176589=edit
my src.conf

--- all_subdir_sbin ---
--- all_subdir_sbin/kldconfig ---
===> sbin/kldconfig (all)
--- all_subdir_sys ---
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(rijndael-api-fst.o):
In function `rijndael_cipherInit':
/usr/src/sys/boot/geli/../../crypto/rijndael/rijndael-api-fst.c:(.text+0x141):
undefined reference to `memset'
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(md5c.o): In
function `MD5Transform':
/usr/src/sys/boot/geli/../../../lib/libmd/md5c.c:(.text+0x84f): undefined
reference to `memset'
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(md5c.o): In
function `_libmd_MD5Final':
/usr/src/sys/boot/geli/../../../lib/libmd/md5c.c:(.text+0x963): undefined
reference to `memset'
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(sha512c.o): In
function `_libmd_SHA512_Final':
/usr/src/sys/boot/geli/../../crypto/sha2/sha512c.c:(.text+0x2287): undefined
reference to `memset'
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(sha512c.o): In
function `SHA512_Pad':
/usr/src/sys/boot/geli/../../crypto/sha2/sha512c.c:(.text+0x2314): undefined
reference to `memset'
/usr/obj/usr/src/sys/boot/i386/loader/../../geli/libgeliboot.a(sha512c.o):/usr/src/sys/boot/geli/../../crypto/sha2/sha512c.c:(.text+0x252d):
more undefined references to `memset' follow
cc: error: linker command failed with exit code 1 (use -v to see invocation)
*** [loader.sym] Error code 1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 214162] kernel build fails because of missing libstand.a

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214162

Bug ID: 214162
   Summary: kernel build fails because of missing libstand.a
   Product: Base System
   Version: 11.0-RELEASE
  Hardware: amd64
OS: Any
Status: New
  Severity: Affects Only Me
  Priority: ---
 Component: kern
  Assignee: freebsd-bugs@FreeBSD.org
  Reporter: o...@zaplinski.de
CC: freebsd-am...@freebsd.org
CC: freebsd-am...@freebsd.org

Created attachment 176588
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=176588=edit
my src.conf

Building the kernel fails:

--- all_subdir_rescue ---
(cd /usr/src/rescue/rescue/../../sbin/mknod &&  make -DRESCUE
CRUNCH_CFLAGS=-DRESCUE MK_AUTO_OBJ=no DIRPRFX=rescue/rescue/mknod/ depend &&
make -DRESCUE CRUNCH_CFLAGS=-DRESCUE MK_AUTO_OBJ=no
DIRPRFX=rescue/rescue/mknod/ mknod.o)
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/chat ---
===> usr.bin/chat (all)
--- all_subdir_usr.bin/chpass ---
===> usr.bin/chpass (all)
--- all_subdir_lib ---
--- all_subdir_lib/libblocksruntime ---
===> lib/libblocksruntime (all)
--- all_subdir_share ---
--- all_subdir_share/numericdef ---
===> share/numericdef (all)
--- all_subdir_sys ---
cc: error: no such file or directory: '/usr/obj/usr/src/tmp/boot/libstand.a'
*** [userboot.so] Error code 1

make[6]: stopped in /usr/src/sys/boot/userboot/userboot
1 error

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 203349] [META] FreeBSD Foundation sponsored project dependencies for FreeBSD 11.0

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=203349
Bug 203349 depends on bug 204037, which changed state.

Bug 204037 Summary: Poudriere panics zfs with 'solaris assert: zrl->zr_refcount 
== 0 (0x6 == 0x0)'
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204037

   What|Removed |Added

 Status|In Progress |Closed
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 213481] SMbus ioctls don't transfer the struct smbcmd's rdata back to userland

2016-11-03 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=213481

Andriy Gapon  changed:

   What|Removed |Added

 CC|a...@freebsd.org |
   Assignee|freebsd-bugs@FreeBSD.org|a...@freebsd.org

--- Comment #1 from Andriy Gapon  ---
Could you please test and review a patch in https://reviews.freebsd.org/D8430 ?
Thank you.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"