From owner-freebsd-current@freebsd.org  Sun Dec 25 12:10:03 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 94240C90C2F
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sun, 25 Dec 2016 12:10:03 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 865039AB;
 Sun, 25 Dec 2016 12:10:03 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 0C0C541D;
 Sun, 25 Dec 2016 12:10:03 +0000 (UTC)
Date: Sun, 25 Dec 2016 12:09:54 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, avos@FreeBSD.org, jamie@FreeBSD.org, ngie@FreeBSD.org, 
 hrs@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org
Message-ID: <623112828.120.1482667803056.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <971743958.118.1482581401398.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <971743958.118.1482581401398.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_amd64_gcc - Build #1743 - Still Failing
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 25 Dec 2016 12:10:03 -0000

FreeBSD_HEAD_amd64_gcc - Build #1743 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1=
743/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/174=
3/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1743=
/console

Change summaries:

310534 by mav:
Improve third-party copy error reporting.

For EXTENDED COPY:
 - improve parameters checking to report some errors before copy start;
 - forward sense data from copy target as descriptor in case of error;
 - report which CSCD reported error in sense key specific information.
For WRITE USING TOKEN:
 - pass through real sense data from copy target instead of reporting
our copy error, since for initiator its a "simple" write, not a copy.

MFC after:=092 weeks

310530 by jamie:
Improve IP address list representation in libxo output.

Extract decision-making about special-case printing of certain
jail parameters into a function.

Refactor emitting of IPv4 and IPv6 address lists into a function.

Resulting user-facing changes:

XO_VERSION is bumped to 2.

In verbose mode (-v), IPv4 and IPv6-Addresses are now properly emitted
as separate lists.
This only affects the output in encoding styles, i.e. xml and json.

{                                    {
  "__version": "1",                    "__version": "2",
  "jail-information": {                "jail-information": {
    "jail": [                            "jail": [
      {                                    {
        "jid": 166,                          "jid": 166,
        "hostname": "foo.com",               "hostname": "foo.com",
        "path": "/var/jail/foo",             "path": "/var/jail/foo",
        "name": "foo",                       "name": "foo",
        "state": "ACTIVE",                   "state": "ACTIVE",
        "cpusetid": 2,                       "cpusetid": 2,
        "ipv4_addrs": [                      "ipv4_addrs": [
          "10.1.1.1",                          "10.1.1.1",
          "10.1.1.2",                          "10.1.1.2",
          "10.1.1.3",              |           "10.1.1.3"
                                   >         ],
                                   >         "ipv6_addrs": [
          "fe80::1000:1",                      "fe80::1000:1",
          "fe80::1000:2"                       "fe80::1000:2"
        ]                                    ]
      }                                    }
    ]                                    ]
  }                                    }
}                                    }

In -n mode, ip4.addr and ip6.addr are formatted in the encoding styles'
native list types, e.g. instead of comma-separated lists, JSON arrays
are printed.

jls -n all --libxo json
 ...
 "ip4.addr": [
    "10.1.1.1",
    "10.1.1.2",
    "10.1.1.3"
  ],
  "ip4.saddrsel": true,
  "ip6.addr": [
    "fe80::1000:1",
    "fe80::1000:2"
  ],
  ...

jls -n all --libxo xml
  ...
  <ip4.addr>10.1.1.1</ip4.addr>
  <ip4.addr>10.1.1.2</ip4.addr>
  <ip4.addr>10.1.1.3</ip4.addr>
  <ip4.saddrsel>true</ip4.saddrsel>
  <ip6.addr>fe80::1000:1</ip6.addr>
  <ip6.addr>fe80::1000:2</ip6.addr>
  ...

PR:=09=09215008
Submitted by:=09Christian Schwarz <me@cschwarz.com>
Differential Revision:=09https://reviews.freebsd.org/D8766

310529 by avos:
net80211: fix 'pending CAC -> RUN transition lost' bug.

Ensure that CAC -> RUN state transition will be requested
for every vap only once.

310528 by hrs:
- Fix -N flag (NoBind) for AF_LOCAL sockets.
- Do setsockopt(SO_RCVBUF) for AF_LOCAL sockets regardless of -s flag.

310527 by hrs:
Fix gcc build.

Spotted by:=09lidl

310524 by mav:
Improve length handling when writing sense data.

 - Allow maximal sense size limitation via Control Extension mode page.
 - When sense size limited, include descriptors atomically: whole or none.
 - Set new SDAT_OVFL bit if some descriptors don't fit the limit.
 - Report real written sense length instead of static maximal 252 bytes.

MFC after:=092 weeks

310504 by ngie:
Unbreak syslogd after r310494

Don't close all file descriptors greater than STDERR_FILENO (2) in
waitdaemon(..) -- only close fd (file descriptor for /dev/null used in
subsequent calls to dup2) if it's greater than STDERR_FILENO.

Reported by:=09subbsd@gmail.com, danny@cs.huji.ac.il
Pointyhat to:=09hrs
X-MFC with:=09r310494

310503 by ngie:
style(9): delete stray trailing whitespace after break statement

MFC after:=093 days

310501 by ngie:
Be more strict about IpAddress type in snmp_value_parse(..)

- Use inet_pton with AF_INET instead of doing longhand with sscanf.
- Use gethostbyname2 with AF_INET to ensure that the hostname isn't
  accidentally parsed with another address family, e.g. AF_INET6.

NB: IpAddress per RFC-2578 is IPv4 only. Work is in progress to add
    the InetAddress type and friends documented in RFC-4001 and
    elsewhere (which supports IPv4, IPv6, and more).

MFC after:=092 weeks

310500 by ngie:
Minor style(9) fixes

- Trailing whitespace cleanup
- Sort variables in snmp_dialog(..) by alignment

No functional change

MFC after:=091 week

310499 by ngie:
Sort #includes

No functional change

MFC after:=093 days

310498 by ngie:
Allow SNMPv3 authNoPriv and noAuthNoPriv protocols to discover snmpEngineTi=
me
as discussed in RFC-5343

This fixes interoperability with net-snmp.

Tested with the following invocations of snmpwalk (from net-snmp):

- noAuthNoPriv:

  % snmpwalk -v 3 -n '' -u public localhost snmpEngineTime

- authNoPriv:

  % snmpwalk -v 3 -n '' -u bsnmp -A bsnmptest -l authNoPriv -a sha localhos=
t \
    localhost snmpEngineTime

- authPriv:

  % snmpwalk -v 3 -n '' -u bsnmp -A bsnmptest -l authPriv -a sha -x des \
    -X bsnmptest localhost snmpEngineTime

MFC after:=091 week
Obtained from:=09Isilon OneFS (5ec6d772cacbc, with minor tweaks)
Submitted by:=09Austin Voecks <austin.voecks@isilon.com>
Sponsored by:=09Dell EMC Isilon

310497 by ngie:
Warning message cleanup

- Use warn instead of warnx + strerror(errno)
- Remove unnecessary trailing newline from a warnx call
- Add missing spaces following "," in syslog and warn* calls

MFC after:=092 weeks



The end of the build log:

[...truncated 250123 lines...]
echo libpanelw.so.5.full: /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD=
_HEAD_amd64_gcc/lib32/usr/lib32/libncursesw.a >> .depend
--- p_above.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_above.o -MTp_above.o -std=3D=
gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -W=
no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit=
h -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Dar=
ray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dc=
ast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dext=
ra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dst=
rict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variab=
le -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstri=
ct-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-=
error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/panelw/../../../contrib/ncurses/panel/p_above.c -o p_above.o
--- all_subdir_lib/ncurses/formw ---
--- frm_scale.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.frm_scale.pico -M=
Tfrm_scale.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wal=
l -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-pr=
ototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3D=
address -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool=
-compare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-c=
ompare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-pare=
ntheses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=
=3Dunused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused=
-value -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wn=
o-error=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dta=
utological-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBS=
D_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/frm_scale.=
c -o frm_scale.pico
--- all_subdir_lib/ncurses/menuw ---
--- m_win.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/menuw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/menuw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/menuw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/menuw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/menuw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/m=
enuw/../../../contrib/ncurses/menu  -MD  -MF.depend.m_win.pico -MTm_win.pic=
o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-=
y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoi=
nter-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-e=
rror=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-=
error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-er=
ror=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-e=
rror=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-err=
or=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnu=
ll-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-comp=
are -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/menuw/../../../contrib/ncurses/menu/m_win.c -o m_win.pico
--- all_subdir_lib/ncurses/panelw ---
--- p_below.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_below.o -MTp_below.o -std=3D=
gnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -W=
no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit=
h -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Dar=
ray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dc=
ast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dext=
ra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dst=
rict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variab=
le -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstri=
ct-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-=
error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/panelw/../../../contrib/ncurses/panel/p_below.c -o p_below.o
--- all_subdir_lib/libdevdctl ---
--- guid.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include/c++/v1 -std=
=3Dc++11  -nostdinc++ -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_H=
EAD_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/libc++ -m32 -DCOMPA=
T_32BIT -march=3Di686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/=
obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x8=
6_64-freebsd/bin/ -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_=
amd64_gcc/lib32/usr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/build=
s/FreeBSD_HEAD_amd64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -MD -MF=
.depend.guid.pico -MTguid.pico -fstack-protector-strong -Wsystem-headers -W=
all -Wno-format-y2k -W -Wno-unused-parameter -Wpointer-arith -Wno-uninitial=
ized -Wno-error=3Daddress -Wno-error=3Darray-bounds -Wno-error=3Dattributes=
 -Wno-error=3Dbool-compare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -=
Wno-error=3Denum-compare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=
=3Dlogical-not-parentheses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninit=
ialized -Wno-error=3Dunused-but-set-variable -Wno-error=3Dunused-function -=
Wno-error=3Dunused-value -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleadi=
ng-indentation -Wno-error=3Dnonnull-compare -Wno-error=3Dshift-negative-val=
ue -Wno-error=3Dtautological-compare -Wno-error=3Dunused-const-variable    =
-c /builds/FreeBSD_HEAD_amd64_gcc/lib/libdevdctl/guid.cc -o guid.pico
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/formw ---
--- frm_sub.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.frm_sub.pico -MTf=
rm_sub.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -W=
no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot=
ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddr=
ess -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-com=
pare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compa=
re -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthe=
ses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dun=
used-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-valu=
e -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-err=
or=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautolo=
gical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/frm_sub.c -o fr=
m_sub.pico
--- all_subdir_lib/ncurses/menuw ---
--- libmenuw.a ---
building static menuw library
ar -crD libmenuw.a `NM=3D'nm' NMFLAGS=3D''  lorder m_attribs.o m_cursor.o m=
_driver.o m_format.o m_global.o m_hook.o m_item_cur.o m_item_nam.o m_item_n=
ew.o m_item_opt.o m_item_top.o m_item_use.o m_item_val.o m_item_vis.o m_ite=
ms.o m_new.o m_opts.o m_pad.o m_pattern.o m_post.o m_req_name.o m_scale.o m=
_spacing.o m_sub.o m_userptr.o m_win.o  | tsort -q`=20
ranlib -D libmenuw.a
--- libmenuw_p.a ---
building profiled menuw library
ar -crD libmenuw_p.a `NM=3D'nm' NMFLAGS=3D''  lorder m_attribs.po m_cursor.=
po m_driver.po m_format.po m_global.po m_hook.po m_item_cur.po m_item_nam.p=
o m_item_new.po m_item_opt.po m_item_top.po m_item_use.po m_item_val.po m_i=
tem_vis.po m_items.po m_new.po m_opts.po m_pad.po m_pattern.po m_post.po m_=
req_name.po m_scale.po m_spacing.po m_sub.po m_userptr.po m_win.po  | tsort=
 -q`=20
--- all_subdir_lib/ncurses/panelw ---
--- p_bottom.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_bottom.o -MTp_bottom.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-erro=
r=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=
=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-erro=
r=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-=
variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/ncurses/panelw/../../../contrib/ncurses/panel/p_bottom.c -o p_bottom.o
--- all_subdir_lib/ncurses/menuw ---
ranlib -D libmenuw_p.a
--- libmenuw.so.5.full ---
building shared library libmenuw.so.5
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2 -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD=
_HEAD_amd64_gcc/lib32/usr/lib32 --sysroot=3D/builds/FreeBSD_HEAD_amd64_gcc/=
obj/builds/FreeBSD_HEAD_amd64_gcc/lib32 -B/usr/local/x86_64-freebsd/bin/ -B=
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64=
_gcc/lib32/usr/include  -fstack-protector-strong -shared -Wl,-x -Wl,--fatal=
-warnings -Wl,--warn-shared-textrel  -o libmenuw.so.5.full -Wl,-soname,libm=
enuw.so.5  `NM=3D'nm' NMFLAGS=3D'' lorder m_attribs.pico m_cursor.pico m_dr=
iver.pico m_format.pico m_global.pico m_hook.pico m_item_cur.pico m_item_na=
m.pico m_item_new.pico m_item_opt.pico m_item_top.pico m_item_use.pico m_it=
em_val.pico m_item_vis.pico m_items.pico m_new.pico m_opts.pico m_pad.pico =
m_pattern.pico m_post.pico m_req_name.pico m_scale.pico m_spacing.pico m_su=
b.pico m_userptr.pico m_win.pico |  tsort -q`  -lncursesw--- all_subdir_lib=
/ncurses/formw ---
--- frm_user.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.frm_user.pico -MT=
frm_user.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall =
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prot=
otypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Dad=
dress -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-c=
ompare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-com=
pare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parent=
heses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3D=
unused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-va=
lue -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-e=
rror=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtauto=
logical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/frm_user.c -o=
 frm_user.pico
--- all_subdir_lib/ncurses/menuw ---
--- libmenuw.so.5.debug ---
/usr/local/x86_64-freebsd/bin/objcopy --only-keep-debug libmenuw.so.5.full =
libmenuw.so.5.debug
--- libmenuw.so.5 ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=3Dl=
ibmenuw.so.5.debug  libmenuw.so.5.full libmenuw.so.5
--- all_subdir_lib/libelftc ---
=3D=3D=3D> lib/libelftc (all)
--- sys/elf_common.h ---
mkdir -p /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/w=
orld32/builds/FreeBSD_HEAD_amd64_gcc/lib/libelftc/sys
ln -sf /builds/FreeBSD_HEAD_amd64_gcc/sys/sys/elf_common.h sys/elf_common.h
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/panelw ---
--- p_delete.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_delete.o -MTp_delete.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-erro=
r=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=
=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-erro=
r=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-=
variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/ncurses/panelw/../../../contrib/ncurses/panel/p_delete.c -o p_delete.o
--- all_subdir_lib/libelftc ---
--- elftc_bfdtarget.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_bfdtarget.o -MTelftc_bfdtarget.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p=
arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda=
nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -Wno=
-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wn=
o-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-=
error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno=
-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-e=
rror=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnon=
null-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-co=
mpare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_=
gcc/contrib/elftoolchain/libelftc/elftc_bfdtarget.c -o elftc_bfdtarget.o
--- all_subdir_lib/libdevdctl ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/memory:601:0,
                 from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/algorithm:634,
                 from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/string:442,
                 from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/__locale:15,
                 from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/ios:216,
                 from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/iostream:38,
                 from /builds/FreeBSD_HEAD_amd64_gcc/lib/libdevdctl/guid.cc=
:46:
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/typeinfo: In member function 'size_t std::type_info::hash_co=
de() const':
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/typeinfo:116:62: warning: dereferencing type-punned pointer =
will break strict-aliasing rules [-Wstrict-aliasing]
         {return *reinterpret_cast<const size_t*>(&__type_name);}
                                                              ^
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/formw ---
--- frm_win.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.frm_win.pico -MTf=
rm_win.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -W=
no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot=
ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddr=
ess -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-com=
pare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compa=
re -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthe=
ses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dun=
used-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-valu=
e -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-err=
or=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautolo=
gical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/frm_win.c -o fr=
m_win.pico
--- all_subdir_lib/libelftc ---
--- elftc_copyfile.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_copyfile.o -MTelftc_copyfile.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p=
arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda=
nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -Wno=
-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wn=
o-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-=
error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno=
-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-e=
rror=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnon=
null-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-co=
mpare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_=
gcc/contrib/elftoolchain/libelftc/elftc_copyfile.c -o elftc_copyfile.o
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/panelw ---
--- p_hidden.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_hidden.o -MTp_hidden.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-erro=
r=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=
=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-erro=
r=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-=
variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/ncurses/panelw/../../../contrib/ncurses/panel/p_hidden.c -o p_hidden.o
--- all_subdir_lib/ncurses/formw ---
--- fty_alnum.pico ---
--- all_subdir_lib/libelftc ---
--- elftc_demangle.o ---
--- all_subdir_lib/ncurses ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_alnum.pico -M=
Tfty_alnum.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wal=
l -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-pr=
ototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3D=
address -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool=
-compare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-c=
ompare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-pare=
ntheses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=
=3Dunused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused=
-value -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wn=
o-error=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dta=
utological-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBS=
D_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alnum.=
c -o fty_alnum.pico
--- all_subdir_lib/libelftc ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_demangle.o -MTelftc_demangle.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p=
arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda=
nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -Wno=
-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wn=
o-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-=
error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno=
-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-e=
rror=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnon=
null-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-co=
mpare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_=
gcc/contrib/elftoolchain/libelftc/elftc_demangle.c -o elftc_demangle.o
--- elftc_reloc_type_str.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_reloc_type_str.o -MTelftc_reloc_type_=
str.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-for=
mat-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -=
Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow =
-Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs=
 -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Dad=
dress -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-c=
ompare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-com=
pare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parent=
heses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3D=
unused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-va=
lue -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-e=
rror=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtauto=
logical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_H=
EAD_amd64_gcc/contrib/elftoolchain/libelftc/elftc_reloc_type_str.c -o elftc=
_reloc_type_str.o
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/panelw ---
--- p_hide.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_hide.o -MTp_hide.o -std=3Dgn=
u99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcas=
t-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra=
 -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstri=
ct-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable=
 -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict=
-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare =
-Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-er=
ror=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurs=
es/panelw/../../../contrib/ncurses/panel/p_hide.c -o p_hide.o
--- all_subdir_lib/ncurses/formw ---
--- fty_alpha.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_alpha.pico -M=
Tfty_alpha.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wal=
l -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-pr=
ototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3D=
address -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool=
-compare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-c=
ompare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-pare=
ntheses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=
=3Dunused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused=
-value -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wn=
o-error=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dta=
utological-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBS=
D_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_alpha.=
c -o fty_alpha.pico
--- all_subdir_lib/ncurses/panelw ---
--- p_move.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_move.o -MTp_move.o -std=3Dgn=
u99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcas=
t-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra=
 -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstri=
ct-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable=
 -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict=
-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare =
-Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-er=
ror=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurs=
es/panelw/../../../contrib/ncurses/panel/p_move.c -o p_move.o
--- all_subdir_lib/libelftc ---
--- elftc_set_timestamps.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_set_timestamps.o -MTelftc_set_timesta=
mps.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-for=
mat-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -=
Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow =
-Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs=
 -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Dad=
dress -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-c=
ompare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-com=
pare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parent=
heses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3D=
unused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-va=
lue -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-e=
rror=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtauto=
logical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_H=
EAD_amd64_gcc/contrib/elftoolchain/libelftc/elftc_set_timestamps.c -o elftc=
_set_timestamps.o
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/formw ---
--- fty_enum.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_enum.pico -MT=
fty_enum.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall =
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prot=
otypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Dad=
dress -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-c=
ompare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-com=
pare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parent=
heses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3D=
unused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-va=
lue -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-e=
rror=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtauto=
logical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_enum.c -o=
 fty_enum.pico
--- all_subdir_lib/libelftc ---
--- elftc_string_table.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_string_table.o -MTelftc_string_table.=
o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-=
y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoi=
nter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wun=
used-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wr=
edundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddres=
s -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compa=
re -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare=
 -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthese=
s -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunus=
ed-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value =
-Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=
=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautologi=
cal-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_=
amd64_gcc/contrib/elftoolchain/libelftc/elftc_string_table.c -o elftc_strin=
g_table.o
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/panelw ---
--- p_new.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_new.o -MTp_new.o -std=3Dgnu9=
9 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-u=
nused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -W=
no-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darray-=
bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcast-=
align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra -=
Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstrict=
-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable -=
Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict-o=
verflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare -W=
no-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-erro=
r=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses=
/panelw/../../../contrib/ncurses/panel/p_new.c -o p_new.o
--- all_subdir_lib/libdevdctl ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/lib32/usr/include/c++/v1/stdlib.h:88:0,
                 from /builds/FreeBSD_HEAD_amd64_gcc/lib/libdevdctl/guid.cc=
:42:
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/locale: At global scope:
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/locale:2635:1: warning: type attributes ignored after type i=
s already defined [-Wattributes]
 _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<char, fa=
lse>)
 ^
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/locale:2636:1: warning: type attributes ignored after type i=
s already defined [-Wattributes]
 _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<char, tr=
ue>)
 ^
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/locale:2637:1: warning: type attributes ignored after type i=
s already defined [-Wattributes]
 _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t,=
 false>)
 ^
/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/=
include/c++/v1/locale:2638:1: warning: type attributes ignored after type i=
s already defined [-Wattributes]
 _LIBCPP_EXTERN_TEMPLATE2(class _LIBCPP_TYPE_VIS moneypunct_byname<wchar_t,=
 true>)
 ^
--- all_subdir_lib/ncurses ---
--- p_replace.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_replace.o -MTp_replace.o -st=
d=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -=
W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-=
arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-erro=
r=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=
=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-erro=
r=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-=
variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/ncurses/panelw/../../../contrib/ncurses/panel/p_replace.c -o p_replace.=
o
--- all_subdir_lib/libelftc ---
--- elftc_timestamp.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_timestamp.o -MTelftc_timestamp.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-p=
arameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredunda=
nt-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -Wno=
-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wn=
o-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-=
error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno=
-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-e=
rror=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnon=
null-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-co=
mpare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_=
gcc/contrib/elftoolchain/libelftc/elftc_timestamp.c -o elftc_timestamp.o
--- elftc_version.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.elftc_version.o -MTelftc_version.o -std=3Dg=
nu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wn=
o-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith=
 -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-param=
eter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-d=
ecls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -Wno-err=
or=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-er=
ror=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-erro=
r=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-err=
or=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set=
-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/libelftc/elftc_version.c -o elftc_version.o
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/formw ---
--- fty_int.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_int.pico -MTf=
ty_int.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -W=
no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot=
ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddr=
ess -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-com=
pare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compa=
re -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthe=
ses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dun=
used-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-valu=
e -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-err=
or=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautolo=
gical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_int.c -o ft=
y_int.pico
--- all_subdir_lib/ncurses/panelw ---
--- p_show.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_show.o -MTp_show.o -std=3Dgn=
u99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcas=
t-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra=
 -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstri=
ct-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable=
 -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict=
-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare =
-Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-er=
ror=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurs=
es/panelw/../../../contrib/ncurses/panel/p_show.c -o p_show.o
--- all_subdir_lib/libelftc ---
--- libelftc_bfdtarget.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.libelftc_bfdtarget.o -MTlibelftc_bfdtarget.=
o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-=
y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpoi=
nter-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wun=
used-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wr=
edundant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddres=
s -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compa=
re -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare=
 -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthese=
s -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunus=
ed-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value =
-Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=
=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautologi=
cal-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_=
amd64_gcc/contrib/elftoolchain/libelftc/libelftc_bfdtarget.c -o libelftc_bf=
dtarget.o
--- libelftc_dem_arm.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe  -I/builds/FreeBSD_HEAD_amd64_gcc/cont=
rib/elftoolchain/libelftc -I/builds/FreeBSD_HEAD_amd64_gcc/contrib/elftoolc=
hain/common -I. -MD  -MF.depend.libelftc_dem_arm.o -MTlibelftc_dem_arm.o -s=
td=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k =
-W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer=
-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused=
-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredun=
dant-decls -Wold-style-definition -Wno-pointer-sign -Wno-error=3Daddress -W=
no-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -=
Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wn=
o-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -W=
no-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-b=
ut-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno=
-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dn=
onnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-=
compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd6=
4_gcc/contrib/elftoolchain/libelftc/libelftc_dem_arm.c -o libelftc_dem_arm.=
o
--- all_subdir_lib/libdevdctl ---
--- libprivatedevdctl.a ---
building static devdctl library
ar -crD libprivatedevdctl.a `NM=3D'nm' NMFLAGS=3D''  lorder consumer.o even=
t.o event_factory.o exception.o guid.o  | tsort -q`=20
ranlib -D libprivatedevdctl.a
--- libprivatedevdctl_p.a ---
building profiled devdctl library
ar -crD libprivatedevdctl_p.a `NM=3D'nm' NMFLAGS=3D''  lorder consumer.po e=
vent.po event_factory.po exception.po guid.po  | tsort -q`=20
--- all_subdir_lib/ncurses ---
--- p_top.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_top.o -MTp_top.o -std=3Dgnu9=
9 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-u=
nused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -W=
no-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darray-=
bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcast-=
align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra -=
Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstrict=
-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable -=
Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict-o=
verflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare -W=
no-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-erro=
r=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses=
/panelw/../../../contrib/ncurses/panel/p_top.c -o p_top.o
--- all_subdir_lib/ncurses/formw ---
--- fty_ipv4.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_ipv4.pico -MT=
fty_ipv4.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall =
-Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prot=
otypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Dad=
dress -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-c=
ompare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-com=
pare -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parent=
heses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3D=
unused-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-va=
lue -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-e=
rror=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtauto=
logical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_ipv4.c -o=
 fty_ipv4.pico
--- all_subdir_lib/libdevdctl ---
ranlib -D libprivatedevdctl_p.a
--- libprivatedevdctl.so.0.full ---
building shared library libprivatedevdctl.so.0
/usr/local/bin/x86_64-unknown-freebsd10.1-g++ -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/include/c++/v1 -std=
=3Dc++11 -nostdinc++ -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HE=
AD_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/libc++ -m32 -DCOMPAT=
_32BIT -march=3Di686 -mmmx -msse -msse2 -L/builds/FreeBSD_HEAD_amd64_gcc/ob=
j/builds/FreeBSD_HEAD_amd64_gcc/lib32/usr/lib32 --sysroot=3D/builds/FreeBSD=
_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32 -B/usr/local/x86_64=
-freebsd/bin/ -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd6=
4_gcc/lib32/usr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/Fr=
eeBSD_HEAD_amd64_gcc/lib32/usr/include  -fstack-protector-strong -shared -W=
l,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel  -o libprivatedevdctl.s=
o.0.full -Wl,-soname,libprivatedevdctl.so.0  `NM=3D'nm' NMFLAGS=3D'' lorder=
 consumer.pico event.pico event_factory.pico exception.pico guid.pico |  ts=
ort -q`=20
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/panelw ---
--- p_update.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_update.o -MTp_update.o -std=
=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W=
 -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-a=
rith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-erro=
r=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=
=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-erro=
r=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-=
variable -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=
=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull=
-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compar=
e -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/=
lib/ncurses/panelw/../../../contrib/ncurses/panel/p_update.c -o p_update.o
--- all_subdir_lib/ncurses/formw ---
--- fty_num.pico ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED=
 -DENABLE_WIDEC -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEA=
D_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncur=
sesw -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncursesw -I/buil=
ds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../ncurses -I/builds/FreeBSD_HE=
AD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/include -I/builds/F=
reeBSD_HEAD_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/ncurses -W=
all -DNDEBUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/f=
ormw/../../../contrib/ncurses/form -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncu=
rses/formw/../../../contrib/ncurses/menu  -MD  -MF.depend.fty_num.pico -MTf=
ty_num.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Wall -W=
no-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-protot=
ypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddr=
ess -Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-com=
pare -Wno-error=3Dcast-align -Wno-error=3Dclobbered -Wno-error=3Denum-compa=
re -Wno-error=3Dextra -Wno-error=3Dinline -Wno-error=3Dlogical-not-parenthe=
ses -Wno-error=3Dstrict-aliasing -Wno-error=3Duninitialized -Wno-error=3Dun=
used-but-set-variable -Wno-error=3Dunused-function -Wno-error=3Dunused-valu=
e -Wno-error=3Dstrict-overflow -Wno-error=3Dmisleading-indentation -Wno-err=
or=3Dnonnull-compare -Wno-error=3Dshift-negative-value -Wno-error=3Dtautolo=
gical-compare -Wno-error=3Dunused-const-variable     -c /builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/formw/../../../contrib/ncurses/form/fty_num.c -o ft=
y_num.pico
--- all_subdir_lib/ncurses/panelw ---
--- p_user.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -m32 -DCOMPAT_32BIT -march=3D=
i686 -mmmx -msse -msse2  -L/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBS=
D_HEAD_amd64_gcc/lib32/usr/lib32  --sysroot=3D/builds/FreeBSD_HEAD_amd64_gc=
c/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32  -B/usr/local/x86_64-freebsd/bin/=
 -B/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/lib32/u=
sr/lib32 -isystem /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_am=
d64_gcc/lib32/usr/include  -O2 -pipe -D_XOPEN_SOURCE_EXTENDED -DENABLE_WIDE=
C -I. -I/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/wo=
rld32/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/build=
s/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../ncursesw -I/builds/FreeBSD_H=
EAD_amd64_gcc/lib/ncurses/panelw/../ncurses -I/builds/FreeBSD_HEAD_amd64_gc=
c/lib/ncurses/panelw/../../../contrib/ncurses/include -I/builds/FreeBSD_HEA=
D_amd64_gcc/lib/ncurses/panelw/../../../contrib/ncurses/ncurses -Wall -DNDE=
BUG -DHAVE_CONFIG_H -I/builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw/../=
../../contrib/ncurses/panel  -MD  -MF.depend.p_user.o -MTp_user.o -std=3Dgn=
u99 -fstack-protector-strong -Wsystem-headers -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wno-uninitialized -Wno-pointer-sign -Wno-error=3Daddress -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dbool-compare -Wno-error=3Dcas=
t-align -Wno-error=3Dclobbered -Wno-error=3Denum-compare -Wno-error=3Dextra=
 -Wno-error=3Dinline -Wno-error=3Dlogical-not-parentheses -Wno-error=3Dstri=
ct-aliasing -Wno-error=3Duninitialized -Wno-error=3Dunused-but-set-variable=
 -Wno-error=3Dunused-function -Wno-error=3Dunused-value -Wno-error=3Dstrict=
-overflow -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare =
-Wno-error=3Dshift-negative-value -Wno-error=3Dtautological-compare -Wno-er=
ror=3Dunused-const-variable     -c /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurs=
es/panelw/../../../contrib/ncurses/panel/p_user.c -o p_user.o
--- all_subdir_lib/libdevdctl ---
/usr/local/bin/x86_64-freebsd-ld: /builds/FreeBSD_HEAD_amd64_gcc/obj/builds=
/FreeBSD_HEAD_amd64_gcc/world32/builds/FreeBSD_HEAD_amd64_gcc/lib/libc++/li=
bc++.a(iostream.o): warning: relocation in readonly section `.eh_frame'
/usr/local/bin/x86_64-freebsd-ld: warning: creating a DT_TEXTREL in a share=
d object.
collect2: error: ld returned 1 exit status
*** [libprivatedevdctl.so.0.full] Error code 1

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libdevdctl
1 error

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libdevdctl
*** [all_subdir_lib/libdevdctl] Error code 2

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib
--- all_subdir_lib/ncurses ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/panelw
*** [all_subdir_lib/ncurses/panelw] Error code 2

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses
--- all_subdir_lib/libelftc ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/libelftc
*** [all_subdir_lib/libelftc] Error code 2

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib
--- all_subdir_lib/ncurses ---
--- all_subdir_lib/ncurses/formw ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses/formw
*** [all_subdir_lib/ncurses/formw] Error code 2

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses
2 errors

bmake[5]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib/ncurses
*** [all_subdir_lib/ncurses] Error code 2

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib
3 errors

bmake[4]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/lib
*** [lib__L] Error code 2

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[3]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [libraries] Error code 2

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [build32] Error code 2

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [buildworld] Error code 2

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
Build step 'Execute shell' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
IRC notifier plugin: Sending notification to: #freebsd-commits
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Sun Dec 25 16:00:55 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id F10D8C8EBE7;
 Sun, 25 Dec 2016 16:00:55 +0000 (UTC) (envelope-from hps@selasky.org)
Received: from mail.turbocat.net (turbocat.net [88.99.82.50])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 4BFA81A69;
 Sun, 25 Dec 2016 16:00:55 +0000 (UTC) (envelope-from hps@selasky.org)
Received: from hps2016.home.selasky.org (unknown [62.141.129.119])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (No client certificate requested)
 by mail.turbocat.net (Postfix) with ESMTPSA id 7B8F31FE157;
 Sun, 25 Dec 2016 17:00:39 +0100 (CET)
Subject: Re: Optimising generated rules for SAT solving (5/12 are duplicates)
To: Vsevolod Stakhov <vsevolod@highsecure.ru>, Ed Schouten <ed@nuxi.nl>
References: <20150414200459.GE39658@ivaldir.etoilebsd.net>
 <20150421103454.GR1394@zxy.spb.ru> <5593D0AE.2010205@selasky.org>
 <416359ce-1dcd-1160-5c56-f120a0f6358f@selasky.org>
 <20160627115533.gqvdsmtzwnvrrfuo@ivaldir.etoilebsd.net>
 <0671148b-d7cd-f8ad-906d-a0baa1b98cf5@selasky.org>
 <cbc964a7-5f90-6ea1-630d-414de68867b1@selasky.org>
 <CABh_MKm7LAtQzp9KEBpaRZWQQHnsUtNFiKVSVF70-wj4GmytuA@mail.gmail.com>
 <d786cde5-89af-cb14-c42e-cc649cb32bdb@highsecure.ru>
 <9b0469bb-ab2b-4992-1d40-de748163f2c8@selasky.org>
 <8c5cb2ea-54ab-c91b-5859-b6a73a2a7005@highsecure.ru>
 <6a81db90-40fa-ec5f-9402-333091c333f2@selasky.org>
 <278d487d-4752-5fa6-6037-2e157db100c2@selasky.org>
Cc: Baptiste Daroussin <bapt@freebsd.org>, Slawa Olhovchenkov
 <slw@zxy.spb.ru>, ports@freebsd.org,
 FreeBSD Current <freebsd-current@freebsd.org>
From: Hans Petter Selasky <hps@selasky.org>
Message-ID: <3c597f02-f438-5d57-b2d2-21da42fb2fc0@selasky.org>
Date: Sun, 25 Dec 2016 17:00:14 +0100
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.4.0
MIME-Version: 1.0
In-Reply-To: <278d487d-4752-5fa6-6037-2e157db100c2@selasky.org>
Content-Type: text/plain; charset=windows-1252; format=flowed
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sun, 25 Dec 2016 16:00:56 -0000

On 12/06/16 11:04, Hans Petter Selasky wrote:
> On 11/24/16 14:11, Vsevolod Stakhov wrote:
>>
>> Then I don't understand how your patch should affect the solving
>> procedure. If pkg tries to reinstall something without *reason* it is a
>> good sign of bug in pkg itself and/or your database/repo and not in SAT
>> solver.
>>
>> I'll try to review your issue but I'll likely need your local packages
>> database for this test.
>
> Hi Vsevolod,
>
> Did you have a chance to look at this?
>

Ping.

--HPS


From owner-freebsd-current@freebsd.org  Mon Dec 26 10:28:49 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 60E46C90DFC
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Mon, 26 Dec 2016 10:28:49 +0000 (UTC)
 (envelope-from gurenchan@gmail.com)
Received: from mail-lf0-x22c.google.com (mail-lf0-x22c.google.com
 [IPv6:2a00:1450:4010:c07::22c])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id CBAA5D3F
 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016 10:28:48 +0000 (UTC)
 (envelope-from gurenchan@gmail.com)
Received: by mail-lf0-x22c.google.com with SMTP id t196so171390834lff.3
 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016 02:28:48 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:references:in-reply-to:from:date:message-id:subject:to;
 bh=rQMMrNq2LpKV5VV6EY+w3xboH4cgNjPK57Ia8hS60Ug=;
 b=Uw0FeoI3gNlhEnhqHNcUUVXTc9b/juJUGTJgsdgJqgIYKmdzhCpONoqfBqGTR6hr5A
 Vsds4L4YS7J+CmxqC7diqYYDoAKt14E5NiZl1F2bF3jCo3NC5RChc9Qiw9ucU9EDLoyJ
 X5Su2/XgVvyEepKOIa4SSaUHmatf/wL4nSpbVeqlyKUevvntDZatZT0nTAX6e+wjbUUT
 zaAsYiQrHIU4gpKfw+q0NePqC3g+XPFVg76InMMVTcnWST7kbeNzrgrHtuvdtaU3QJ5n
 7nna8lRYzqduQzvVbA6jNYrfEna+VdXofjihzIEgvcsCabc2LKVa3yqCWGdaxL11i8CL
 IBtA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:references:in-reply-to:from:date
 :message-id:subject:to;
 bh=rQMMrNq2LpKV5VV6EY+w3xboH4cgNjPK57Ia8hS60Ug=;
 b=qcpxNrNyAbRpVcmBtkUajQ3foYUjy5l+xfBPm8rdnfrYIi7cEjCMAuNiJlwwad8DPe
 GLvDBYJGCWS/gK16HrR76kOV4RorxYlGYr8KUjvjnI8ZVKTlHe2H1+ywKTy61MnOdTkQ
 cJRlEUzjtuekYwIOujTreOeUYcMlhCqmBzHtG2swWwtJ3oJa+qtD5Wnpg3N9DX18K8t0
 9sVCAVcun/UXOS4u8g8QBGYHnsPMRLkAy5GniefoLI7LgVEnYOD+zxTNksZTIsPjiJx1
 9N9oM9qWa6kHC1/BpovtXqVDVfGEieHarQpjeohcDC90TDrbdkUyAyMxLMAz93+nMnxq
 8OAA==
X-Gm-Message-State: AIkVDXJoC6ET6nB3w/3TU7EWhvgXUgwf+Z7T3R+qyCgbsjjM5MRhU8N57o86Ppxm41cr10E/M6x8noQH/JJhAw==
X-Received: by 10.25.215.199 with SMTP id q68mr7112106lfi.47.1482748126617;
 Mon, 26 Dec 2016 02:28:46 -0800 (PST)
MIME-Version: 1.0
References: <CALM2mEmfpMrQtCa-7G7UvcrphBPJfXvUCF6Pq+9epUdA9p_gEg@mail.gmail.com>
 <1482057454.3494650.822598369.2BC5D3BD@webmail.messagingengine.com>
 <CALM2mEm5MB3W-zU2BHQ5gC6KAjUs2F-3X6gE8c4_Ai+mj83dAg@mail.gmail.com>
 <1482570491.251699.828609993.3C542150@webmail.messagingengine.com>
In-Reply-To: <1482570491.251699.828609993.3C542150@webmail.messagingengine.com>
From: blubee blubeeme <gurenchan@gmail.com>
Date: Mon, 26 Dec 2016 10:28:35 +0000
Message-ID: <CALM2mE==_9dC176H+gzdoZh-VhK=kLEXAidR3AutcnB=vC78hA@mail.gmail.com>
Subject: Re: A quick question
To: Dave Cottlehuber <dch@skunkwerks.at>, freebsd-current@freebsd.org
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 10:28:49 -0000

Thanks for the follow-up.

On Sat, Dec 24, 2016, 17:08 Dave Cottlehuber <dch@skunkwerks.at> wrote:

> On Wed, 21 Dec 2016, at 06:39, blubee blubeeme wrote:
> > Can I bump this issue one more time?
> >
> > On Sun, Dec 18, 2016, 18:38 Dave Cottlehuber <dch@skunkwerks.at> wrote:
> >
> > > On Sun, 18 Dec 2016, at 10:07, blubee blubeeme wrote:
> > > > Hi
> > > >
> > > > I am on a Macbook pro 11,3 and I wanted to start trying to help sort
> out
> > > > some problems that might be too small for the overall team but might
> help
> > > > others in the future.
> > >
> > > \o/ there are a few of us about, I'm using a MacBookPro 11,2.
> > >
> > > > Anyways I am on 12-CURRENT but when I installed from the USB stick I
> > > > didn't
> > > > check the docs and 32 bit binaries.
> > > >
> > > > svn checkout svn://svn.freebsd.org/base/head /usr/src
> > > > svn checkout svn://svn.freebsd.org/ports/head /usr/ports
> > > > svn checkout svn://svn.freebsd.org/doc/head /usr/doc
> > > >
> > > > once I do the above steps, do I have to rebuild the entire world?
> > > > Currently
> > > > all I am missing is the 32 bit binaries, could I just rebuild those
> > > > instead
> > > > of building the entire system?
> > > >
> > > >
> > > > Best,
> > > > Owen
> > >
> > > Hi Owen
> > >
> > > You probably only need to unpack
> > > http://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/12.0-CURRENT/*.txz
> ;
> > > I'm assuming this snapshot is still from the same date as your
> > > installer. If your USB stick has the txz on it, then you can extract
> > > them from there as well. Something like
> > >
> > > tar -xf docs.txz -C /
> > >
> > > is probably all you need. NB not tested, viz xkcd.com/1168
> > >
> > > A+
> > > Dave
> > another question to make sure.
> >
> > looking at the url:
> http://ftp.freebsd.org/pub/FreeBSD/snapshots/amd64/12.0-CURRENT/
> >
> > I see the MANIFEST along with
> >
> > base-dbg.txz
> > base..
> > doc..
> > kernel-dbg...
> > etc.
> >
> > so when I install FreeBSD based on the installation items that I select,
> it just unpacks
> > one of the above listed file right into the / directory on the hdd?
>
> Sorry Christmas got in the way of emails.
>
> Yes, you can see here in pc-sysinstall:
>
>
> https://svnweb.freebsd.org/base/release/11.0.0/usr.sbin/pc-sysinstall/backend/functions-extractimage.sh?view=markup#l57
>
> the excellent 3rd party mfsbsd tool does the same thing to install
> FreeBSD:
>
> https://github.com/mmatuska/mfsbsd/blob/master/tools/zfsinstall#L354-L356
>
> A+
> Dave
>

From owner-freebsd-current@freebsd.org  Mon Dec 26 13:37:44 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id A1575C91D7F
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Mon, 26 Dec 2016 13:37:44 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.15])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 0530E1C90
 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016 13:37:43 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([78.52.68.162]) by mail.gmx.com
 (mrgmx002 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0LhOSG-1cqSZA2tvM-00mZg5 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016
 14:37:40 +0100
Date: Mon, 26 Dec 2016 14:37:34 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: FreeBSD CURRENT <freebsd-current@freebsd.org>
Subject: CURRENT: ARM64 support: Odroid-C2
Message-ID: <20161226143734.43031c86@thor.walstatt.dynvpn.de>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/HlrV/YKONkKkf3toyrbgjJE"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:UXzGLMZyqxD3XDNjhKwmruUdf04t75VVlylGh02z68gT7Eqnq1C
 W14kXYmIDqkKCkIYiLJxhU+trMKKIlTG0K/yJoHab567YDFZQ4Kr9a0lpClj1llpXUBrnzA
 Lx8I4wZAzmSqeL11+GmWtHxT+eBM9xLtZ+4YdvVP0LlKJu1O6qIRhSKgUT194yMhapNvAe2
 YLIqKOY9xs/XGx/L3w9Qw==
X-UI-Out-Filterresults: notjunk:1;V01:K0:QTFo0YwXg3U=:vIS2wwQ3PKYEGZo85tB1PC
 gh+FDSN9g/x6dLXizKVq9xDzafUQA88SuST6JICfunS9vhEaYgsq+HMCI8L/jLL7s0AlkmLh7
 vnQllxwajW4FD3BOQs2f5SuwwJihUxWI06GtdcphUJ+pdDOpjCvUAjY4L/tTnfAXH6mSsNZFN
 zpdPmLfpNcC4jX8l2Ko7FZ9mvlP6a76gCwTwf9JJszRZteZu9u1XBRYZNeBV2CoYVnTX3hrle
 j+RT4nC7czLvAiWEUTgaokhHVNbN4nuHeSuTV25pQDS72DNQUi1+M3eA7KjndMFTNiFOjVhLX
 PKO8g66h3LgH4OZgUCkTlmrELaZjcKX55rdpwZMTRCDRA8hRLQgrYIudtqwhQ9bjg0WgWY6NB
 a/OV4eg8H6dLDb3O5yRdp4Qgqx2T4Fm+e8MA86d6poMQikhvf690zq5+O6iZHKd7BgPQgzsq6
 /KGPEXbYMLJ7RkBOqTMq+dMBkxpPWjqzirHHVd2VQa1FJr1b4tu6NwOMSBm2WsEdHuwaF0M8U
 VV8r7VRxTFiiyNZOPH8aoqpk8DMCKe+KKwytJlNO0GljFtf7o+JRuuXP+Be7Ik3rlOEc2rVEV
 a0W3bQUymPdY3+xP1JBgF/AGqT5RvlscGluN+uoDze1TIlS5yRV4GRv80wzj14YDcyVVmHdLP
 h+P5EquMEOeX/BA3C7XvvT0heFwUk0sI3buwExLsllmaCV/uWHXGYnx8LzhnVvnNxPJFbXzsm
 ZyehYy1lscXlQETGc1E3F3lZSiTDFAqmRhpEABdIKP7yfqQt1oko5AEdRgc=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 13:37:44 -0000

--Sig_/HlrV/YKONkKkf3toyrbgjJE
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

I have a quick question about using FreeBSD 12-CURRENT on an Odroid-C2 SoC.

I tried the most recent image found on the repository provided by FreeBSD.o=
rg, but neither
on SD card nor on USB drive the image boots. I just dd'd the image to the a=
ppropriate
memory device, so I didn't investigate much.

It didn't work.Googling around poped up some notes on this Odroid-C2 device=
 from October
this year and it stated, that there is boot capability via TFTP, others sta=
te that USB is
working to boot off the Odroid-C2, but not from SD, another comment states,=
 that after
some console command isuues, TFTP boot is possible. But it seems not to be =
possible from
the onboard NIC.

Well, I have already utilised NanoBSD and managed with some home-brewn patc=
hes to create
EFI/GPT images as well as as the historical MBR images. The question is, we=
ther it would
be possible to create an AARCH64 image (I never cross compiled with NanoBSD=
 and I doubt
it will be possible so easily since QEMU is/seems broken on 12-CURRENT) whi=
ch will bott
off at least from either USB or SD card.

Thanks in advance,

Oliver=20

--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/HlrV/YKONkKkf3toyrbgjJE
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGEdHgAKCRDS528fyFhY
lAU9Af4k7H/r6K/yPCJIzqWE8bGXmhOJoFoGjjDjShiYB3uqw8yRwoIe/ciHFzLI
xSHu5sTG0vBgnkZ7rOhblIcTRuAPAf9Q6o7gl6igy85ZZq9Re8LcF8g3aL6tr2Ms
SkZ9sYK8v03DfemQ0J1uM7mBcU0lOQadymvgXgqgXMifM/NAfwA9
=hYa8
-----END PGP SIGNATURE-----

--Sig_/HlrV/YKONkKkf3toyrbgjJE--

From owner-freebsd-current@freebsd.org  Mon Dec 26 16:27:10 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 8E943C916E9
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Mon, 26 Dec 2016 16:27:10 +0000 (UTC)
 (envelope-from ubm.freebsd@googlemail.com)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 6D5BD11F9
 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016 16:27:10 +0000 (UTC)
 (envelope-from ubm.freebsd@googlemail.com)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 69C90C916E8; Mon, 26 Dec 2016 16:27:10 +0000 (UTC)
Delivered-To: current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 69738C916E7
 for <current@mailman.ysv.freebsd.org>; Mon, 26 Dec 2016 16:27:10 +0000 (UTC)
 (envelope-from ubm.freebsd@googlemail.com)
Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com
 [IPv6:2a00:1450:400c:c09::244])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id ECB7C11EF
 for <current@freebsd.org>; Mon, 26 Dec 2016 16:27:09 +0000 (UTC)
 (envelope-from ubm.freebsd@googlemail.com)
Received: by mail-wm0-x244.google.com with SMTP id l2so28143283wml.2
 for <current@freebsd.org>; Mon, 26 Dec 2016 08:27:09 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=googlemail.com; s=20161025;
 h=from:date:to:subject:message-id:mime-version
 :content-transfer-encoding;
 bh=ncod4TYVJefFqkRvXwqRxAZT5qRVaHcu9tUEUi/zcxA=;
 b=S5MV/zxN3tAEdzzjogAbnu5IfSXnUYkT1eEQsykarZIQ899TR6eEKAY+9Nr5MZ+FVH
 lHiHTteis1FMzZuKGPx6fI0AUGTeGp+73jlfFsDSjtMqT4x/xSE41l/qDf2O5V+llah5
 z8bE4eAWmVNV44FQvYjMgUdCUK8qjMjbzJIfc/6Alv/oEW7Yv2YtEfiND5bBtHRkD1Zh
 bTtXWIZs2VhQ7op60XgQsMipXdXoiDRze9rj36Gqr6MrNcpPRlPwKmXaXiH5FJHJvrx9
 YuKvuhO0s4ycCxP1WPnT/sQBQWi330j7DIVTiRPSOBJvyduAp/yoxy+veEhBBRlGMd1I
 ppYw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:from:date:to:subject:message-id:mime-version
 :content-transfer-encoding;
 bh=ncod4TYVJefFqkRvXwqRxAZT5qRVaHcu9tUEUi/zcxA=;
 b=nCxQ2n3ZEqpDDH3D5IwBLCwaINJ7EUd4R00q4ZeE3K0Vk1PnqiXb47k4XmBUOeVl8A
 1f3cCG9LTwsNERozpUwo9Wa6A8FfdgKims8vJz2C1bsdRbrAQ24sk7MlOmlgFEUPn6oO
 WqFqbWVG3jHa0QJKZn9sdDWkXCDUrNS2x8NEdbehIcmGFbXiFaMDGEHBB530xSBwrwnq
 Es+lFy1dNKs2jQjDETEkNFffsLmTJ3cn49aw8GJNOBBV9/n3w4qTbPjYTKVJSuJvg3SN
 yZZvZRDz5b3Afien3u8L4b2M2ssTpz7UBHkK+ND8VKMGAhDJsHTbFcGsUScawgA1Gypm
 8PAg==
X-Gm-Message-State: AIkVDXI3oB83OgZsE/GgaulfObpWbFrR99iWLfxRcnNwEeXuJzV3WRkK/aUygHHPbX4FRg==
X-Received: by 10.28.20.70 with SMTP id 67mr23334172wmu.102.1482769627746;
 Mon, 26 Dec 2016 08:27:07 -0800 (PST)
Received: from ubm.strangled.net (ipbcc16d84.dynamic.kabel-deutschland.de.
 [188.193.109.132])
 by smtp.gmail.com with ESMTPSA id g73sm52114005wme.16.2016.12.26.08.27.06
 for <current@freebsd.org>
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Mon, 26 Dec 2016 08:27:07 -0800 (PST)
From: Marc UBM Bocklet <ubm.freebsd@googlemail.com>
X-Google-Original-From: Marc "UBM" Bocklet <ubm.freebsd@gmail.com>
Date: Mon, 26 Dec 2016 17:27:06 +0100
To: current@freebsd.org
Subject: pkg on old current - library woes
Message-Id: <20161226172706.5f3a588196ee067e6c19a5ef@gmail.com>
X-Mailer: Sylpheed 3.5.1 (GTK+ 2.24.29; amd64-portbld-freebsd11.0)
Mime-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 16:27:10 -0000


Hi list,

I'm writing this as an reminder for others who might be in a similar
situation. Don't blindly (like me) use pkg on an old current or you'll
(understandably) run into tons of library / linking issues.

I update my current only very belatedly and thus was running current
from around March 2016. pkg correctly detected ABI =
"FreeBSD:11:amd64"; and installed the requested packages, but of course
I was missing all kinds of recent library versions (libssl, libpam,
fopencookie problems in mod_php, among others). This caused me quite a
headache at first, but then I went from my ancient current to 11-release
and now everything works like a charm. 

Searching online, I found only one reference to the situation I had been
in:

https://lists.freebsd.org/pipermail/freebsd-pkgbase/2016-June/000271.html.

Maybe pkg could print some kind of warning if you're behind too far on
current, though admittedly this is very likely some edge case and
updating to a release version fixed everything. 

pkg itself is really great, it's just so much faster and simpler than
portmaster or the old package system. Props to all the people who made
that possible!

Cheers,
Marc


From owner-freebsd-current@freebsd.org  Mon Dec 26 17:20:15 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 043E6C92956;
 Mon, 26 Dec 2016 17:20:15 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.18])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 5E3AE1E6C;
 Mon, 26 Dec 2016 17:20:13 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([78.52.68.162]) by mail.gmx.com
 (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0LhfN3-1cqEwG1enx-00mpKx; Mon, 26 Dec 2016 18:20:05 +0100
Date: Mon, 26 Dec 2016 18:19:57 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: FreeBSD CURRENT <freebsd-current@freebsd.org>, freebsd-arm@freebsd.org
Subject: CURRENT: arm64 buildworld failure: numa_setaffinity.pico: In
 function `numa_setaffinity':
Message-ID: <20161226181957.3683abf8@thor.walstatt.dynvpn.de>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/4ZbiB5wePJOCUIGopHN3lJy"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:zNxTcrU/OgmlrGIDuovbO+3lDJdd/I5KpOro1g3TRLJv0XHzXrA
 y3SDYqyrm6+XUMv9tpxea8oSqP1pm7Xk6kscpqnIe5qAG+LMpM53UZVS7CW6T8wL2o7tY3P
 0hPsyxSpOPFRjpZTPYe/uvsFmaG+mCq/LWBeBWs2OzJgwmdMGbQro9x341gRHq1LRSekytN
 YStJq4iSjIGooCcFp0Heg==
X-UI-Out-Filterresults: notjunk:1;V01:K0:rjtV5t5wE2o=:kITpyZ4I06JSsq0hgH9Zna
 qKiznloXzokY3X4V5yroxH6AU9asiOgm/+SF9BbExquayb6gX+3yYrnrTYOZlY0GJWtsLPpII
 99xqI2LERNjKbHgfsC45xQ9dteJbZSij/rVGt4OPDBBEZhaJc6KdDQTe6SJef0uUqQtdy4SEm
 /gE3a0ei38MagvdjGyLBc8WmiRZ9Mu9r8/ffGBnrvHXBp6CK5Gc2y6MDswQ3FCHFk06Ge2x6N
 52Ll1pTgLNwboCNKDvUM3rWiy6G/4LY9UPWbVhpwI1dbFdCwOrdG9/SS8B0EuRJcubKRp0taN
 H+Ezozm5tAwuhnDjHye3BfM6drNqGThYuL2lEgbtrHigT+VY4fwfKLgUmrc8NRX4sQYZHPZdx
 D1LbIYZeRDhXShyO81tDEUx8fYtu1KYvfP6/9TO6o2vKO7lR4CmjUDxBZnp38N60nIpLUA03z
 LhwPkEtY7hwZYslDymKXKdqhrvn/UoIlDBe0IdEECLsvy77lQwQHg8Avfy6cr2mGOXawnWMBp
 rOyCsMAon5AiUnag3JUb856Rm+0Ds7BkYdHPLKnGFoy/VuOrAlC0NJrnmt0oqsymBcjUtxqKp
 AmmnJMDFX2CPl1WMXeRxunr2ddzuagCEef6SjP0min6oDVtVYpqu6VdpgXICFHWm+SJPkTl/f
 W+I+ivJvQ2qd00FEDccXerAE74VxeEy/4LdRv6CCdFCdwV+f3r7VbIs+sasWaVYbVfhSu9JzN
 nrVGfN+4BigMurWjhVJ8LMpYjW+rQf63pRXYoN3ezwG/qV1y0FHic3fYV78=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 17:20:15 -0000

--Sig_/4ZbiB5wePJOCUIGopHN3lJy
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Trying to build AARCH64 world on amd64 box running most recent CURRENT (Fre=
eBSD
12.0-CURRENT #23 r310556: Sun Dec 25 21:45:35 CET 2016 amd64), sources are =
r310603.

port devel/aarch64-binutils is installed as requested, the environment has =
been setup
using

setenv MAKEOBJDIRPREFIX /pool/sources/CURRENT/obj

setenv TARGET arm64

and in svn-checked out source tree /pool/sources/CURRENT/src I start then

make -j4 buildworld


After some seconds I reach this state:

 [...]
Building /pool/sources/CURRENT/obj/arm64.aarch64/pool/sources/CURRENT/src/l=
ib/libc/libc.a
--- libc_pic.a ---
building special pic c library
Building /pool/sources/CURRENT/obj/arm64.aarch64/pool/sources/CURRENT/src/l=
ib/libc/libc.so.7
--- libc.a ---
building static c library
--- libc.so.7 ---
building shared library libc.so.7
numa_setaffinity.pico: In function `numa_setaffinity':
(.text+0x8): relocation truncated to fit: R_AARCH64_CONDBR19 against symbol=
 `cerror'
defined in .text section in cerror.pico numa_getaffinity.pico: In function
`numa_getaffinity':


Well, this is the first time I try crosscompile for AARCH64 on AMD64 platfo=
rm and it may
be that I miss something essential here, so have patience if this isn't a r=
eal bug.

I'd appreciate any hints and light-shed on this.

Thanks in advance,

Oliver
--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/4ZbiB5wePJOCUIGopHN3lJy
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGFRPQAKCRDS528fyFhY
lMGYAgCC3cKexhs1I2YoJChgNVg8D5PUCXu2O3OfoT7T7HcvsJJLga/0J2XKoJxT
MQdXEmg5jqN5sEPpmZQ4xGn+1IcDAfsGH9/GCRUv+SMpvSoJPgQ0l7xag+KB3Zxx
OXnT88PEUfmPjR8R57aCnhrffC5YSfoHiXOg2wmXlC6RytLs2Fis
=WpFU
-----END PGP SIGNATURE-----

--Sig_/4ZbiB5wePJOCUIGopHN3lJy--

From owner-freebsd-current@freebsd.org  Mon Dec 26 19:18:17 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0DB3CC92938
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Mon, 26 Dec 2016 19:18:17 +0000 (UTC)
 (envelope-from jbtakk@iherebuywisely.com)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id EE0771052
 for <freebsd-current@freebsd.org>; Mon, 26 Dec 2016 19:18:16 +0000 (UTC)
 (envelope-from jbtakk@iherebuywisely.com)
Received: by mailman.ysv.freebsd.org (Postfix)
 id ED5B3C92937; Mon, 26 Dec 2016 19:18:16 +0000 (UTC)
Delivered-To: current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id ED01FC92936
 for <current@mailman.ysv.freebsd.org>; Mon, 26 Dec 2016 19:18:16 +0000 (UTC)
 (envelope-from jbtakk@iherebuywisely.com)
Received: from aibo.runbox.com (aibo.runbox.com [91.220.196.211])
 (using TLSv1 with cipher AES256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id B2DB71051
 for <current@freebsd.org>; Mon, 26 Dec 2016 19:18:16 +0000 (UTC)
 (envelope-from jbtakk@iherebuywisely.com)
Received: from [10.9.9.241] (helo=rmm6prod02.runbox.com)
 by bars.runbox.com with esmtp (Exim 4.71)
 (envelope-from <jbtakk@iherebuywisely.com>)
 id 1cLaSe-0008MB-8Y; Mon, 26 Dec 2016 19:57:28 +0100
Received: from mail by rmm6prod02.runbox.com with local (Exim 4.76)
 (envelope-from <jbtakk@iherebuywisely.com>)
 id 1cLaSe-0008UC-8J; Mon, 26 Dec 2016 19:57:28 +0100
Content-Type: text/plain; charset="utf-8"
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
MIME-Version: 1.0
Received: from [Authenticated user (846156)] by runbox.com with http
 (RMM6); Mon, 26 Dec 2016 18:57:28 GMT
From: "Jeffrey Bouquet" <jbtakk@iherebuywisely.com>
Reply-To: jbtakk@iherebuywisely.com
To: "Marc UBM Bocklet" <ubm.freebsd@googlemail.com>
CC: "current" <current@freebsd.org>
Subject: Re: pkg on old current - library woes
Date: Mon, 26 Dec 2016 10:57:28 -0800 (PST)
X-Mailer: RMM6
In-Reply-To: <20161226172706.5f3a588196ee067e6c19a5ef@gmail.com>
Message-Id: <E1cLaSe-0008UC-8J@rmm6prod02.runbox.com>
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 19:18:17 -0000



On Mon, 26 Dec 2016 17:27:06 +0100, Marc UBM Bocklet <ubm.freebsd@googlemai=
l.com> wrote:

>=20
> Hi list,
>=20
> I'm writing this as an reminder for others who might be in a similar
> situation. Don't blindly (like me) use pkg on an old current or you'll
> (understandably) run into tons of library / linking issues.
>=20
> I update my current only very belatedly and thus was running current
> from around March 2016. pkg correctly detected ABI =3D
> "FreeBSD:11:amd64"; and installed the requested packages, but of course
> I was missing all kinds of recent library versions (libssl, libpam,
> fopencookie problems in mod_php, among others). This caused me quite a
> headache at first, but then I went from my ancient current to 11-release
> and now everything works like a charm.=20
>=20
> Searching online, I found only one reference to the situation I had been
> in:
>=20
> https://lists.freebsd.org/pipermail/freebsd-pkgbase/2016-June/000271.html.
>=20
> Maybe pkg could print some kind of warning if you're behind too far on
> current, though admittedly this is very likely some edge case and
> updating to a release version fixed everything.=20
>=20
> pkg itself is really great, it's just so much faster and simpler than
> portmaster or the old package system. Props to all the people who made
> that possible!
>=20
> Cheers,
> Marc
>=20
> _______________________________________________
> freebsd-current@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org"


I used to use IIRC pkgdb -F : "pkgdb -F is not supported with PKGNG yet. Us=
e 'pkg check' directly."
I also used to use -b IIRC with portmaster to save .so. files, and nowadays=
 proactively check UPDATING to copy .so. files
to /usr/local/lib/compat manually so pkg updates don't go awry hardly ever.
...
using 11.0-CURRENT so I may get bitten by this one, but I've less trust in =
IW once BW completes so
tend to delay upgrading fwiw, also a lack of time.=

From owner-freebsd-current@freebsd.org  Mon Dec 26 19:29:34 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70FA4C92DA3;
 Mon, 26 Dec 2016 19:29:34 +0000 (UTC)
 (envelope-from subbsd@gmail.com)
Received: from mail-it0-x242.google.com (mail-it0-x242.google.com
 [IPv6:2607:f8b0:4001:c0b::242])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 3EED01B65;
 Mon, 26 Dec 2016 19:29:34 +0000 (UTC)
 (envelope-from subbsd@gmail.com)
Received: by mail-it0-x242.google.com with SMTP id n68so31686581itn.3;
 Mon, 26 Dec 2016 11:29:34 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:from:date:message-id:subject:to;
 bh=usy07v9rJ6BBV96HmtRxLL0+C1MetzUR/4/fQIlg/cE=;
 b=aGW882clcxERc9evUKQf19lHb+dA4WPL16M0KBB/FRPBW0rJDcGYNIWmsKAaAPVGW6
 6XWAGOtlQNRD6ADb253RPXIO0rv9TWyIe8w28xH6yJQDp7QnaxxRzLOazTGB+IEjl1sW
 mCQ0Xptfc16XJ3vqFMjZ0E8qdo50vLx9sKlKTnpl1746CjyKW+XiEs5+XVAx6JPFa99y
 /bh7yOYnM21foEAPPfvA0KKeOdMSD7XknsWl+dVtSW6hGsaFmdy5SJeNBG3ExPYe5k5x
 rAwpJ7hdA98CG8VYSVZCtnROuPfDTTwC4FwwxmeidBUV6l4dLCIZL1bx0y1M7kpcYd3m
 lzcg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:from:date:message-id:subject:to;
 bh=usy07v9rJ6BBV96HmtRxLL0+C1MetzUR/4/fQIlg/cE=;
 b=f1C0Nxmedm8cxRWVLvCeNqVRZY5f03/C1st6A+vQh+xIFBhGC2Ac6Vf1t//KF+fc2X
 yv83JCC4a7GZqdClQVA2fc1ZDiz5Z6P9VN6uy+JgC5RFe38DgmUp6cdWexGST/Tg0n1y
 ZtFAR9mEVTXWymVM6yJVVnSMGG1W9JFZ5m/vH4O6nviymYSA4vpUoeICet9tAzm4XEKP
 6Z0PUGsIRd7vdqQYty+4pB2aKd5eaK4rSbOSbmSTQ+j42zkL0KY3b9i4T2ObzhKGMym9
 2FXmmke/THu0nIDJHW6gQIO9REcgTM8tpgV00bQUrQ1sOnTYqo2yaaywCdoPJjg3m/4N
 SVcg==
X-Gm-Message-State: AIkVDXJ5Z2SayDMQ0JK65E+uCWDRc/ZgDoC0f7XIYeqLJOe5k2wmyc/HCMLd4QgIPes8OGSeaE/DBCdhe1cXEw==
X-Received: by 10.36.181.83 with SMTP id j19mr26226170iti.13.1482780573454;
 Mon, 26 Dec 2016 11:29:33 -0800 (PST)
MIME-Version: 1.0
Received: by 10.79.0.165 with HTTP; Mon, 26 Dec 2016 11:29:33 -0800 (PST)
From: Subbsd <subbsd@gmail.com>
Date: Mon, 26 Dec 2016 22:29:33 +0300
Message-ID: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
Subject: Mozilla firefox freezes/zombie on FreeBSD current
To: freebsd-gecko@freebsd.org, 
 freebsd-current Current <freebsd-current@freebsd.org>
Content-Type: text/plain; charset=UTF-8
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Mon, 26 Dec 2016 19:29:34 -0000

Hi,

On recent FreeBSD version (tested on two host: one from
svn://svn.freebsd.org/base/head ( r310507 now) and second from
https://github.com/FreeBSDDesktop/freebsd-base-graphics.git /
drm-next-4.7 ) and latest firefox ( firefox-50.1.0_4,1 ) I often get
into a situation where firefox is hands.

It looks like unresponsive window: https://snag.gy/gKPhnb.jpg

with follow information from procstat:

---
% procstat -t 18827
  PID    TID COMM                TDNAME              CPU  PRI STATE   WCHAN
18827 100754 firefox             -                    -1  152 sleep   uwait
18827 101508 firefox             Gecko_IOThread       -1  130 sleep   kqread
18827 101509 firefox             Socket Thread        -1  128 sleep   select
18827 101510 firefox             JS Watchdog          -1  121 sleep   uwait
18827 101511 firefox             JS Helper            -1  120 sleep   uwait
18827 101512 firefox             JS Helper            -1  120 sleep   uwait
18827 101513 firefox             JS Helper            -1  120 sleep   uwait
18827 101514 firefox             JS Helper            -1  120 sleep   uwait
18827 101515 firefox             JS Helper            -1  120 sleep   uwait
18827 101516 firefox             JS Helper            -1  120 sleep   uwait
18827 101517 firefox             JS Helper            -1  120 sleep   uwait
18827 101518 firefox             JS Helper            -1  120 sleep   uwait
18827 101519 firefox             JS Helper            -1  120 sleep   uwait
18827 101520 firefox             JS Helper            -1  120 sleep   uwait
18827 101521 firefox             JS Helper            -1  120 sleep   uwait
18827 101522 firefox             JS Helper            -1  120 sleep   uwait
18827 101523 firefox             Hang Monitor         -1  132 sleep   uwait
18827 101524 firefox             BgHangManager        -1  125 sleep   uwait
18827 101525 firefox             -                    -1  129 sleep   select
18827 101526 firefox             -                    -1  129 sleep   select
18827 101527 firefox             Cache2 I/O           -1  120 sleep   uwait
18827 101528 firefox             Timer                -1  120 sleep   uwait
18827 101529 firefox             DataStorage          -1  145 sleep   uwait
18827 101530 firefox             GMPThread            -1  148 sleep   uwait
18827 101532 firefox             -                    -1  149 sleep   kqread
18827 101533 firefox             HTML5 Parser         -1  152 sleep   uwait
18827 101534 firefox             IPDL Background      -1  138 sleep   uwait
18827 101538 firefox             ImgDecoder #1        -1  152 sleep   uwait
18827 101539 firefox             ImgDecoder #2        -1  152 sleep   uwait
18827 101540 firefox             ImgDecoder #3        -1  152 sleep   uwait
18827 101541 firefox             ImgDecoder #4        -1  152 sleep   uwait
18827 101542 firefox             ImgDecoder #5        -1  152 sleep   uwait
18827 101543 firefox             ImgDecoder #6        -1  152 sleep   uwait
18827 101544 firefox             ImgDecoder #7        -1  152 sleep   uwait
18827 101545 firefox             ImageIO              -1  152 sleep   uwait
18827 101546 firefox             Compositor           -1  152 sleep   vmpfw
18827 101547 firefox             SoftwareVsyncThread  -1  120 sleep   uwait
18827 101548 firefox             DOM Worker           -1  120 sleep   uwait
18827 101552 firefox             DOM Worker           -1  120 sleep   uwait
18827 101556 firefox             StreamTrans #11      -1  120 sleep   uwait
18827 101557 firefox             URL Classifier       -1  152 sleep   uwait
18827 101558 firefox             ImageBridgeChild     -1  152 sleep   uwait
18827 101559 firefox             Cache I/O            -1  152 sleep   uwait
18827 101560 firefox             mozStorage #1        -1  152 sleep   uwait
18827 101561 firefox             mozStorage #2        -1  152 sleep   uwait
---

--
% procstat -k 18827
  PID    TID COMM                TDNAME              KSTACK
18827 100754 firefox             -                   mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101508 firefox             Gecko_IOThread      mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep kqueue_kevent kern_kevent
sys_kevent amd64_syscall Xfast_syscall
18827 101509 firefox             Socket Thread       mi_switch
sleepq_catch_signals sleepq_wait_sig _cv_wait_sig seltdwait kern_poll
sys_poll amd64_syscall Xfast_syscall
18827 101510 firefox             JS Watchdog         mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101511 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101512 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101513 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101514 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101515 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101516 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101517 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101518 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101519 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101520 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101521 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101522 firefox             JS Helper           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101523 firefox             Hang Monitor        mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101524 firefox             BgHangManager       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101525 firefox             -                   mi_switch
sleepq_catch_signals sleepq_wait_sig _cv_wait_sig seltdwait kern_poll
sys_poll amd64_syscall Xfast_syscall
18827 101526 firefox             -                   mi_switch
sleepq_catch_signals sleepq_wait_sig _cv_wait_sig seltdwait kern_poll
sys_poll amd64_syscall Xfast_syscall
18827 101527 firefox             Cache2 I/O          mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101528 firefox             Timer               mi_switch
sleepq_catch_signals sleepq_timedwait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101529 firefox             DataStorage         mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101530 firefox             GMPThread           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101532 firefox             -                   mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep kqueue_kevent kern_kevent
sys_kevent amd64_syscall Xfast_syscall
18827 101533 firefox             HTML5 Parser        mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101534 firefox             IPDL Background     mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101538 firefox             ImgDecoder #1       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101539 firefox             ImgDecoder #2       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101540 firefox             ImgDecoder #3       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101541 firefox             ImgDecoder #4       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101542 firefox             ImgDecoder #5       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101543 firefox             ImgDecoder #6       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101544 firefox             ImgDecoder #7       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101545 firefox             ImageIO             mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101546 firefox             Compositor          mi_switch
sleepq_wait _sleep vm_page_busy_sleep vm_page_sleep_if_busy
vm_fault_hold vm_fault trap_pfault trap calltrap
18827 101547 firefox             SoftwareVsyncThread mi_switch
sleepq_catch_signals sleepq_timedwait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101548 firefox             DOM Worker          mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101552 firefox             DOM Worker          mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101556 firefox             StreamTrans #11     mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101557 firefox             URL Classifier      mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101558 firefox             ImageBridgeChild    mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101559 firefox             Cache I/O           mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101560 firefox             mozStorage #1       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
18827 101561 firefox             mozStorage #2       mi_switch
sleepq_catch_signals sleepq_wait_sig _sleep umtxq_sleep do_wait
__umtx_op_wait_uint_private amd64_syscall Xfast_syscall
---

No any data from "truss -p" or ktrace.

kill -9 or any other kill is not affected.
If i apply 'xkill' on stale firefox windows it come to 'stopped'
process in 'top'.
And also there is no reaction on kill (e.g. -19, SIGCONT).

In this state, procstat show:

% procstat -k 18827
  PID    TID COMM                TDNAME              KSTACK
18827 100754 firefox             -                   mi_switch
thread_suspend_switch thread_single exit1 sigexit postsig ast
doreti_ast
18827 101546 firefox             Compositor          mi_switch
sleepq_wait _sleep vm_page_busy_sleep vm_page_sleep_if_busy
vm_fault_hold vm_fault trap_pfault trap calltrap

% procstat -t 18827
  PID    TID COMM                TDNAME              CPU  PRI STATE   WCHAN
18827 100754 firefox             -                    -1  120 stop    -
18827 101546 firefox             Compositor           -1  152 stop    vmpfw


Just CC to freebsd-current@ ,  because not sure that this problem of
freebsd-gecko@ only.

Anyone else met with such behavior ?

Additional settings: for qt5-gui:

loader.conf:

kern.ipc.shmmni=4096
kern.ipc.shmseg=4096
kern.ipc.shmmax=1073741824
sem_load="YES"
kern.ipc.shm_allow_removed=1

From owner-freebsd-current@freebsd.org  Tue Dec 27 04:55:56 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 35124C9206C
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Tue, 27 Dec 2016 04:55:56 +0000 (UTC) (envelope-from kaduk@mit.edu)
Received: from dmz-mailsec-scanner-1.mit.edu (dmz-mailsec-scanner-1.mit.edu
 [18.9.25.12])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 975AC157A
 for <freebsd-current@FreeBSD.org>; Tue, 27 Dec 2016 04:55:55 +0000 (UTC)
 (envelope-from kaduk@mit.edu)
Received: from mailhub-auth-1.mit.edu ( [18.9.21.35])
 (using TLS with cipher DHE-RSA-AES256-SHA (256/256 bits))
 (Client did not present a certificate)
 by  (Symantec Messaging Gateway) with SMTP id E4.47.23163.223F1685;
 Mon, 26 Dec 2016 23:50:43 -0500 (EST)
Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11])
 by mailhub-auth-1.mit.edu (8.13.8/8.9.2) with ESMTP id uBR4ofK9006152
 for <freebsd-current@FreeBSD.org>; Mon, 26 Dec 2016 23:50:42 -0500
Received: from kduck.kaduk.org (24-107-191-124.dhcp.stls.mo.charter.com
 [24.107.191.124]) (authenticated bits=56)
 (User authenticated as kaduk@ATHENA.MIT.EDU)
 by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id uBR4oco1013444
 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT)
 for <freebsd-current@FreeBSD.org>; Mon, 26 Dec 2016 23:50:41 -0500
Resent-From: Benjamin Kaduk <kaduk@mit.edu>
Resent-Date: Mon, 26 Dec 2016 22:50:38 -0600
Resent-Message-ID: <20161227045038.GB8460@kduck.kaduk.org>
Resent-To: freebsd-current@FreeBSD.org
Received: from mailsec-scanner-6.mit.edu (18.7.68.44) by
 OC11EXHUB7.exchange.mit.edu (18.9.3.19) with Microsoft SMTP Server id
 14.3.235.1; Mon, 26 Dec 2016 15:37:14 -0500
Received: from mailhub-dmz-2.mit.edu ( [18.7.62.37])	by
 mailsec-scanner-6.mit.edu (Symantec Mail Security) with SMTP id
 CC.3F.02305.A7F71685; Mon, 26 Dec 2016 15:37:14 -0500 (EST)
Received: from dmz-mailsec-scanner-2.mit.edu (dmz-mailsec-scanner-2.mit.edu
 [18.9.25.13])	by mailhub-dmz-2.mit.edu (8.13.8/8.9.2) with ESMTP id
 uBQKbDMV017776	for <kaduk@mit.edu>; Mon, 26 Dec 2016 15:37:13 -0500
Received: from mx2.freebsd.org (mx2.freebsd.org [8.8.178.116])	(using TLS with
 cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))	(Client did not
 present a certificate)	by  (Symantec Messaging Gateway) with SMTP id
 26.08.07321.57F71685; Mon, 26 Dec 2016 15:37:09 -0500 (EST)
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])	(using TLSv1.2 with cipher
 ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))	(Client CN "mx1.freebsd.org",
 Issuer "Let's Encrypt Authority X3" (verified OK))	by mx2.freebsd.org
 (Postfix) with ESMTPS id 2FC8768613;	Mon, 26 Dec 2016 20:37:07 +0000 (UTC)
 (envelope-from owner-freebsd-hackers@freebsd.org)
Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org
 [IPv6:2001:1900:2254:206a::50:5])	by mx1.freebsd.org (Postfix) with ESMTP id
 C4238185B;	Mon, 26 Dec 2016 20:37:06 +0000 (UTC)	(envelope-from
 owner-freebsd-hackers@freebsd.org)
Delivered-To: freebsd-hackers@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with
 ESMTP id 45FECC91FA3 for <freebsd-hackers@mailman.ysv.freebsd.org>; Mon, 26
 Dec 2016 20:37:03 +0000 (UTC) (envelope-from kaduk@mit.edu)
Received: from dmz-mailsec-scanner-4.mit.edu (dmz-mailsec-scanner-4.mit.edu
 [18.9.25.15]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256
 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix)
 with ESMTPS id CDFC61809 for <freebsd-hackers@FreeBSD.org>; Mon, 26 Dec 2016
 20:36:59 +0000 (UTC) (envelope-from kaduk@mit.edu)
X-AuditID: 1209190c-fe3ff70000005a7b-e3-5861f322cd47
Received: from mailhub-auth-4.mit.edu ( [18.7.62.39]) (using TLS with cipher
 DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by
 (Symantec Messaging Gateway) with SMTP id 7C.18.23064.43E71685; Mon, 26 Dec
 2016 15:31:49 -0500 (EST)
Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11]) by
 mailhub-auth-4.mit.edu (8.13.8/8.9.2) with ESMTP id uBQKVmv2006960; Mon, 26
 Dec 2016 15:31:48 -0500
Received: from kduck.kaduk.org (24-107-191-124.dhcp.stls.mo.charter.com
 [24.107.191.124]) (authenticated bits=56) (User authenticated as
 kaduk@ATHENA.MIT.EDU) by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id
 uBQKVjZB015799 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256
 verify=NOT); Mon, 26 Dec 2016 15:31:47 -0500
Date: Mon, 26 Dec 2016 14:31:45 -0600
From: Benjamin Kaduk <bjk@FreeBSD.org>
To: <freebsd-hackers@FreeBSD.org>
Subject: second call for 2016Q4 status reports
Message-ID: <20161226203144.GZ8460@kduck.kaduk.org>
Content-Disposition: inline
User-Agent: Mutt/1.6.1 (2016-04-27)
X-Brightmail-Tracker: H4sIAAAAAAAAA0WTfUhTURjGO/de193aletS9qpFNCmy8ouKNMwi+rBIiYKyIuzqbtt0W7I7
 JS1oVGZqVhCULXGlicM/+jBl5hbVIqy0DINEHRL0xZaZWqJlX/fu3vS/93l/53nOeQ/nkLjq
 niyKNJitrMXMGDUyBaGSR8TExXxjshJ9FeHJNUMj2HqUXj3mIHagfYpULWs0FLGWhLSDCr3z
 bGxBGXVkwP6VsKHTcyoQSQK9Evru7q5AClJFn8bA1zaBi+I1gpbxvtmimMDg2YiDF3JeLANP
 2QUk1svBX1sn9dfA4PURTKwXw/hov2S+icBb1opE4UJQVfs0RBS9CEbP/ZHEJQyef+6VPCdx
 KD/jljzjCH40fQjuQtCrwD/owERQjoFzuFcmiiEMfj4ZxIVVwlQvKj8R02O5nTVS8B0EPYEe
 iXTxpPEELgYvgqoGR7CW8ce/5XwTrMPphXB/6nZwrLl0PNR2twf7FL0CyjovY8Il4nQ0NP4h
 hXYEHQO26rfBOwT6qhz6b0/KRFEpB6fbKZHzs+Fkuz9EPOwSaGvtxS6gJPtMmJ0nOH+919xj
 MrFeAK4vNbg9uHcYPLvynriGiCY0X2sqiTMxBiPH5sZxuYzZzFrikuJNBms8qy1sRsEXEqls
 Q11D27yIJpFGSU02MlmqEKaIKzZ5USSJaSKoFj/fCs05rC3WM5w+21JoZDkvAhLXhFMPB3hG
 aZniEtZy+D+KJgmNmuoxbMlS0TrGyuazbAFr+U/nkaQGqLwx3hhmYXXskUMGo3UGY6RcCFfy
 4X9HhXCugDFxBp3In6OFUWrKJQBaAPpC87RXePGQ/+BYAKn5UeZSU8IqJf8fpt0BPhjjgxOO
 ZwvBVmYGRdnQ46h6XeevJ8lbHw5vjk5cnXdUrno1Ueitn/VRu7Yqd7/eU+TZpF5Pb/z87vuH
 s3vflp5ZB/rwjFZfZE6dqePyo5eBDay7w5VuP5Zyb9b2urRtB2LH9+1MybxhkJnSS0/9bKZp
 ReUuj7/8Ysq8hPoac2rzsE/xLqz7q+1RaGbG7z0NGoLTM0lLcQvH/AOeLfnFzAMAAA==
X-Brightmail-Tracker: H4sIAAAAAAAAA1WSa0gUURiG98yMu8d1J46zmp9bYW0p3bx1kagQIaUIgoh+bBLUpEd3aXeU
 mTVUMM1EJZOipNJCy5LWoiK7KxRtVJrdL9qFJCNa1CwrpB9BNbOjWf/e8z3nnff9hoNZYcBo
 w7TQS2VJdNuNZk4wpcbGF5eKjqT7z9glFz+eDUlDqxpah9m1KNO8PJu6XduonJi62ez07Z6T
 X8UXvmn4wpWhyrBdKBQDWQQPagKcpgVyCcHlTrILmVXdi+D0170m/XCAgbqbo6x+2MnC/uEz
 Y2QUQdvTxybNz5HFMNDXxOighoGRqgtjlhEG7n7yG8cT77S+ZfXEaga6bir6pfMIXtYOMTp4
 yMDQe6f+2ViobWkKGowkDs75eoI6gsTA9fIvwWgrSYDGR+3BOU8WQlX3QUbX4dBV/0FdD2OW
 TIGTv7A2jiQzoezQu2A5IDWh4OvwjR32mGBn+0CI3nQ2XL3Uy+g6Gvq6+4MbEEKg8cS14NxC
 1kFL4BWnmS1kH4Lq7s+cDlZAdcVxo64Toar6boiu06Gv4gjSDXsQ1H16bdqL4hr+adsw0VYb
 s2Q+HO34ZtR1DFwZPsIeRdwpFO0RXW6FZsUrWaIkUTk+JcHj8ibQ7II2FHwY6fOvop5jGX5E
 MLJb+MKwzQ4hRNymFHn8KBoz9kj+0SzRIUzakpdd5BQV5ya5wE0VPwLM2iP48hKV8dliUTGV
 88bRFMzZo/jO5JUOgeSKXrqV0nwqj1MGm/xoKsZ24OdsV93hMs2lhTkut/ffO6FagkVNmK7d
 4ZV80aO4cnV+D82wRfF1WjTRgLNA+uvVXjvGbd6naJrNyiODwSBY1HB15//5exSOB0yC0cxQ
 iSy2cVKeRAdRlPoPrPwGLdLikrx/EwfVMoxaJrF0k1bGK04gWxky/KhfeqLyZekTKX1N5Oqm
 QDEO/flwsDmztv6NJ63e5sjPrBhthvuzcl4s3dGVmbI+Pudi+W159fehsHmd0zI2Nift+xro
 qIs4NXywJ3Zecv8C3+HR8KyS5VFWrlHoTspglhUvef7j97WeFGVdnjU2seTWDVN/pWG9oax3
 BE8eehWwc4pTTJ7Lyor4B1t1m0f8AwAA
X-Brightmail-Tracker: H4sIAAAAAAAAA1VTa0gUURj1zoy713WnbmPh5/beUuyhtj2gKKIoSCJCimCJqCZ3crd2V5vZ
 FRUyUXMXe5eUbaL2sOxFaZZmULk9rCwNg16iZARhatpDKgppZkfT/lzO/c53vnM+uBfTXIvG
 gIU0lyA6ebtRo2MwrnTFuHfx5lmNLXHzz1Ucp5ag+OynD+gEtF63yCLYbamCGLd4s85avnda
 iodNa/H1MFkoLzQfhWAgc+Hh+VY6H+kwR45SUFDXN3DJoeFI92WteulDUNn8XKtIGDIPOtpK
 KJXYQ0Gv59qApJeC+i6/ZnBwTvtPSsEc8VLwuE5SmyoQvN7XOUA0UtD53qqOjYR9ZSW0gjUk
 Cq6Uvwzg0WQi3M7uCViHkVgobqoN1FkyBzwNxygVj4LHxz8w+QhjmoyFc/1YKY8hUyCr8F0g
 HJADWsip7QhWw0VDzfVXlIojoK2hPRCaEALFZ24G6nqyBso+vmEUsZ4cRuBt+MyoxDLw5p7W
 qDgOPN76YBUvh7bcIqQKDiAo6HqrVRNNgPsvFis9NJkJpbe+alQ8Eaq7i+iDaIpv2A6+oR18
 wxS+YYpSxFxA4y2OjBgHb7NLQmKMlMg7nYIYMzvWYXPFChZ3JZJfBhcSwdag/taVfkQwMurZ
 tNDNZi6YT5XSHX4UgSnjGLZpKm/mRmxJtqRbecm6SXTbBcmPANPG0Wz2TpljLXx6hiAmD1Jj
 MWMMZ5ttK8wcSeJdwnZBSBHEQZbCWj8ah7ER2BuZsnqUKCQJaVttdtfwnhDl0Ck2etlmktLI
 Sim8Q7IlqU1P0GRDOFug+BOFsLqd/wYMvvlmNN4QxqKgoCBOLyeQF/+f/4TC5aXDWK38NTi9
 zen6N/2TbEzJxnG7NinGLn6IMmQh0WrMrUk41PT0zjZToumq6dupjTsKF274VfrIW9PT3XHj
 4rpIvP9P8qKM70F/7k9em1kefDJ/971oU4bbXLzhbOaMhMPiwcw8x++o7Yknyp6VrH3YUzVp
 dZTH9Ki1dmnbj1Xtje8bv1SvXxB6qLq0sH6vZ9zpLkOBp2rLpfjQ3JE3i+5WGBnJypum06LE
 /wW9GgYD7gMAAA==
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFjrLIsWRmVeSWpSXmKPExsUixG6nrmtalxhhcHuWicW5fVPYLbZv/sfo
 wOQx49N8lgDGKC6blNSczLLUIn27BK6M1VO3MBYs4a5onDeJvYFxM2cXIyeHhICJRPPDH0xd
 jFwcQgJtTBKPXk9hg3A2MkocbDkLlbnKJPF84n52kBYWAVWJ3qXzmUFsNgE1ifUrroHZIgLy
 Evua3gPVcHAwC8hJHLlsBxIWFtCTmHd+F1gJr4CxRPvp6UwQtqDEyZlPWEBsZgEtiRv/XjJB
 tEpLLP/HARIWFVCWaJjxgHkCI98sJB2zkHTMQuhYwMi8ilE2JbdKNzcxM6c4NVm3ODkxLy+1
 SNdELzezRC81pXQTIyjUOCX5dzDOafA+xCjAwajEw1vBnRAhxJpYVlyZe4hRkoNJSZT3vEpi
 hBBfUn5KZUZicUZ8UWlOavEhRgkOZiUR3qZaoBxvSmJlVWpRPkxKmoNFSZz3UqZ7hJBAemJJ
 anZqakFqEUxWhoNDSYLXEqRRsCg1PbUiLTOnBCHNxMEJMpwHaHg+2PDigsTc4sx0iPwpRkUp
 cd4pIAkBkERGaR5cLygVSGTvr3nFKA70ijCvAUgVDzCNwHW/AhrMBDRYvz4eZHBJIkJKqoGR
 paomPO//5gCVj7t5V9+98YQv5/xlkzmSs5i3rhN7v+GOr82S5HV/HjHO63+y70XnJKZrYRyn
 yx2K5/GzW33ZWMVV8M71AofZeqFnPKdf8soExAc9uDV10XaB1PN8jjs5O4wj14v/YPKbe2Xr
 /GtTJD6YMyyY/top6KDuiqsWzSlJF5ckls9SVGIpzkg01GIuKk4EAKw/TJvgAgAA
X-BeenThere: freebsd-hackers@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
CC: <frebsd-current@FreeBSD.org>
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Errors-To: owner-freebsd-hackers@FreeBSD.org
Sender: <owner-freebsd-hackers@FreeBSD.org>
Authentication-Results: symauth.service.identifier
X-MS-Exchange-Organization-AuthSource: OC11EXHUB7.exchange.mit.edu
X-MS-Exchange-Organization-AuthAs: Anonymous
MIME-Version: 1.0
X-BeenThere: freebsd-current@freebsd.org
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 04:55:56 -0000

Dear FreeBSD Community,

The deadline for the next FreeBSD Quarterly Status update is January 7,
2016, for work done in October through December.

Status report submissions do not need to be very long.  They may be about
anything happening in the FreeBSD project and community, and provide a great
way to inform FreeBSD users and developers about work that is underway and
completed.  Submission of reports is not restricted to committers; anyone
doing anything interesting and FreeBSD related can -- and should -- write one!

The preferred and easiest submission method is to use the XML generator [1]
with the results emailed to the status report team at monthly@FreeBSD.org .
(Do be sure, though, to save the form output and not the form itself!)  There
is also an XML template [2] that can be filled out manually and attached
if preferred.  For the expected content and style, please study our guidelines
on how to write a good status report [3].  You can also review previous issues
[4][5] for ideas on the style and format.

We look forward to seeing your 2016Q4 reports!

Happy Holidays,

Ben (on behalf of monthly@)

[1] https://www.FreeBSD.org/cgi/monthly.cgi
[2] https://www.FreeBSD.org/news/status/report-sample.xml
[3] https://www.FreeBSD.org/news/status/howto.html
[4] https://www.FreeBSD.org/news/status/report-2016-04-2016-06.html
[5] https://www.FreeBSD.org/news/status/report-2016-07-2016-09.html
_______________________________________________
freebsd-hackers@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-hackers
To unsubscribe, send any mail to "freebsd-hackers-unsubscribe@freebsd.org"

From owner-freebsd-current@freebsd.org  Tue Dec 27 09:33:51 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id A4C08C92A71;
 Tue, 27 Dec 2016 09:33:51 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1])
 (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 2451A1FC9;
 Tue, 27 Dec 2016 09:33:50 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from tom.home (kib@localhost [127.0.0.1])
 by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id uBR9XdW8086571
 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO);
 Tue, 27 Dec 2016 11:33:40 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua uBR9XdW8086571
Received: (from kostik@localhost)
 by tom.home (8.15.2/8.15.2/Submit) id uBR9Xd30086570;
 Tue, 27 Dec 2016 11:33:39 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com
 using -f
Date: Tue, 27 Dec 2016 11:33:39 +0200
From: Konstantin Belousov <kostikbel@gmail.com>
To: Subbsd <subbsd@gmail.com>
Cc: freebsd-gecko@freebsd.org,
 freebsd-current Current <freebsd-current@freebsd.org>
Subject: Re: Mozilla firefox freezes/zombie on FreeBSD current
Message-ID: <20161227093339.GS94325@kib.kiev.ua>
References: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00,
 DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no
 autolearn_force=no version=3.4.1
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 09:33:51 -0000

On Mon, Dec 26, 2016 at 10:29:33PM +0300, Subbsd wrote:
> Hi,
> 
> On recent FreeBSD version (tested on two host: one from
> svn://svn.freebsd.org/base/head ( r310507 now) and second from
> https://github.com/FreeBSDDesktop/freebsd-base-graphics.git /
> drm-next-4.7 ) and latest firefox ( firefox-50.1.0_4,1 ) I often get
> into a situation where firefox is hands.
Which graphics driver do you use with pristine head ?

> 
> It looks like unresponsive window: https://snag.gy/gKPhnb.jpg
> 
> with follow information from procstat:
> 
> ---
> % procstat -t 18827
>   PID    TID COMM                TDNAME              CPU  PRI STATE   WCHAN
> 18827 101546 firefox             Compositor           -1  152 sleep   vmpfw

> 18827 101546 firefox             Compositor          mi_switch
> sleepq_wait _sleep vm_page_busy_sleep vm_page_sleep_if_busy
> vm_fault_hold vm_fault trap_pfault trap calltrap

This thread is problematic. It waits for a page ceasing the busy state,
in the page fault handler. The question to answer first is, who is the
owner of the busy state and why the page is not released.

Using the command
	ps -H -o pid,lwp,mwchan,nwchan <pid of firefox>
find the thread which is hung, and the numerical address of the wait channel
where the thread is blocked, from the NWCHAN column of ps output.

Start kgdb on the live system as
	kgdb <path to>/kernel.full /dev/mem
and do
	(kgdb) p/x *(struct vm_page *)<NWCHAN>
If the output above shows non-zero object, also please do
	(kgdb) p/x *(struct vm_object *)<address of the object>

From owner-freebsd-current@freebsd.org  Tue Dec 27 10:19:25 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 43AE4C8FF3E;
 Tue, 27 Dec 2016 10:19:25 +0000 (UTC) (envelope-from ae@FreeBSD.org)
Received: from butcher-nb.yandex.net (freefall.freebsd.org
 [IPv6:2610:1c1:1:6074::16:84])
 by mx1.freebsd.org (Postfix) with ESMTP id EB9271C6D;
 Tue, 27 Dec 2016 10:19:23 +0000 (UTC) (envelope-from ae@FreeBSD.org)
Subject: Re: [RFC/RFT] projects/ipsec
To: freebsd-current@FreeBSD.org, freebsd-net@FreeBSD.org
References: <2bd32791-944f-2417-41e9-e0fe1c705502@FreeBSD.org>
From: "Andrey V. Elsukov" <ae@FreeBSD.org>
Cc: "Bjoern A. Zeeb" <bz@FreeBSD.org>, George Neville-Neil <gnn@FreeBSD.org>
Message-ID: <a607059a-97c9-e36e-0269-bfc7d4f11eb9@FreeBSD.org>
Date: Tue, 27 Dec 2016 13:18:47 +0300
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.5.1
MIME-Version: 1.0
In-Reply-To: <2bd32791-944f-2417-41e9-e0fe1c705502@FreeBSD.org>
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 10:19:25 -0000

On 11.12.2016 02:07, Andrey V. Elsukov wrote:
> Hi All,
>
> I am pleased to announce that projects/ipsec, that I started several
> months ago is ready for testing and review.
> The main goals were:
>   * rework locking to make IPsec code more friendly for concurrent
>     processing;
>   * make lookup in SADB/SPDB faster;
>   * revise PFKEY implementation, remove stale code, make it closer
>     to RFC;
>   * implement IPsec VTI (virtual tunneling interface);
>   * make IPsec code loadable as kernel module.
>
> Currently all, except the last one is mostly done. So, I decided ask for
> a help to test the what already done, while I will work on the last task.

I finished the last task, now it is possible to load/unload IPsec and 
TCP-MD5 support as kernel modules.

New kernel option IPSEC_SUPPORT should be used to build the kernel that 
is able to load IPsec module.

So, if you have 'options IPSEC' in the kernel config, IPsec support will 
be build in the kernel without TCP-MD5 support.

If you have 'options IPSEC' and 'options TCP_SIGNATURE', IPsec and 
TCP-MD5 support will be build in the kernel.

If you have 'options IPSEC' and 'options IPSEC_SUPPORT', IPsec support 
will be build in the kernel and TCP-MD5 can be loaded.

If you have 'options IPSEC_SUPPORT', IPsec and TCP-MD5 can be loaded.

If you have 'options IPSEC_SUPPORT' and 'options TCP_SIGNATURE', TCP-MD5 
support will be build in the kernel and IPsec can be loaded.

If you have not IPSEC* options, it isn't possible to use IPsec as module.

So, if there will no objection, I'll merge projects/ipsec into head/ 
within two weeks.

-- 
WBR, Andrey V. Elsukov

From owner-freebsd-current@freebsd.org  Tue Dec 27 13:15:17 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6455AC93330
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Tue, 27 Dec 2016 13:15:17 +0000 (UTC) (envelope-from jim@netgate.com)
Received: from mail-io0-x22e.google.com (mail-io0-x22e.google.com
 [IPv6:2607:f8b0:4001:c06::22e])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 39FD41040
 for <freebsd-current@freebsd.org>; Tue, 27 Dec 2016 13:15:17 +0000 (UTC)
 (envelope-from jim@netgate.com)
Received: by mail-io0-x22e.google.com with SMTP id p42so313144070ioo.1
 for <freebsd-current@freebsd.org>; Tue, 27 Dec 2016 05:15:17 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=netgate.com; s=google;
 h=mime-version:in-reply-to:references:from:date:message-id:subject:to
 :cc:content-transfer-encoding;
 bh=7sNiJQQmAHVAz5l3wOSF/XiGqaxuGZ/BxlwZ9Iwlg1M=;
 b=RkiOebxEPJiJHS9iHVigB8b/NAwRHchIVXTAAygt3a7HHr56mAt1IVhPW8tLHzvxc9
 rhIBahExS3p2rrtG1wpxrl1rEtXSoUueMBc3X2oUrGpXn83vPhO4sBvIO9L6FvfVznYZ
 wazy2g44erieW46Bn+L30aFjDs4fRylOIZmFM=
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:in-reply-to:references:from:date
 :message-id:subject:to:cc:content-transfer-encoding;
 bh=7sNiJQQmAHVAz5l3wOSF/XiGqaxuGZ/BxlwZ9Iwlg1M=;
 b=Gaj+g/saFDssBdGLDFbKOVQOxizu0bppeiQgFwKQqmOP10yuA9q4VAxR3VRbg2Pv47
 CZL8fxjmR6sr2PxcXOUUAvmesACi9u7OIzJSaQbaEhGnaWFIirAtfxv7z1xeGu5kQQoL
 T4VAvpj7liOOYUzzlKRtpea4/rxZa7wV1U/g/qC/GpFrf6syRUsOSA97hJhLxbLCT3C+
 WvGzgDoOv5gDZiCxNC3xcmPSLr44XzNfe35w9rkXHDiZkVgw1Oa5tV+wtlRqg9X7keAY
 6NvD5zx/Hi5Y/CWFFSpqJL4TaI7VrGc4XwrDymh8/oAsBOZVQ68fUl4N3fCQvaCYwOVV
 /3cQ==
X-Gm-Message-State: AIkVDXKnw9juZuHs/+bGHRa+OTDya6gTTyW20o1pDurDA+3BPgTbUKRPbn2YHB00ijSuXP8FiHtumRhCQFW9Xqih
X-Received: by 10.107.28.12 with SMTP id c12mr18917335ioc.223.1482844516394;
 Tue, 27 Dec 2016 05:15:16 -0800 (PST)
MIME-Version: 1.0
Received: by 10.50.32.4 with HTTP; Tue, 27 Dec 2016 05:15:15 -0800 (PST)
In-Reply-To: <5889f1f5-5585-95d4-beac-285dbc722b4e@norma.perm.ru>
References: <2bd32791-944f-2417-41e9-e0fe1c705502@FreeBSD.org>
 <5889f1f5-5585-95d4-beac-285dbc722b4e@norma.perm.ru>
From: Jim Thompson <jim@netgate.com>
Date: Tue, 27 Dec 2016 07:15:15 -0600
Message-ID: <CAKAfi7x7dYyVNs6oEd+qVV7sKa60RT29rVGt=CEi_s+HDsLR0g@mail.gmail.com>
Subject: Re: [RFC/RFT] projects/ipsec
To: "Eugene M. Zheganin" <emz@norma.perm.ru>
Cc: FreeBSD Current <freebsd-current@freebsd.org>,
 freebsd-net <freebsd-net@freebsd.org>
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Mailman-Approved-At: Tue, 27 Dec 2016 13:30:07 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 13:15:17 -0000

> In it's initial state if_ipsec allows to use only one set of encryption p=
arameters (because only one sainfo anonyumous is possible), so at this time=
 it doesn't allow to create multiple tunnels with VPN hubs that use differe=
nt cipers and/or transform sets, but as far as I understand this is subject=
 to change and Andrey is already working on a support of this feature from =
ipsec-tools IKE daemon.

pfSense (which you mention below) is using strongswan, so when Andrey
is finished with ipsec-tools, we will need to review his changes and
see what we can do for strongswan.

I'm looking forward to the mutliple-tunnel support, which is required
for pfSense.

> But even in this state this feature is already useful and I'm excited to =
see it commited to HEAD and then MFC'd to 11.x, to start using it in my pro=
duction network (as you may know, buiding gre/ipsec tunnels on Juniper is v=
ery hackish and tricky, bit I still have more than dozen of them). I've alr=
eady saw a discussion on FreeBSD web forums, and people there are excited a=
bout if_ipsec too.

> Furthermore, I believe that guys using pfSense will be very happy about i=
f_ipsec in their routers, because I saw several discussions mentioning miss=
ing VTI support there.

I'm not sure what discussions you saw.  We're aware, and very
interested in the VTI support.
https://twitter.com/gonzopancho/status/809412164259893248

On Wed, Dec 14, 2016 at 10:52 AM, Eugene M. Zheganin <emz@norma.perm.ru> wr=
ote:
> Hi,
>
> On 11.12.2016 4:07, Andrey V. Elsukov wrote:
>>
>> Hi All,
>>
>> I am pleased to announce that projects/ipsec, that I started several
>> months ago is ready for testing and review.
>> The main goals were:
>>    * rework locking to make IPsec code more friendly for concurrent
>>      processing;
>>    * make lookup in SADB/SPDB faster;
>>    * revise PFKEY implementation, remove stale code, make it closer
>>      to RFC;
>>    * implement IPsec VTI (virtual tunneling interface);
>>    * make IPsec code loadable as kernel module.
>>
>> Currently all, except the last one is mostly done. So, I decided ask for
>> a help to test the what already done, while I will work on the last task=
.
>>
> Well, at last FreeBSD got one of the most anticipated features in it's ip=
sec
> stack. When I wrote the message in the freebsd-net ML in the middle of 20=
12
> (https://lists.freebsd.org/pipermail/freebsd-net/2012-June/032556.html) I
> had a very little hope that someone will actually implement this, and now
> I'm very grateful that Andrey got the time to do this (and I'm really sor=
ry
> for being such a pain in the ass, I'm saying so because I was bothering
> Andrey all this time in IRC). This isn't definitely a feature that every
> FreeBSD enthusiast will use, and, sadly, even not the feature that every
> network engineer that use ipsec in it's every day work will configure (ma=
ny
> people still use obsoleted legacy interfaceless ipsec approach, not to
> mention weird and hybrid software routers like openvpn), but it's definit=
ely
> a feature that will be appreciated by every skilled L3 VPN engineer that =
is
> using FreeBSD in it's operating stack. I've ran some tests in my producti=
on
> network and I should say that even on it's initial release state if_ipsec=
 is
> fully operational with Juniper st tunnel on the other side, so I'm alread=
y
> running one FreeBSD <--> Juniper tunnel at my work:
>
> # ifconfig ipsec0
> ipsec0: flags=3D8051<UP,POINTOPOINT,RUNNING,MULTICAST> metric 0 mtu 1400
>         tunnel inet 128.127.144.19 --> 128.127.146.1
>         inet 172.16.3.104 --> 172.16.3.105 netmask 0xffffffff
>         inet6 fe80::204:23ff:fec7:194d%ipsec0 prefixlen 64 scopeid 0x9
>         nd6 options=3D21<PERFORMNUD,AUTO_LINKLOCAL>
>         reqid: 16385
>         groups: ipsec
>
> racoon.conf:
> path pre_shared_key "/usr/local/etc/racoon/psk.txt";
>
> padding {
>     maximum_length 20; # maximum padding length.
>     randomize off; # enable randomize length.
>     strict_check off; # enable strict check.
>     exclusive_tail off; # extract last one octet.
> }
>
> listen {
>     isakmp 128.127.144.19 [500];
>     strict_address; # requires that all addresses must be bound.
> }
>
> timer {
>     counter 5;
>     interval 20 sec;
>     persend 1;
>
>     phase1 30 sec;
>     phase2 15 sec;
> }
>
> #
> # SPb, Test
> #
>
> remote 128.127.146.1 {
>     exchange_mode main;
>     lifetime time 1 hour;
>     my_identifier address 128.127.144.19;
>     peers_identifier address 128.127.146.1;
>     passive off;
>     proposal_check obey;
>     dpd_delay 20;
>     proposal {
>         encryption_algorithm des;
>         hash_algorithm md5;
>         authentication_method pre_shared_key;
>         dh_group modp768;
>     }
> }
>
> #
> # SPb, Test
> #
>
> sainfo address 0.0.0.0/0 [500] any address 0.0.0.0/0 [500] any {
>     pfs_group modp768;
>     lifetime time 60 min;
>     encryption_algorithm des;
>     authentication_algorithm non_auth;
>     compression_algorithm deflate;
> }
>
> Juniper side:
>
>> show configuration interfaces st0.147
> description "Perm, FreeBSD Test Server";
> family inet {
>     mtu 1455;
>     address 172.16.3.105/32 {
>         destination 172.16.3.104;
>     }
> }
>
>> show configuration security ike policy kosm65
> proposals norma-ike;
> pre-shared-key ascii-text
> "$9$-SV4ZUDkqPQUjBIclLXgoJUqf9CuESeAp-w2gGUjHqfQn"; ## SECRET-DATA
>
>> show configuration security ike gateway kosm65-freebsd-test
> ike-policy perm-freebsd-test;
> address 128.127.144.19;
> local-identity inet 128.127.146.1;
> remote-identity inet 128.127.144.19;
> external-interface reth1.2;
>
>> show configuration security ipsec vpn kosm65-freebsd-test
> bind-interface st0.147;
> ike {
>     gateway kosm65-freebsd-test;
>     ipsec-policy norma-policy;
> }
>
>> show configuration security ipsec policy norma-policy
> perfect-forward-secrecy {
>     keys group1;
> }
> proposals norma-ipsec;
>
>> show configuration security ipsec proposal norma-ipsec
> protocol esp;
> encryption-algorithm des-cbc;
> lifetime-seconds 600;
>
>> show configuration security ike proposal norma-ike
> authentication-method pre-shared-keys;
> dh-group group1;
> authentication-algorithm md5;
> encryption-algorithm des-cbc;
>
> In it's initial state if_ipsec allows to use only one set of encryption
> parameters (because only one sainfo anonyumous is possible), so at this t=
ime
> it doesn't allow to create multiple tunnels with VPN hubs that use differ=
ent
> cipers and/or transform sets, but as far as I understand this is subject =
to
> change and Andrey is already working on a support of this feature from
> ipsec-tools IKE daemon. But even in this state this feature is already
> useful and I'm excited to see it commited to HEAD and then MFC'd to 11.x,=
 to
> start using it in my production network (as you may know, buiding gre/ips=
ec
> tunnels on Juniper is very hackish and tricky, bit I still have more than
> dozen of them). I've already saw a discussion on FreeBSD web forums, and
> people there are excited about if_ipsec too. Furthermore, I believe that
> guys using pfSense will be very happy about if_ipsec in their routers,
> because I saw several discussions mentioning missing VTI support there.
>
> It's very easy to configure, because it uses ifconfig syntax and it creat=
es
> all the needed policies in the SADB automatically, so one less thing to
> bother with. And when I say "fully opertational with Juniper" I mean it: =
no
> tricky or hackish configuration directives are required oin the Juniper
> side, everything is like it's a Juniper or Cisco on the other side. So I'=
m
> pretty sure this will work with Cisco too (didn't run any test with Cisco
> though).
>
> Once again, I thank Andrey for this.
>
> Eugene.
>
> _______________________________________________
> freebsd-net@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-net
> To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org"

From owner-freebsd-current@freebsd.org  Tue Dec 27 14:10:53 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 242E2C8A725;
 Tue, 27 Dec 2016 14:10:53 +0000 (UTC)
 (envelope-from bu7cher@yandex.ru)
Received: from forward1p.cmail.yandex.net (forward1p.cmail.yandex.net
 [77.88.31.16])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "forwards.mail.yandex.net", Issuer "Yandex CA" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id D2C061C5B;
 Tue, 27 Dec 2016 14:10:52 +0000 (UTC)
 (envelope-from bu7cher@yandex.ru)
Received: from smtp2p.mail.yandex.net (smtp2p.mail.yandex.net
 [IPv6:2a02:6b8:0:1472:2741:0:8b6:7])
 by forward1p.cmail.yandex.net (Yandex) with ESMTP id 3C213206A2;
 Tue, 27 Dec 2016 17:10:43 +0300 (MSK)
Received: from smtp2p.mail.yandex.net (localhost.localdomain [127.0.0.1])
 by smtp2p.mail.yandex.net (Yandex) with ESMTP id 57E5C1A8005A;
 Tue, 27 Dec 2016 17:10:40 +0300 (MSK)
Received: by smtp2p.mail.yandex.net (nwsmtp/Yandex) with ESMTPSA id
 u0pS26SToL-AdQKnW9E; Tue, 27 Dec 2016 17:10:40 +0300
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client certificate not present)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail;
 t=1482847840; bh=D5EqgLa7fidsqvuF/bL8hpfr+BSutNcNsOi52eLaxq0=;
 h=Subject:To:References:Cc:From:Message-ID:Date:In-Reply-To;
 b=oI+alu6NpL1bVuQL4aJkqzp8iksqmYVgsErF0yYS2B3Bul91gxN1jPnM92OJ6dNJH
 /+G0P/usWMdYW4oyRHNa95HP0sO8mQU4dZQSJ/AaJA6PHSlsZ8JRfdg6EcsXgASvvf
 weEfreLVRqu9HRS3/ZbqiUuF0BwXAE5NiUEaWfbE=
Authentication-Results: smtp2p.mail.yandex.net; dkim=pass header.i=@yandex.ru
X-Yandex-Suid-Status: 1 0,1 0,1 0,1 0
Subject: Re: [RFC/RFT] projects/ipsec
To: Jim Thompson <jim@netgate.com>, "Eugene M. Zheganin" <emz@norma.perm.ru>
References: <2bd32791-944f-2417-41e9-e0fe1c705502@FreeBSD.org>
 <5889f1f5-5585-95d4-beac-285dbc722b4e@norma.perm.ru>
 <CAKAfi7x7dYyVNs6oEd+qVV7sKa60RT29rVGt=CEi_s+HDsLR0g@mail.gmail.com>
Cc: FreeBSD Current <freebsd-current@freebsd.org>,
 freebsd-net <freebsd-net@freebsd.org>
From: "Andrey V. Elsukov" <bu7cher@yandex.ru>
Message-ID: <d515d28d-96e5-0032-9af2-58e857024a3a@yandex.ru>
Date: Tue, 27 Dec 2016 17:10:02 +0300
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.5.1
MIME-Version: 1.0
In-Reply-To: <CAKAfi7x7dYyVNs6oEd+qVV7sKa60RT29rVGt=CEi_s+HDsLR0g@mail.gmail.com>
Content-Type: text/plain; charset=utf-8; format=flowed
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 14:10:53 -0000

On 27.12.2016 16:15, Jim Thompson wrote:
>> In it's initial state if_ipsec allows to use only one set of
>> encryption parameters (because only one sainfo anonyumous is
>> possible), so at this time it doesn't allow to create multiple
>> tunnels with VPN hubs that use different cipers and/or transform
>> sets, but as far as I understand this is subject to change and
>> Andrey is already working on a support of this feature from
>> ipsec-tools IKE daemon.
>
> pfSense (which you mention below) is using strongswan, so when
> Andrey is finished with ipsec-tools, we will need to review his
> changes and see what we can do for strongswan.
>
> I'm looking forward to the mutliple-tunnel support, which is
> required for pfSense.

There are no such limits. You can create multiple VTI interfaces.
The problem is in with racoon configuration restrictions. It looks like 
ipsec-tools project is dead, I didn't received any replies from 
ipsec-tools-devel mailing list.

I'm not aware how to configure strongswan, so if someone will not try to 
do this, I don't know when I will do this.

-- 
WBR, Andrey V. Elsukov

From owner-freebsd-current@freebsd.org  Tue Dec 27 15:31:31 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B4B10C92587;
 Tue, 27 Dec 2016 15:31:31 +0000 (UTC) (envelope-from slw@zxy.spb.ru)
Received: from zxy.spb.ru (zxy.spb.ru [195.70.199.98])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 755EB1BDC;
 Tue, 27 Dec 2016 15:31:31 +0000 (UTC) (envelope-from slw@zxy.spb.ru)
Received: from slw by zxy.spb.ru with local (Exim 4.86 (FreeBSD))
 (envelope-from <slw@zxy.spb.ru>)
 id 1cLtij-000Peu-SR; Tue, 27 Dec 2016 18:31:21 +0300
Date: Tue, 27 Dec 2016 18:31:21 +0300
From: Slawa Olhovchenkov <slw@zxy.spb.ru>
To: Subbsd <subbsd@gmail.com>
Cc: freebsd-gecko@freebsd.org,
 freebsd-current Current <freebsd-current@freebsd.org>
Subject: Re: Mozilla firefox freezes/zombie on FreeBSD current
Message-ID: <20161227153121.GB37153@zxy.spb.ru>
References: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
User-Agent: Mutt/1.5.24 (2015-08-30)
X-SA-Exim-Connect-IP: <locally generated>
X-SA-Exim-Mail-From: slw@zxy.spb.ru
X-SA-Exim-Scanned: No (on zxy.spb.ru); SAEximRunCond expanded to false
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 15:31:31 -0000

On Mon, Dec 26, 2016 at 10:29:33PM +0300, Subbsd wrote:

> Hi,
> 
> On recent FreeBSD version (tested on two host: one from
> svn://svn.freebsd.org/base/head ( r310507 now) and second from
> https://github.com/FreeBSDDesktop/freebsd-base-graphics.git /
> drm-next-4.7 ) and latest firefox ( firefox-50.1.0_4,1 ) I often get
> into a situation where firefox is hands.

What about downgrade to ff-48?

From owner-freebsd-current@freebsd.org  Tue Dec 27 15:34:00 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9E613C928EA
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Tue, 27 Dec 2016 15:34:00 +0000 (UTC)
 (envelope-from timp87@gmail.com)
Received: from mail-oi0-x236.google.com (mail-oi0-x236.google.com
 [IPv6:2607:f8b0:4003:c06::236])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 624111FF1
 for <freebsd-current@freebsd.org>; Tue, 27 Dec 2016 15:34:00 +0000 (UTC)
 (envelope-from timp87@gmail.com)
Received: by mail-oi0-x236.google.com with SMTP id 128so153498248oig.0
 for <freebsd-current@freebsd.org>; Tue, 27 Dec 2016 07:34:00 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:in-reply-to:references:from:date:message-id:subject:to
 :cc; bh=goV+Yyjz20jIi46pPMras+vp/xLVwOe3YEgMjkM3DUM=;
 b=iBDHWf0rJ5S6S19y7fY4bbbRdyOsace+BnjDCNMnrwU1Z5XObhXQMu3XhaKQNSL4vs
 s9T8GXew7SH2avS2craNGRrYXLCaE/Uz5O8ljkMQYQRUASY+fb2gZgpkIHDD8SfCMi+v
 WIhNug4baUTbTTc0ahmnh6cNFO4HbK/mIYLMqDbCdxE4nijm0aQT5CAdNthTJ4bBy9AB
 mSThlUClQpcza1b49Q8EvC1ycrDMEmnTTCGc2O6si21MY7rQi2hdO0cdQ9Ho4u8/sWbt
 n9g92gfgLaaUDGmjB0+U22cQDAwxIUHHydom1s8/2jKg3FAEluEQJyjBYizB4yfjVVpt
 HAPg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:in-reply-to:references:from:date
 :message-id:subject:to:cc;
 bh=goV+Yyjz20jIi46pPMras+vp/xLVwOe3YEgMjkM3DUM=;
 b=S8/coLPGID/cykzksSBw9fLqat7FXfnaoGrCAJYkYJKq79om7LAMnOoPG0LZw70Jkv
 lVHMjIJctWZ6rq8Zycm0qyhc/WGqhfx+l8a4OSYCvn9vPINMjnOvq4JrxBJP08Ob8rY6
 Btq7j/LastiyaTvZBlct+ejUfr7PBDZba0xRp+l/v90lU1+ouclyS0g9yy/5PfPzfFiU
 T2V544xBHYW5Wk1e1umoTZXagWW1Hn+qHTAvUuNme+nZg1YlVh/x+IG4zCSA/LmqLtDa
 cTZjx8nsPhSI6CNTADUL9zszEd0b1BB90WAkeXf9RndhbEjuidF+RJfMdejP5gInnXHV
 DIFA==
X-Gm-Message-State: AIkVDXLR6t+yucCfhPYUzdL0d2WPqsFbNvKQ2uSc67RaSt7Q6sDfvHh86KKmr33VK+oPRJr5T2vmV6gGnwBirg==
X-Received: by 10.202.188.196 with SMTP id m187mr15657842oif.210.1482852839740; 
 Tue, 27 Dec 2016 07:33:59 -0800 (PST)
MIME-Version: 1.0
Received: by 10.157.41.219 with HTTP; Tue, 27 Dec 2016 07:33:59 -0800 (PST)
Received: by 10.157.41.219 with HTTP; Tue, 27 Dec 2016 07:33:59 -0800 (PST)
In-Reply-To: <20160421095406.622a57d4@mwoffice.virtualtec.office>
References: <CAAoTqftw--ks3BDZ0iCfQ25fb+YGrr9VknjVSbUQ1kFSLGdX-A@mail.gmail.com>
 <FFE424A0-7859-4FD7-A39C-605346E7D711@ultra-secure.de>
 <CAAoTqfutC5QeK3CFsoOSMUxe6nrX1Xc_rWTqVCXBdQD-+=XE2g@mail.gmail.com>
 <20160421095406.622a57d4@mwoffice.virtualtec.office>
From: Pavel Timofeev <timp87@gmail.com>
Date: Tue, 27 Dec 2016 18:33:59 +0300
Message-ID: <CAAoTqftmmcsSxY22g7a7LH7fxexnpSz4D_eKr+Ppc1KKcpPJDg@mail.gmail.com>
Subject: Re: OCZ ssdpx-1rvd0120 REVODRIVE support
To: Markus Wild <fbsd-lists@dudes.ch>
Cc: freebsd-current@freebsd.org
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 15:34:00 -0000

Just to let you know, eventually, after 11.0 was released, I was able to
install UFS-based FreeBSD 11 on RAID0. The only problem I had was the
loader was unable to boot from it. So I used small flash stick with bootfs
and /boot dir on it. It still works as my home workstation.

From owner-freebsd-current@freebsd.org  Tue Dec 27 22:25:05 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 770B2C94A74;
 Tue, 27 Dec 2016 22:25:05 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 6AE0F1EAB;
 Tue, 27 Dec 2016 22:25:05 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 8D793468;
 Tue, 27 Dec 2016 22:25:05 +0000 (UTC)
Date: Tue, 27 Dec 2016 22:25:03 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, jhb@FreeBSD.org, jenkins-admin@FreeBSD.org, 
 freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org
Message-ID: <1663711830.126.1482877505586.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4493 - Failure
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Tue, 27 Dec 2016 22:25:05 -0000

FreeBSD_HEAD_i386 - Build #4493 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/cha=
nges
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4493/cons=
ole

Change summaries:

310640 by mav:
Add support for revert to defaults (RTD) bit in MODE SELECT.

MFC after:=092 weeks

310639 by jhb:
Regen after r310638.

Differential Revision:=09https://reviews.freebsd.org/D8854

310638 by jhb:
Rename the 'flags' argument to getfsstat() to 'mode' and validate it.

This argument is not a bitmask of flags, but only accepts a single value.
Fail with EINVAL if an invalid value is passed to 'flag'.  Rename the
'flags' argument to getmntinfo(3) to 'mode' as well to match.

This is a followup to r308088.

Reviewed by:=09kib
MFC after:=091 month



The end of the build log:

[...truncated 168073 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_frontend.o -MTctl_frontend.o -mno=
-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf=
-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p=
rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D=
__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-=
option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empt=
y-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-erro=
r-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Di=
so9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_frontend.c -o ctl=
_frontend.o
--- all_subdir_crypto ---
--- des_setkey.o ---
ctfconvert -L VERSION -g des_setkey.o
--- all_subdir_cxgbe ---
=3D=3D=3D> cxgbe (all)
--- all_subdir_cxgbe/if_cxgbe ---
=3D=3D=3D> cxgbe/if_cxgbe (all)
--- machine ---
machine -> /usr/src/sys/i386/include
--- x86 ---
x86 -> /usr/src/sys/x86/include
--- opt_ddb.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ddb.h opt_ddb.h
--- opt_inet.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet.h opt_inet.h
--- opt_inet6.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_inet6.h opt_inet6.h
--- opt_ofed.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_ofed.h opt_ofed.h
--- opt_rss.h ---
ln -sf /usr/obj/usr/src/sys/GENERIC/opt_rss.h opt_rss.h
--- t4_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/cxgbe/t4_if.m -h
--- bus_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/bus_if.m -h
--- all_subdir_crypto ---
--- sha1.o ---
ctfconvert -L VERSION -g sha1.o
--- sha256c.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.sha256c.o -MTsha256c.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/crypto/../../crypto/sha2/sha256c.c -o sha256c.o
--- all_subdir_cxgbe ---
--- device_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/kern/device_if.m -h
--- pci_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_if.m -h
--- pci_iov_if.h ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/pci/pci_iov_if.m =
-h
--- t4_if.c ---
awk -f /usr/src/sys/tools/makeobjops.awk /usr/src/sys/dev/cxgbe/t4_if.m -c
--- t4_hw.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev=
/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/o=
pt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/src/sys/GENERI=
C  -MD  -MF.depend.t4_hw.o -MTt4_hw.o -mno-mmx -mno-sse -msoft-float -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf__ =
-Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-=
error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-equ=
ality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-shift-n=
egative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /usr/src/sys/modul=
es/cxgbe/if_cxgbe/../../../dev/cxgbe/common/t4_hw.c -o t4_hw.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend.o
--- ctl_frontend_cam_sim.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_frontend_cam_sim.o -MTctl_fronten=
d_cam_sim.o -mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-p=
rotector -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-protot=
ypes -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno=
-pointer-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fd=
iagnostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare=
 -Wno-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-fu=
nction -Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -m=
no-avx  -std=3Diso9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_f=
rontend_cam_sim.c -o ctl_frontend_cam_sim.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_ael1002.o
--- cxgb_mv88e1xxx.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_mv88e1xxx.o -MTcxgb_mv88e1xxx.o -mno-m=
mx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2=
 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__=
printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-op=
tion -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-=
body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-=
pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso=
9899:1999 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/common/cxgb_m=
v88e1xxx.c -o cxgb_mv88e1xxx.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend_cam_sim.o
--- ctl_frontend_ioctl.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_frontend_ioctl.o -MTctl_frontend_=
ioctl.o -mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-prote=
ctor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes=
 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poi=
nter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn=
ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn=
o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functi=
on -Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-a=
vx  -std=3Diso9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_front=
end_ioctl.c -o ctl_frontend_ioctl.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_mv88e1xxx.o
--- cxgb_xgmac.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_xgmac.o -MTcxgb_xgmac.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/common/cxgb_xgmac.c -=
o cxgb_xgmac.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g sha256c.o
--- sha512c.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.sha512c.o -MTsha512c.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/crypto/../../crypto/sha2/sha512c.c -o sha512c.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend_ioctl.o
--- ctl_frontend_iscsi.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_frontend_iscsi.o -MTctl_frontend_=
iscsi.o -mno-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-prote=
ctor -gdwarf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes=
 -Wmissing-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-poi=
nter-sign -D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagn=
ostics-show-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wn=
o-error-empty-body -Wno-error-parentheses-equality -Wno-error-unused-functi=
on -Wno-error-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-a=
vx  -std=3Diso9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_front=
end_iscsi.c -o ctl_frontend_iscsi.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g sha512c.o
--- skein.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.skein.o -MTskein.o -mno-mmx -mno-sse =
-msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred=
undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpo=
inter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D_=
_freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-un=
known-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-er=
ror-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign=
 -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c=
 /usr/src/sys/modules/crypto/../../crypto/skein/skein.c -o skein.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_xgmac.o
--- cxgb_vsc7323.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_vsc7323.o -MTcxgb_vsc7323.o -mno-mmx -=
mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wa=
ll -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__prin=
tf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option=
 -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body=
 -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poin=
ter-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899=
:1999 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/common/cxgb_vsc73=
23.c -o cxgb_vsc7323.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g skein.o
--- skein_block.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.skein_block.o -MTskein_block.o -mno-m=
mx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2=
 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__=
printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-op=
tion -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-=
body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-=
pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso=
9899:1999 -c /usr/src/sys/modules/crypto/../../crypto/skein/skein_block.c -=
o skein_block.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_vsc7323.o
--- cxgb_t3_hw.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_t3_hw.o -MTcxgb_t3_hw.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/common/cxgb_t3_hw.c -=
o cxgb_t3_hw.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend_iscsi.o
--- ctl_ha.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_ha.o -MTctl_ha.o -mno-mmx -mno-ss=
e -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wr=
edundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -W=
pointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_ha.c -o ctl_ha.o
ctfconvert -L VERSION -g ctl_ha.o
--- ctl_scsi_all.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_scsi_all.o -MTctl_scsi_all.o -mno=
-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf=
-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-p=
rototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D=
__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-=
option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empt=
y-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-erro=
r-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Di=
so9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_scsi_all.c -o ctl=
_scsi_all.o
ctfconvert -L VERSION -g ctl_scsi_all.o
--- ctl_tpc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_tpc.o -MTctl_tpc.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_tpc.c -o ctl_tpc.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g skein_block.o
--- siphash.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.siphash.o -MTsiphash.o -mno-mmx -mno-=
sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -=
Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes =
-Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/crypto/../../crypto/siphash/siphash.c -o siphash.=
o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_tpc.o
--- ctl_tpc_local.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_tpc_local.o -MTctl_tpc_local.o -m=
no-mmx -mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwa=
rf-2 -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign =
-D__printf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-sho=
w-option -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-em=
pty-body -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-er=
ror-pointer-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=
=3Diso9899:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_tpc_local.c -=
o ctl_tpc_local.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g siphash.o
--- gmac.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.gmac.o -MTgmac.o -mno-mmx -mno-sse -m=
soft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredun=
dant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoin=
ter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__f=
reebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unkn=
own-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-erro=
r-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -=
Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /=
usr/src/sys/modules/crypto/../../opencrypto/gmac.c -o gmac.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_tpc_local.o
--- ctl_error.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_error.o -MTctl_error.o -mno-mmx -=
mno-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wa=
ll -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__prin=
tf__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option=
 -Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body=
 -Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-poin=
ter-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899=
:1999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_error.c -o ctl_error.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g gmac.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_hw.o
--- all_subdir_crypto ---
--- gfmult.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.gfmult.o -MTgfmult.o -mno-mmx -mno-ss=
e -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wr=
edundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -W=
pointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/crypto/../../opencrypto/gfmult.c -o gfmult.o
--- all_subdir_cxgbe ---
--- t4_iov.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev=
/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/o=
pt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/src/sys/GENERI=
C  -MD  -MF.depend.t4_iov.o -MTt4_iov.o -mno-mmx -mno-sse -msoft-float -ffr=
eestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wne=
sted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl=
ine -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf_=
_ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wn=
o-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-e=
quality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-shift=
-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /usr/src/sys/mod=
ules/cxgbe/if_cxgbe/../../../dev/cxgbe/t4_iov.c -o t4_iov.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g gfmult.o
--- crypto.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.crypto.o -MTcrypto.o -mno-mmx -mno-ss=
e -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wr=
edundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -W=
pointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/crypto/../../opencrypto/crypto.c -o crypto.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_error.o
--- ctl_util.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl_util.o -MTctl_util.o -mno-mmx -mn=
o-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall=
 -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototype=
s -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf=
__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -=
Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -=
Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointe=
r-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1=
999 -c /usr/src/sys/modules/ctl/../../cam/ctl/ctl_util.c -o ctl_util.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_iov.o
--- t4_l2t.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev=
/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/o=
pt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/src/sys/GENERI=
C  -MD  -MF.depend.t4_l2t.o -MTt4_l2t.o -mno-mmx -mno-sse -msoft-float -ffr=
eestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wne=
sted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl=
ine -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprintf_=
_ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wn=
o-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses-e=
quality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-shift=
-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /usr/src/sys/mod=
ules/cxgbe/if_cxgbe/../../../dev/cxgbe/t4_l2t.c -o t4_l2t.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_t3_hw.o
--- cxgb_main.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_main.o -MTcxgb_main.o -mno-mmx -mno-ss=
e -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wr=
edundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -W=
pointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=
=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wn=
o-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wn=
o-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointer-=
sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:199=
9 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/cxgb_main.c -o cxgb_m=
ain.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_util.o
--- scsi_ctl.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.scsi_ctl.o -MTscsi_ctl.o -mno-mmx -mn=
o-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall=
 -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototype=
s -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf=
__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -=
Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -=
Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointe=
r-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1=
999 -c /usr/src/sys/modules/ctl/../../cam/ctl/scsi_ctl.c -o scsi_ctl.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_l2t.o
--- t4_main.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev=
/cxgbe -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/o=
pt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/src/sys/GENERI=
C  -MD  -MF.depend.t4_main.o -MTt4_main.o -mno-mmx -mno-sse -msoft-float -f=
freestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -W=
nested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wi=
nline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__freebsd_kprint=
f__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -=
Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-parentheses=
-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wno-error-shi=
ft-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /usr/src/sys/m=
odules/cxgbe/if_cxgbe/../../../dev/cxgbe/t4_main.c -o t4_main.o
--- all_subdir_crypto ---
ctfconvert -L VERSION -g crypto.o
--- crypto.kld ---
ld -d -warn-common -r -d -o crypto.kld crypto.o cryptodev_if.o criov.o cryp=
tosoft.o xform.o cast.o cryptodeflate.o rmd160.o rijndael-alg-fst.o rijndae=
l-api.o rijndael-api-fst.o skipjack.o bf_enc.o bf_ecb.o bf_skey.o camellia.=
o camellia-api.o des_ecb.o des_enc.o des_setkey.o sha1.o sha256c.o sha512c.=
o skein.o skein_block.o siphash.o gmac.o gfmult.o
ctfmerge -L VERSION -g -o crypto.kld crypto.o cryptodev_if.o criov.o crypto=
soft.o xform.o cast.o cryptodeflate.o rmd160.o rijndael-alg-fst.o rijndael-=
api.o rijndael-api-fst.o skipjack.o bf_enc.o bf_ecb.o bf_skey.o camellia.o =
camellia-api.o des_ecb.o des_enc.o des_setkey.o sha1.o sha256c.o sha512c.o =
skein.o skein_block.o siphash.o gmac.o gfmult.o
:> export_syms
awk -f /usr/src/sys/conf/kmod_syms.awk crypto.kld  export_syms | xargs -J% =
objcopy % crypto.kld
--- crypto.ko.full ---
ld -Bshareable -d -warn-common -o crypto.ko.full crypto.kld
--- crypto.ko.debug ---
objcopy --only-keep-debug crypto.ko.full crypto.ko.debug
--- crypto.ko ---
objcopy --strip-debug --add-gnu-debuglink=3Dcrypto.ko.debug  crypto.ko.full=
 crypto.ko
--- all_subdir_ctl ---
--- ctl.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL=
 -DKLD_MODULE -nostdinc   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/us=
r/src/sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj=
/usr/src/sys/GENERIC  -MD  -MF.depend.ctl.o -MTctl.o -mno-mmx -mno-sse -mso=
ft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointe=
r-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf__=3D__fre=
ebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknow=
n-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -Wno-error-=
parentheses-equality -Wno-error-unused-function -Wno-error-pointer-sign -Wn=
o-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1999 -c /us=
r/src/sys/modules/ctl/../../cam/ctl/ctl.c -o ctl.o
--- scsi_ctl.o ---
ctfconvert -L VERSION -g scsi_ctl.o
--- all_subdir_cxgb ---
--- cxgb_aq100x.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -g -DDEFAULT_JUMBO  -fno-strict-aliasin=
g -Werror -D_KERNEL -DKLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxg=
b/../../../dev/cxgb -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/=
sys/GENERIC/opt_global.h -I. -I/usr/src/sys -fno-common -g -I/usr/obj/usr/s=
rc/sys/GENERIC  -MD  -MF.depend.cxgb_aq100x.o -MTcxgb_aq100x.o -mno-mmx -mn=
o-sse -msoft-float -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall=
 -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototype=
s -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -D__printf=
__=3D__freebsd_kprintf__ -Wmissing-include-dirs -fdiagnostics-show-option -=
Wno-unknown-pragmas -Wno-error-tautological-compare -Wno-error-empty-body -=
Wno-error-parentheses-equality -Wno-error-unused-function -Wno-error-pointe=
r-sign -Wno-error-shift-negative-value  -mno-aes -mno-avx  -std=3Diso9899:1=
999 -c /usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb/common/cxgb_aq100x.=
c -o cxgb_aq100x.o
--- all_subdir_ctl ---
--- ctl.o ---
/usr/src/sys/modules/ctl/../../cam/ctl/ctl.c:6175:23: error: use of undecla=
red identifier 'SMS_RTD'
                rtd =3D (cdb->byte2 & SMS_RTD) ? 1 : 0;
                                    ^
/usr/src/sys/modules/ctl/../../cam/ctl/ctl.c:6187:23: error: use of undecla=
red identifier 'SMS_RTD'
                rtd =3D (cdb->byte2 & SMS_RTD) ? 1 : 0;
                                    ^
2 errors generated.
*** [ctl.o] Error code 1

bmake[4]: stopped in /usr/src/sys/modules/ctl
1 error

bmake[4]: stopped in /usr/src/sys/modules/ctl
*** [all_subdir_ctl] Error code 2

bmake[3]: stopped in /usr/src/sys/modules
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_aq100x.o
--- cxgb_main.o ---
ctfconvert -L VERSION -g cxgb_main.o
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/sys/modules/cxgb/cxgb
*** [all_subdir_cxgb/cxgb] Error code 2

bmake[4]: stopped in /usr/src/sys/modules/cxgb
1 error

bmake[4]: stopped in /usr/src/sys/modules/cxgb
*** [all_subdir_cxgb] Error code 2

bmake[3]: stopped in /usr/src/sys/modules
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_main.o
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/sys/modules/cxgbe/if_cxgbe
*** [all_subdir_cxgbe/if_cxgbe] Error code 2

bmake[4]: stopped in /usr/src/sys/modules/cxgbe
1 error

bmake[4]: stopped in /usr/src/sys/modules/cxgbe
*** [all_subdir_cxgbe] Error code 2

bmake[3]: stopped in /usr/src/sys/modules
3 errors

bmake[3]: stopped in /usr/src/sys/modules
*** [modules-all] Error code 2

bmake[2]: stopped in /usr/obj/usr/src/sys/GENERIC
1 error

bmake[2]: stopped in /usr/obj/usr/src/sys/GENERIC
*** [buildkernel] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildkernel] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson5115118171063328246.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Wed Dec 28 00:33:00 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96194C94DF5;
 Wed, 28 Dec 2016 00:33:00 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 8929A1CEC;
 Wed, 28 Dec 2016 00:33:00 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id B3B9A46B;
 Wed, 28 Dec 2016 00:33:00 +0000 (UTC)
Date: Wed, 28 Dec 2016 00:32:58 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, tuexen@FreeBSD.org, gonzo@FreeBSD.org, 
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <499028922.128.1482885180742.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <1663711830.126.1482877505586.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <1663711830.126.1482877505586.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4494 - Fixed
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: SUCCESS
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 00:33:00 -0000

FreeBSD_HEAD_i386 - Build #4494 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4494/console

Change summaries:

310646 by mav:
Do not update "saved" mode page on every MODE SELECT.

We do not have non-volatile memory to really save those values, so we
neither report nor support this capability.  Also saved mode pages are
not replicated between HA peers now.

MFC after:	2 weeks

310645 by gonzo:
[intelspi] Add SPI driver for Intel BayTrail SoC

Add SPI mode (PIO-only) support for Intel Synchronous Serial Port that
can be found in several Intel's products starting from PXA family.
Most of implementations have slight differences in behavior and in
addresses for registers subset. This driver covers only BayTrail SoC
implementation for it's the only hardware I have to test it on.

Driver attaches to ACPI bus only and does not have PCI or FDT support
for now due to lack of hardware to test it on.

"intelspi" is the best name I've managed to come up with. Linux driver
name (spi-pxa2xx) does not make sense because current implementation
does not support actual PXA2xx SoCs. And as far as I know there is no
codename assigned to Intel SSP chip.

Reviewed by:	br, manu
MFC after:	1 month
Differential Revision:	https://reviews.freebsd.org/D8896

310644 by mav:
Fix/synchronize field types in struct ctl_modepage_header.

MFC after:	2 weeks

310643 by mav:
Missed piece of r310640.

MFC after:	2 weeks

310642 by tuexen:
Consistent handling of errors reported from the lower layer.

MFC after:	3 days


From owner-freebsd-current@freebsd.org  Wed Dec 28 02:40:02 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 375B4C91FC8
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Wed, 28 Dec 2016 02:40:02 +0000 (UTC)
 (envelope-from www-data@aaa-22.midiablogniener.com.br)
Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3])
 by mx1.freebsd.org (Postfix) with ESMTP id 2594A116A
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 02:40:02 +0000 (UTC)
 (envelope-from www-data@aaa-22.midiablogniener.com.br)
Received: by mailman.ysv.freebsd.org (Postfix)
 id 2236CC91FC7; Wed, 28 Dec 2016 02:40:02 +0000 (UTC)
Delivered-To: current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 20042C91FC6
 for <current@mailman.ysv.freebsd.org>; Wed, 28 Dec 2016 02:40:02 +0000 (UTC)
 (envelope-from www-data@aaa-22.midiablogniener.com.br)
Received: from aaa-22.midiablogniener.com.br (unknown
 [IPv6:2607:f298:5:101d:f816:3eff:fed9:e666])
 by mx1.freebsd.org (Postfix) with ESMTP id CEAC61169
 for <current@freebsd.org>; Wed, 28 Dec 2016 02:40:00 +0000 (UTC)
 (envelope-from www-data@aaa-22.midiablogniener.com.br)
Received: by aaa-22.midiablogniener.com.br (Postfix, from userid 33)
 id E4E1C24D9B; Wed, 28 Dec 2016 02:39:53 +0000 (UTC)
To: current@freebsd.org
Subject: # Santander Brasil S.A - Smiles Gol - Comunicado de expiração 2016 (72567)
X-PHP-Originating-Script: 0:morto.php
X-Mailer: Microsoft Office Outlook, Build 17.551210
From: current@freebsd.org
Reply-To: current@freebsd.org
X-Mailer: iGMail [www.ig.com.br]
X-Originating-Email: current@freebsd.org
X-Sender: current@freebsd.org
X-iGspam-global: Unsure,
 spamicity=0.570081 - pe=5.74e-01 - pf=0.574081 - pg=0.574081
Message-Id: <20161228023953.E4E1C24D9B@aaa-22.midiablogniener.com.br>
Date: Wed, 28 Dec 2016 02:39:53 +0000 (UTC)
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 02:40:02 -0000


From owner-freebsd-current@freebsd.org  Wed Dec 28 04:08:50 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 96BE0C90550;
 Wed, 28 Dec 2016 04:08:50 +0000 (UTC)
 (envelope-from ermal.luci@gmail.com)
Received: from mail-it0-x244.google.com (mail-it0-x244.google.com
 [IPv6:2607:f8b0:4001:c0b::244])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 5DC981518;
 Wed, 28 Dec 2016 04:08:50 +0000 (UTC)
 (envelope-from ermal.luci@gmail.com)
Received: by mail-it0-x244.google.com with SMTP id c20so35003698itb.0;
 Tue, 27 Dec 2016 20:08:50 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:sender:in-reply-to:references:from:date:message-id
 :subject:to:cc;
 bh=OqOHKwcBNHPDMJ3SbL7pevobQzcZ62gu+Aifdqgb1XA=;
 b=OQtkKxhpr+35E06CRbLPsdP4Az6wxJ6I5hl9IHcjexqwTGWFndhihL3fk496hap0Ze
 fJ5xlD06DbL9jxvm9KodN7y1mc/CcRO0KXN017p/8A9QF+R90shohxdP/kjIHYFWoUdE
 9ZvId1uBmni82UtqbW7JcC9lEtP3OHT3T6i8Vt5C9cLpKIDkOScCHWHa5g+AEteqk1lY
 z0NV1DUx8uzcFZBDYH6K4Ocr86A8gztVMqUW6GKClaJLdmlhv8H3E3ACoa8CPVkJ+rjk
 85qMe9rRdGOl9ai1gC7BxY3oeGehslHLsvTEAO6S4mnyxg3ixw5jlEs+FCOj9oun8LY3
 XLyA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:sender:in-reply-to:references:from
 :date:message-id:subject:to:cc;
 bh=OqOHKwcBNHPDMJ3SbL7pevobQzcZ62gu+Aifdqgb1XA=;
 b=ufWwVGM97+BpNprZz3D6WQCKXV9nqxauD/3qIewGi4NhUQ9OD7j1a6HA1n0ZPjaYO7
 IXHIvfTZ22UxCy+gq1aV+Uks35RSCgZi/+iB2x40p3cMLoWzLJs5AIc2HDnjKnkR+vSZ
 XdixRbjzSxQrdNP2lzJ9zG31fK4e3SQc7JEXRJ+L2/2u2B4vORwuIHpQv0XydFL7MVbS
 L+0Dd9zI7++cgURfNEygT0dz2ilZhZUHlSakMMuMhLN21l3G3B0ookCr0gGrxGrStTtH
 KCcOZr+H9g2xiWA0c9F4+WJ4VCB9vwMn0b/nsGfn75PubbjkgpXtUUqP2NKhMLXx5OCz
 aqDQ==
X-Gm-Message-State: AIkVDXLrSdngn39PFNUlo2P/cvV+g4WUQpMXqHeIxnrv/+YG0vodZ6B4eZNFIE1wMR3bzHRwTdZjMqrhjW2ucQ==
X-Received: by 10.36.120.5 with SMTP id p5mr17859238itc.5.1482898129800; Tue,
 27 Dec 2016 20:08:49 -0800 (PST)
MIME-Version: 1.0
Sender: ermal.luci@gmail.com
Received: by 10.107.55.11 with HTTP; Tue, 27 Dec 2016 20:08:49 -0800 (PST)
In-Reply-To: <d515d28d-96e5-0032-9af2-58e857024a3a@yandex.ru>
References: <2bd32791-944f-2417-41e9-e0fe1c705502@FreeBSD.org>
 <5889f1f5-5585-95d4-beac-285dbc722b4e@norma.perm.ru>
 <CAKAfi7x7dYyVNs6oEd+qVV7sKa60RT29rVGt=CEi_s+HDsLR0g@mail.gmail.com>
 <d515d28d-96e5-0032-9af2-58e857024a3a@yandex.ru>
From: =?UTF-8?Q?Ermal_Lu=C3=A7i?= <eri@freebsd.org>
Date: Tue, 27 Dec 2016 20:08:49 -0800
X-Google-Sender-Auth: BtW4BRVxOuUKgkwmWWSIz5HL3Kc
Message-ID: <CAPBZQG3LFXSWXbKG6UagZJ55i1c8CUqbpACKWtjxOQjoYpjGSw@mail.gmail.com>
Subject: Re: [RFC/RFT] projects/ipsec
To: "Andrey V. Elsukov" <bu7cher@yandex.ru>
Cc: Jim Thompson <jim@netgate.com>, "Eugene M. Zheganin" <emz@norma.perm.ru>, 
 freebsd-net <freebsd-net@freebsd.org>,
 FreeBSD Current <freebsd-current@freebsd.org>
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 04:08:50 -0000

On Tue, Dec 27, 2016 at 6:10 AM, Andrey V. Elsukov <bu7cher@yandex.ru>
wrote:

> On 27.12.2016 16:15, Jim Thompson wrote:
>
>> In it's initial state if_ipsec allows to use only one set of
>>> encryption parameters (because only one sainfo anonyumous is
>>> possible), so at this time it doesn't allow to create multiple
>>> tunnels with VPN hubs that use different cipers and/or transform
>>> sets, but as far as I understand this is subject to change and
>>> Andrey is already working on a support of this feature from
>>> ipsec-tools IKE daemon.
>>>
>>
>> pfSense (which you mention below) is using strongswan, so when
>> Andrey is finished with ipsec-tools, we will need to review his
>> changes and see what we can do for strongswan.
>>
>> I'm looking forward to the mutliple-tunnel support, which is
>> required for pfSense.
>>
>
> There are no such limits. You can create multiple VTI interfaces.
> The problem is in with racoon configuration restrictions. It looks like
> ipsec-tools project is dead, I didn't received any replies from
> ipsec-tools-devel mailing list.
>
> I'm not aware how to configure strongswan, so if someone will not try to
> do this, I don't know when I will do this.
>
>
Strongswan already supports this.
Just the FreeBSD code for it is not there due to the missing feature until
now.



> --
> WBR, Andrey V. Elsukov
> _______________________________________________
> freebsd-net@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-net
> To unsubscribe, send any mail to "freebsd-net-unsubscribe@freebsd.org"
>
> --
> Ermal
>

From owner-freebsd-current@freebsd.org  Wed Dec 28 08:42:49 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id EA8C5C93EC3;
 Wed, 28 Dec 2016 08:42:49 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id D853C1FAB;
 Wed, 28 Dec 2016 08:42:49 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 05C4747B;
 Wed, 28 Dec 2016 08:42:50 +0000 (UTC)
Date: Wed, 28 Dec 2016 08:42:48 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: ngie@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <7052634.132.1482914570030.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4498 - Failure
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 08:42:50 -0000

FreeBSD_HEAD_i386 - Build #4498 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4498/console

Change summaries:

310669 by ngie:
style(9): clean up whitespace

MFC after:	3 days

310668 by ngie:
style(9) fixes: clean up leading whitespace

MFC after:	3 days

310667 by ngie:
style(9) fixes: clean up leading whitespace

MFC after:	3 days

310666 by ngie:
style(9) fixes

- Clean up trailing whitespace
- Fix variable type alignment in storage_OS_get_swap(..)

MFC after:	3 days

310665 by ngie:
Only build/install usr.sbin/bsnmpd/modules/snmp_hast if MK_HAST != no

MFC after:	1 week

310664 by ngie:
Only build/install usr.sbin/bsnmpd/modules/snmp_wlan if MK_WIRELESS != no

MFC after:	1 week



The end of the build log:

[...truncated 131742 lines...]
--- all_subdir_usr.sbin ---
--- all_subdir_usr.sbin/bsdconfig/networking ---
===> usr.sbin/bsdconfig/networking (all)
--- all_subdir_usr.sbin/bsdconfig/networking/include ---
===> usr.sbin/bsdconfig/networking/include (all)
--- all_subdir_usr.sbin/bsdconfig/networking/share ---
===> usr.sbin/bsdconfig/networking/share (all)
--- all_subdir_usr.sbin/bsdconfig/packages ---
===> usr.sbin/bsdconfig/packages (all)
--- all_subdir_usr.sbin/bsdconfig/packages/include ---
===> usr.sbin/bsdconfig/packages/include (all)
--- all_subdir_usr.sbin/bsdconfig/password ---
===> usr.sbin/bsdconfig/password (all)
--- all_subdir_usr.sbin/bsdconfig/password/include ---
===> usr.sbin/bsdconfig/password/include (all)
--- all_subdir_usr.sbin/bsdconfig/password/share ---
===> usr.sbin/bsdconfig/password/share (all)
--- all_subdir_usr.sbin/bsdconfig/security ---
===> usr.sbin/bsdconfig/security (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- snmp_bridge.so.6.full ---
building shared library snmp_bridge.so.6
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel  -o snmp_bridge.so.6.full -Wl,-soname,snmp_bridge.so.6  `NM='nm' NMFLAGS='' lorder bridge_snmp.pico bridge_if.pico bridge_port.pico bridge_addrs.pico bridge_pf.pico bridge_sys.pico bridge_tree.pico |  tsort -q` 
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/security/include ---
===> usr.sbin/bsdconfig/security/include (all)
--- all_subdir_usr.sbin/bsdconfig/share ---
===> usr.sbin/bsdconfig/share (all)
--- all_subdir_usr.sbin/bsdconfig/share/media ---
===> usr.sbin/bsdconfig/share/media (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- snmp_bridge.3.gz ---
sed -e 's%@MODPATH@%/usr/lib/%g'		 -e 's%@DEFPATH@%/usr/share/snmp/defs/%g'		 -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /usr/src/usr.sbin/bsnmpd/modules/snmp_bridge/snmp_bridge.3 | gzip -cn > snmp_bridge.3.gz
--- snmp_bridge.so.6.debug ---
objcopy --only-keep-debug snmp_bridge.so.6.full snmp_bridge.so.6.debug
--- snmp_bridge.so.6 ---
objcopy --strip-debug --add-gnu-debuglink=snmp_bridge.so.6.debug  snmp_bridge.so.6.full snmp_bridge.so.6
--- all_subdir_usr.sbin/bsnmpd/modules/snmp_hostres ---
===> usr.sbin/bsnmpd/modules/snmp_hostres (all)
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/share/packages ---
===> usr.sbin/bsdconfig/share/packages (all)
--- all_subdir_usr.sbin/bsdconfig/startup ---
===> usr.sbin/bsdconfig/startup (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_tree.c ---
cat /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def | gensnmptree -p hostres_
--- hostres_oid.h ---
cat /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_tree.def | gensnmptree -e host hrStorageOther hrStorageRam hrStorageVirtualMemory  hrStorageFixedDisk hrStorageRemovableDisk hrStorageFloppyDisk  hrStorageCompactDisc hrStorageRamDisk hrStorageFlashMemory  hrStorageNetworkDisk hrDeviceOther hrDeviceUnknown  hrDeviceProcessor hrDeviceNetwork hrDevicePrinter  hrDeviceDiskStorage hrDeviceVideo hrDeviceAudio  hrDeviceCoprocessor hrDeviceKeyboard hrDeviceModem  hrDeviceParallelPort hrDevicePointing  hrDeviceSerialPort hrDeviceTape hrDeviceClock  hrDeviceVolatileMemory hrDeviceNonVolatileMemory  hrFSOther hrFSUnknown hrFSBerkeleyFFS hrFSSys5FS hrFSFat hrFSHPFS hrFSHFS hrFSMFS hrFSNTFS hrFSVNode hrFSJournaled  hrFSiso9660 hrFSRockRidge hrFSNFS hrFSNetware hrFSAFS hrFSDFS  hrFSAppleshare hrFSRFS hrFSDGCFS hrFSBFS hrFSFAT32 hrFSLinuxExt2 > hostres_oid.h
--- .depend ---
echo snmp_hostres.so.6.full: /usr/obj/usr/src/tmp/usr/lib/libkvm.a /usr/obj/usr/src/tmp/usr/lib/libdevinfo.a /usr/obj/usr/src/tmp/usr/lib/libm.a /usr/obj/usr/src/tmp/usr/lib/libgeom.a /usr/obj/usr/src/tmp/usr/lib/libmemstat.a >> .depend
--- hostres_begemot.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_begemot.pico -MThostres_begemot.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_begemot.c -o hostres_begemot.pico
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/startup/include ---
===> usr.sbin/bsdconfig/startup/include (all)
--- all_subdir_usr.sbin/bsdconfig/startup/share ---
===> usr.sbin/bsdconfig/startup/share (all)
--- all_subdir_usr.sbin/bsdconfig/timezone ---
===> usr.sbin/bsdconfig/timezone (all)
--- all_subdir_usr.sbin/bsdconfig/timezone/include ---
===> usr.sbin/bsdconfig/timezone/include (all)
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_device_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_device_tbl.pico -MThostres_device_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_device_tbl.c -o hostres_device_tbl.pico
--- all_subdir_usr.sbin/bsdconfig ---
--- all_subdir_usr.sbin/bsdconfig/timezone/share ---
===> usr.sbin/bsdconfig/timezone/share (all)
--- all_subdir_usr.sbin/bsdconfig/ttys ---
===> usr.sbin/bsdconfig/ttys (all)
--- all_subdir_usr.sbin/bsdconfig/ttys/include ---
===> usr.sbin/bsdconfig/ttys/include (all)
--- all_subdir_usr.sbin/bsdconfig/usermgmt ---
===> usr.sbin/bsdconfig/usermgmt (all)
--- all_subdir_usr.sbin/bsdconfig/usermgmt/include ---
===> usr.sbin/bsdconfig/usermgmt/include (all)
--- all_subdir_usr.sbin/bsdconfig/usermgmt/share ---
===> usr.sbin/bsdconfig/usermgmt/share (all)
--- bsdconfig.8.gz ---
gzip -cn /usr/src/usr.sbin/bsdconfig/bsdconfig.8 > bsdconfig.8.gz
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_diskstorage_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_diskstorage_tbl.pico -MThostres_diskstorage_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_diskstorage_tbl.c -o hostres_diskstorage_tbl.pico
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/mkcsmapper ---
===> usr.bin/mkcsmapper (all)
--- lex.c ---
lex  -olex.c /usr/src/usr.bin/mkcsmapper/lex.l
--- yacc.c ---
yacc -d -o yacc.c /usr/src/usr.bin/mkcsmapper/yacc.y
--- .depend ---
echo mkcsmapper.full: /usr/obj/usr/src/tmp/usr/lib/libc.a  >> .depend
--- lex.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/usr.bin/mkcsmapper -I/usr/src/usr.bin/mkcsmapper/../mkcsmapper  -I/usr/src/usr.bin/mkcsmapper/../../lib/libc/iconv  -I/usr/src/usr.bin/mkcsmapper/../../lib/libiconv_modules/mapper_std -g -MD  -MF.depend.lex.o -MTlex.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c lex.c -o lex.o
--- all_subdir_usr.sbin ---
--- hostres_fs_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_fs_tbl.pico -MThostres_fs_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_fs_tbl.c -o hostres_fs_tbl.pico
--- hostres_network_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_network_tbl.pico -MThostres_network_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_network_tbl.c -o hostres_network_tbl.pico
--- all_subdir_usr.bin ---
--- yacc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/usr.bin/mkcsmapper -I/usr/src/usr.bin/mkcsmapper/../mkcsmapper  -I/usr/src/usr.bin/mkcsmapper/../../lib/libc/iconv  -I/usr/src/usr.bin/mkcsmapper/../../lib/libiconv_modules/mapper_std -g -MD  -MF.depend.yacc.o -MTyacc.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c yacc.c -o yacc.o
--- all_subdir_usr.sbin ---
--- hostres_partition_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_partition_tbl.pico -MThostres_partition_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_partition_tbl.c -o hostres_partition_tbl.pico
--- hostres_printer_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_printer_tbl.pico -MThostres_printer_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_printer_tbl.c -o hostres_printer_tbl.pico
--- all_subdir_usr.bin ---
--- mkcsmapper.full ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/src/usr.bin/mkcsmapper -I/usr/src/usr.bin/mkcsmapper/../mkcsmapper -I/usr/src/usr.bin/mkcsmapper/../../lib/libc/iconv -I/usr/src/usr.bin/mkcsmapper/../../lib/libiconv_modules/mapper_std -g -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments  -L/usr/src/usr.bin/mkcsmapper/../../lib/libc -o mkcsmapper.full lex.o yacc.o  
--- mkcsmapper.1.gz ---
gzip -cn /usr/src/usr.bin/mkcsmapper/mkcsmapper.1 > mkcsmapper.1.gz
--- mkcsmapper.debug ---
objcopy --only-keep-debug mkcsmapper.full mkcsmapper.debug
--- mkcsmapper ---
objcopy --strip-debug --add-gnu-debuglink=mkcsmapper.debug  mkcsmapper.full mkcsmapper
--- all_subdir_usr.sbin ---
--- hostres_processor_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_processor_tbl.pico -MThostres_processor_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_processor_tbl.c -o hostres_processor_tbl.pico
--- all_subdir_usr.sbin/efivar ---
===> usr.sbin/efivar (all)
--- .depend ---
echo efivar.full: /usr/obj/usr/src/tmp/usr/lib/libc.a /usr/obj/usr/src/tmp/usr/lib/libefivar.a >> .depend
--- efivar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -g -MD  -MF.depend.efivar.o -MTefivar.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/efivar/efivar.c -o efivar.o
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_scalars.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_scalars.pico -MThostres_scalars.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_scalars.c -o hostres_scalars.pico
--- all_subdir_usr.sbin/efivar ---
--- efivar.full ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe -g -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arguments  -o efivar.full efivar.o   -lefivar
--- efivar.8.gz ---
gzip -cn /usr/src/usr.sbin/efivar/efivar.8 > efivar.8.gz
--- efivar.debug ---
objcopy --only-keep-debug efivar.full efivar.debug
--- efivar ---
objcopy --strip-debug --add-gnu-debuglink=efivar.debug  efivar.full efivar
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/mkesdb ---
===> usr.bin/mkesdb (all)
--- lex.c ---
lex  -olex.c /usr/src/usr.bin/mkesdb/lex.l
--- all_subdir_usr.sbin ---
--- all_subdir_usr.sbin/bsnmpd ---
--- hostres_snmp.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_snmp.pico -MThostres_snmp.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_snmp.c -o hostres_snmp.pico
--- all_subdir_usr.bin ---
--- yacc.c ---
yacc -d -o yacc.c /usr/src/usr.bin/mkesdb/yacc.y
--- .depend ---
echo mkesdb.full: /usr/obj/usr/src/tmp/usr/lib/libc.a  >> .depend
--- lex.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/usr.bin/mkesdb -I/usr/src/usr.bin/mkesdb/../mkesdb  -I/usr/src/usr.bin/mkesdb/../../lib/libc/iconv   -g -MD  -MF.depend.lex.o -MTlex.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c lex.c -o lex.o
--- all_subdir_usr.sbin ---
--- hostres_storage_tbl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DNDEBUG -I/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/../../../lpr/common_source -I.   -MD  -MF.depend.hostres_storage_tbl.pico -MThostres_storage_tbl.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c -o hostres_storage_tbl.pico
/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c:379:22: error: use of undeclared identifier 'nswapdev'; did you mean 'swap_devs'?
        size_t len = sizeof(nswapdev);
                            ^~~~~~~~
                            swap_devs
/usr/src/usr.sbin/bsnmpd/modules/snmp_hostres/hostres_storage_tbl.c:115:25: note: 'swap_devs' declared here
static struct kvm_swap *swap_devs;
                        ^
1 error generated.
*** [hostres_storage_tbl.pico] Error code 1

bmake[6]: stopped in /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres
1 error

bmake[6]: stopped in /usr/src/usr.sbin/bsnmpd/modules/snmp_hostres
*** [all_subdir_usr.sbin/bsnmpd/modules/snmp_hostres] Error code 2

bmake[5]: stopped in /usr/src/usr.sbin/bsnmpd/modules
1 error

bmake[5]: stopped in /usr/src/usr.sbin/bsnmpd/modules
*** [all_subdir_usr.sbin/bsnmpd/modules] Error code 2

bmake[4]: stopped in /usr/src/usr.sbin/bsnmpd
1 error

bmake[4]: stopped in /usr/src/usr.sbin/bsnmpd
*** [all_subdir_usr.sbin/bsnmpd] Error code 2

bmake[3]: stopped in /usr/src/usr.sbin
1 error

bmake[3]: stopped in /usr/src/usr.sbin
*** [all_subdir_usr.sbin] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.bin ---
A failure has been detected in another branch of the parallel make

bmake[4]: stopped in /usr/src/usr.bin/mkesdb
*** [all_subdir_usr.bin/mkesdb] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
--- all_subdir_usr.bin/clang ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-tblgen
*** [all_subdir_usr.bin/clang/llvm-tblgen] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
1 error

bmake[4]: stopped in /usr/src/usr.bin/clang
*** [all_subdir_usr.bin/clang] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
2 errors

bmake[3]: stopped in /usr/src/usr.bin
*** [all_subdir_usr.bin] Error code 2

bmake[2]: stopped in /usr/src
2 errors

bmake[2]: stopped in /usr/src
*** [everything] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson1676696064242364253.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Wed Dec 28 10:39:20 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id F25E8C93F29;
 Wed, 28 Dec 2016 10:39:20 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id E551610B3;
 Wed, 28 Dec 2016 10:39:20 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 2F8D847F;
 Wed, 28 Dec 2016 10:39:21 +0000 (UTC)
Date: Wed, 28 Dec 2016 10:39:19 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mmel@FreeBSD.org, ngie@FreeBSD.org, jenkins-admin@FreeBSD.org, 
 freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org
Message-ID: <778892920.136.1482921561201.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <7052634.132.1482914570030.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <7052634.132.1482914570030.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4499 - Fixed
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: SUCCESS
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 10:39:21 -0000

FreeBSD_HEAD_i386 - Build #4499 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4499/console

Change summaries:

310675 by ngie:
Fix the build by moving the initializers for len/nswapdev down below the
declarations

MFC after:	3 days
Pointyhat to:	ngie

310674 by mmel:
Limit number of stripes supported by HDA codec to maximum number
announced by HDA controller.
Incorrectly implermented HDA codec may report support for more stripes
that HDA controller already have. Due to this, always limit number of
enabled stripes by global controller maximum.

Reviewed by:	mav
MFC after:	1 month
Differential Revision: https://reviews.freebsd.org/D8922


From owner-freebsd-current@freebsd.org  Wed Dec 28 21:02:40 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 46BE7C9513E
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Wed, 28 Dec 2016 21:02:40 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu
 [128.95.76.21])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "troutmask", Issuer "troutmask" (not verified))
 by mx1.freebsd.org (Postfix) with ESMTPS id 31C8A18D8
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 21:02:40 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (localhost [127.0.0.1])
 by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id uBSKsrBi096347
 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO)
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 12:54:53 -0800 (PST)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: (from sgk@localhost)
 by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id uBSKsrI0096346
 for freebsd-current@freebsd.org; Wed, 28 Dec 2016 12:54:53 -0800 (PST)
 (envelope-from sgk)
Date: Wed, 28 Dec 2016 12:54:53 -0800
From: Steve Kargl <sgk@troutmask.apl.washington.edu>
To: freebsd-current@freebsd.org
Subject: Re: unkillable firefox
Message-ID: <20161228205453.GA96328@troutmask.apl.washington.edu>
Reply-To: sgk@troutmask.apl.washington.edu
References: <20161220212920.GA69662@troutmask.apl.washington.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161220212920.GA69662@troutmask.apl.washington.edu>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Mailman-Approved-At: Wed, 28 Dec 2016 21:28:34 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 21:02:40 -0000

On Tue, Dec 20, 2016 at 01:29:20PM -0800, Steve Kargl wrote:
> Anyone know how to kill firefox?
> 
> last pid: 69652;  load averages:  0.49,  0.27,  0.24      up 1+02:40:06  13:16:02
> 126 processes: 1 running, 121 sleeping, 4 stopped
> CPU:  0.8% user,  0.0% nice,  0.0% system,  0.0% interrupt,  100% idle
> Mem: 2049M Active, 3739M Inact, 496M Laundry, 1365M Wired, 783M Buf, 239M Free
> Swap: 16G Total, 1772K Used, 16G Free
> 
>   PID USERNAME   PRI NICE SIZE    RES STATE   C   TIME    WCPU COMMAND
> 63902 kargl      40   0  3157M  2302M STOP    1  10:50   0.00% firefox{firefox}
> 63902 kargl     -16   0  3157M  2302M STOP    2   5:46   0.00% firefox{Composit
> 16874 kargl      40   0   740M   330M STOP    1   0:07   0.00% firefox{firefox}
> 16874 kargl     -16   0   740M   330M STOP    1   0:00   0.00% firefox{Composit
> 
> It seems that firefox is wedged in the thread firefox{Compositor},
> and slowly eating up memory.  This is on an amd64 system at
> r310125 and latest firefox from ports.  procstat suggests that its
> stuck in a vm sleep queue.
> 
> % procstat -k 63902
>   PID    TID COMM       TDNAME       KSTACK                       
> 63902 100504 firefox    -            mi_switch thread_suspend_switch
>                                      thread_single exit1 sigexit postsig ast
>                                      Xfast_syscall 
> 63902 101494 firefox    Compositor   mi_switch sleepq_wait _sleep 
>                                      vm_page_busy_sleep vm_page_sleep_if_busy
>                                      vm_fault_hold vm_fault trap_pfault trap
>                                      calltrap 
> 

Firefox is still fubar on freebsd-current.  Following kib's
instructions in the thread "Mozilla firefox freezes/zombie on FreeBSD
current" thread, here's the requested kernel info
  PID USERNAME    THR PRI NICE   SIZE    RES STATE   C   TIME    WCPU COMMAND
96285 kargl        64  40    0  1008M   678M select  0   2:01  18.10% firefox
96256 kargl         2  47    0   834M   304M STOP    0   0:04   0.00% firefox
96276 kargl         2  40    0   593M   307M STOP    1   0:03   0.00% firefox
96265 kargl         2  40    0   592M   307M STOP    1   0:03   0.00% firefox

% ps -H -o pid,lwp,mwchan,nwchan 96265
  PID    LWP MWCHAN NWCHAN
96265 100137 -      -
96265 100737 vmpfw  fffff80232a1a980

% kgdb /usr/obj/usr/src/sys/SPEW/kernel.full /dev/mem
(kgdb) p/x *(struct vm_page *)0xfffff80232a1a980
$1 = {plinks = {q = {tqe_next = 0xfffff8023467d980, 
      tqe_prev = 0xffffffff80d9e1b8}, s = {ss = {
        sle_next = 0xfffff8023467d980}, pv = 0xffffffff80d9e1b8}, memguard = {
      p = 0xfffff8023467d980, v = 0xffffffff80d9e1b8}}, listq = {
    tqe_next = 0xfffff80232a1a9e8, tqe_prev = 0xfffff8010c0614f8}, 
  object = 0xfffff8010c0614b0, pindex = 0x0, phys_addr = 0x59600000, md = {
    pv_list = {tqh_first = 0x0, tqh_last = 0xfffff80232a1a9b8}, 
    pv_gen = 0x31c, pat_mode = 0x6}, wire_count = 0x0, busy_lock = 0x6, 
  hold_count = 0x0, flags = 0x0, aflags = 0x2, oflags = 0x4, queue = 0xff, 
  psind = 0x1, segind = 0x3, order = 0xd, pool = 0x0, act_count = 0x0, 
  valid = 0xff, dirty = 0x0}
(kgdb) p/x *(struct vm_object *)0xfffff8010c0614b0
$2 = {lock = {lock_object = {lo_name = 0xffffffff80937e16, 
      lo_flags = 0x25630000, lo_data = 0x0, lo_witness = 0x0}, rw_lock = 0x1}, 
  object_list = {tqe_next = 0xfffff8010c0615a0, 
    tqe_prev = 0xfffff8010c0613e0}, shadow_head = {lh_first = 0x0}, 
  shadow_list = {le_next = 0x0, le_prev = 0x0}, memq = {
    tqh_first = 0xfffff80232a1a980, tqh_last = 0xfffff80234685e00}, rtree = {
    rt_root = 0xfffff80138b253f0}, size = 0x347, generation = 0x1, 
  ref_count = 0x3, shadow_count = 0x0, memattr = 0x6, type = 0x4, 
  flags = 0x1016, pg_color = 0x0, paging_in_progress = 0x1, 
  resident_page_count = 0x347, backing_object = 0x0, 
  backing_object_offset = 0x0, pager_object_list = {
    tqe_next = 0xfffff801d68e93c0, tqe_prev = 0xfffff801058c8cc8}, rvq = {
    lh_first = 0xfffff80230563d00}, handle = 0x0, un_pager = {vnp = {
      vnp_size = 0x0, writemappings = 0xfffff8010c061568}, devp = {
      devp_pglist = {tqh_first = 0x0, tqh_last = 0xfffff8010c061568}, 
      ops = 0xffffffff81367fa0, dev = 0xfffff80153397048}, sgp = {
      sgp_pglist = {tqh_first = 0x0, tqh_last = 0xfffff8010c061568}}, swp = {
      swp_tmpfs = 0x0, swp_bcount = 0xc061568}}, cred = 0x0, charge = 0x0, 
  umtx_data = 0x0}

-- 
Steve
20161221 https://www.youtube.com/watch?v=IbCHE-hONow

From owner-freebsd-current@freebsd.org  Wed Dec 28 22:28:43 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id DF3F9C95524
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Wed, 28 Dec 2016 22:28:43 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1])
 (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 7C0081EE0
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 22:28:43 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from tom.home (kib@localhost [127.0.0.1])
 by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id uBSMSbIj077305
 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO);
 Thu, 29 Dec 2016 00:28:37 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua uBSMSbIj077305
Received: (from kostik@localhost)
 by tom.home (8.15.2/8.15.2/Submit) id uBSMSa9Z077304;
 Thu, 29 Dec 2016 00:28:36 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com
 using -f
Date: Thu, 29 Dec 2016 00:28:36 +0200
From: Konstantin Belousov <kostikbel@gmail.com>
To: Steve Kargl <sgk@troutmask.apl.washington.edu>
Cc: freebsd-current@freebsd.org
Subject: Re: unkillable firefox
Message-ID: <20161228222836.GD1923@kib.kiev.ua>
References: <20161220212920.GA69662@troutmask.apl.washington.edu>
 <20161228205453.GA96328@troutmask.apl.washington.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161228205453.GA96328@troutmask.apl.washington.edu>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00,
 DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no
 autolearn_force=no version=3.4.1
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 22:28:44 -0000

On Wed, Dec 28, 2016 at 12:54:53PM -0800, Steve Kargl wrote:
> On Tue, Dec 20, 2016 at 01:29:20PM -0800, Steve Kargl wrote:
> > Anyone know how to kill firefox?
> > 
> > last pid: 69652;  load averages:  0.49,  0.27,  0.24      up 1+02:40:06  13:16:02
> > 126 processes: 1 running, 121 sleeping, 4 stopped
> > CPU:  0.8% user,  0.0% nice,  0.0% system,  0.0% interrupt,  100% idle
> > Mem: 2049M Active, 3739M Inact, 496M Laundry, 1365M Wired, 783M Buf, 239M Free
> > Swap: 16G Total, 1772K Used, 16G Free
> > 
> >   PID USERNAME   PRI NICE SIZE    RES STATE   C   TIME    WCPU COMMAND
> > 63902 kargl      40   0  3157M  2302M STOP    1  10:50   0.00% firefox{firefox}
> > 63902 kargl     -16   0  3157M  2302M STOP    2   5:46   0.00% firefox{Composit
> > 16874 kargl      40   0   740M   330M STOP    1   0:07   0.00% firefox{firefox}
> > 16874 kargl     -16   0   740M   330M STOP    1   0:00   0.00% firefox{Composit
> > 
> > It seems that firefox is wedged in the thread firefox{Compositor},
> > and slowly eating up memory.  This is on an amd64 system at
> > r310125 and latest firefox from ports.  procstat suggests that its
> > stuck in a vm sleep queue.
> > 
> > % procstat -k 63902
> >   PID    TID COMM       TDNAME       KSTACK                       
> > 63902 100504 firefox    -            mi_switch thread_suspend_switch
> >                                      thread_single exit1 sigexit postsig ast
> >                                      Xfast_syscall 
> > 63902 101494 firefox    Compositor   mi_switch sleepq_wait _sleep 
> >                                      vm_page_busy_sleep vm_page_sleep_if_busy
> >                                      vm_fault_hold vm_fault trap_pfault trap
> >                                      calltrap 
> > 
> 
> Firefox is still fubar on freebsd-current.  Following kib's
> instructions in the thread "Mozilla firefox freezes/zombie on FreeBSD
> current" thread, here's the requested kernel info
>   PID USERNAME    THR PRI NICE   SIZE    RES STATE   C   TIME    WCPU COMMAND
> 96285 kargl        64  40    0  1008M   678M select  0   2:01  18.10% firefox
> 96256 kargl         2  47    0   834M   304M STOP    0   0:04   0.00% firefox
> 96276 kargl         2  40    0   593M   307M STOP    1   0:03   0.00% firefox
> 96265 kargl         2  40    0   592M   307M STOP    1   0:03   0.00% firefox
> 
> % ps -H -o pid,lwp,mwchan,nwchan 96265
>   PID    LWP MWCHAN NWCHAN
> 96265 100137 -      -
> 96265 100737 vmpfw  fffff80232a1a980
> 
> % kgdb /usr/obj/usr/src/sys/SPEW/kernel.full /dev/mem
> (kgdb) p/x *(struct vm_page *)0xfffff80232a1a980
> $1 = {plinks = {q = {tqe_next = 0xfffff8023467d980, 
>       tqe_prev = 0xffffffff80d9e1b8}, s = {ss = {
>         sle_next = 0xfffff8023467d980}, pv = 0xffffffff80d9e1b8}, memguard = {
>       p = 0xfffff8023467d980, v = 0xffffffff80d9e1b8}}, listq = {
>     tqe_next = 0xfffff80232a1a9e8, tqe_prev = 0xfffff8010c0614f8}, 
>   object = 0xfffff8010c0614b0, pindex = 0x0, phys_addr = 0x59600000, md = {
>     pv_list = {tqh_first = 0x0, tqh_last = 0xfffff80232a1a9b8}, 
>     pv_gen = 0x31c, pat_mode = 0x6}, wire_count = 0x0, busy_lock = 0x6, 
>   hold_count = 0x0, flags = 0x0, aflags = 0x2, oflags = 0x4, queue = 0xff, 
>   psind = 0x1, segind = 0x3, order = 0xd, pool = 0x0, act_count = 0x0, 
>   valid = 0xff, dirty = 0x0}
> (kgdb) p/x *(struct vm_object *)0xfffff8010c0614b0
> $2 = {lock = {lock_object = {lo_name = 0xffffffff80937e16, 
>       lo_flags = 0x25630000, lo_data = 0x0, lo_witness = 0x0}, rw_lock = 0x1}, 
>   object_list = {tqe_next = 0xfffff8010c0615a0, 
>     tqe_prev = 0xfffff8010c0613e0}, shadow_head = {lh_first = 0x0}, 
>   shadow_list = {le_next = 0x0, le_prev = 0x0}, memq = {
>     tqh_first = 0xfffff80232a1a980, tqh_last = 0xfffff80234685e00}, rtree = {
>     rt_root = 0xfffff80138b253f0}, size = 0x347, generation = 0x1, 
>   ref_count = 0x3, shadow_count = 0x0, memattr = 0x6, type = 0x4, 
>   flags = 0x1016, pg_color = 0x0, paging_in_progress = 0x1, 
>   resident_page_count = 0x347, backing_object = 0x0, 
>   backing_object_offset = 0x0, pager_object_list = {
>     tqe_next = 0xfffff801d68e93c0, tqe_prev = 0xfffff801058c8cc8}, rvq = {
>     lh_first = 0xfffff80230563d00}, handle = 0x0, un_pager = {vnp = {
>       vnp_size = 0x0, writemappings = 0xfffff8010c061568}, devp = {
>       devp_pglist = {tqh_first = 0x0, tqh_last = 0xfffff8010c061568}, 
>       ops = 0xffffffff81367fa0, dev = 0xfffff80153397048}, sgp = {
>       sgp_pglist = {tqh_first = 0x0, tqh_last = 0xfffff8010c061568}}, swp = {
>       swp_tmpfs = 0x0, swp_bcount = 0xc061568}}, cred = 0x0, charge = 0x0, 
>   umtx_data = 0x0}

Do you have kern.ipc.shm_use_phys set to 1 ?

Try the following patch, please.

diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index e8fb5d00408..98bd7bae3db 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -304,13 +304,48 @@ vm_fault_restore_map_lock(struct faultstate *fs)
 	fs->lookup_still_valid = true;
 }
 
+static void
+vm_fault_populate_check_page(vm_page_t m, vm_object_t object, vm_pindex_t pidx)
+{
+
+	/*
+	 * Check each page to ensure that the driver is
+	 * obeying the interface: the page must be installed
+	 * in the object, fully valid, and exclusively busied.
+	 */
+	MPASS(m != NULL);
+	MPASS(vm_page_xbusied(m));
+	MPASS(m->valid == VM_PAGE_BITS_ALL);
+	MPASS(m->object == object);
+	MPASS(m->pindex == pidx);
+}
+
+static void
+vm_fault_populate_cleanup(vm_object_t object, vm_pindex_t first,
+    vm_pindex_t last)
+{
+	vm_page_t m;
+	vm_pindex_t pidx;
+
+	VM_OBJECT_ASSERT_WLOCKED(object);
+	if (first > last) /* micro-op: avoid page lookup */
+		return;
+	for (pidx = first, m = vm_page_lookup(object, pidx);
+	    pidx <= last; pidx++, m = vm_page_next(m)) {
+		vm_fault_populate_check_page(m, object, pidx);
+		vm_page_lock(m);
+		vm_page_activate(m);
+		vm_page_unlock(m);
+		vm_page_xunbusy(m);
+	}
+}
 
 static int
 vm_fault_populate(struct faultstate *fs, vm_offset_t vaddr, vm_prot_t prot,
     int fault_type, int fault_flags, boolean_t wired, vm_page_t *m_hold)
 {
 	vm_page_t m;
-	vm_pindex_t f_first, f_last, pidx;
+	vm_pindex_t f_first, f_last, f1_first, f1_last, pidx;
 	int rv;
 
 	MPASS(fs->object == fs->first_object);
@@ -357,28 +392,21 @@ vm_fault_populate(struct faultstate *fs, vm_offset_t vaddr, vm_prot_t prot,
 	MPASS(f_last < fs->first_object->size);
 
 	vm_fault_restore_map_lock(fs);
-	if (fs->map->timestamp != fs->map_generation)
+	if (fs->map->timestamp != fs->map_generation) {
+		vm_fault_populate_cleanup(fs->first_object, f_first, f_last);
 		return (KERN_RESOURCE_SHORTAGE); /* RetryFault */
+	}
 
 	/* Clip pager response to fit into the vm_map_entry. */
-	f_first = MAX(OFF_TO_IDX(fs->entry->offset), f_first);
-	f_last = MIN(OFF_TO_IDX(fs->entry->end - fs->entry->start +
+	f1_first = MAX(OFF_TO_IDX(fs->entry->offset), f_first);
+	vm_fault_populate_cleanup(fs->first_object, f_first, f1_first - 1);
+	f1_last = MIN(OFF_TO_IDX(fs->entry->end - fs->entry->start +
 	    fs->entry->offset), f_last);
+	vm_fault_populate_cleanup(fs->first_object, f1_last + 1, f_last);
 
-	pidx = f_first;
-	for (m = vm_page_lookup(fs->first_object, pidx); pidx <= f_last;
-	    pidx++, m = vm_page_next(m)) {
-		/*
-		 * Check each page to ensure that the driver is
-		 * obeying the interface: the page must be installed
-		 * in the object, fully valid, and exclusively busied.
-		 */
-		MPASS(m != NULL);
-		MPASS(vm_page_xbusied(m));
-		MPASS(m->valid == VM_PAGE_BITS_ALL);
-		MPASS(m->object == fs->first_object);
-		MPASS(m->pindex == pidx);
-
+	for (pidx = f1_first, m = vm_page_lookup(fs->first_object, pidx);
+	    pidx <= f1_last; pidx++, m = vm_page_next(m)) {
+		vm_fault_populate_check_page(m, fs->first_object, pidx);
 		vm_fault_dirty(fs->entry, m, prot, fault_type, fault_flags,
 		    true);
 		VM_OBJECT_WUNLOCK(fs->first_object);

From owner-freebsd-current@freebsd.org  Wed Dec 28 23:24:40 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7E30EC95331
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Wed, 28 Dec 2016 23:24:40 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu
 [128.95.76.21])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "troutmask", Issuer "troutmask" (not verified))
 by mx1.freebsd.org (Postfix) with ESMTPS id 66E651F52
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 23:24:40 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (localhost [127.0.0.1])
 by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id uBSNOd4V001100
 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO);
 Wed, 28 Dec 2016 15:24:39 -0800 (PST)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: (from sgk@localhost)
 by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id uBSNOdo7001099;
 Wed, 28 Dec 2016 15:24:39 -0800 (PST) (envelope-from sgk)
Date: Wed, 28 Dec 2016 15:24:39 -0800
From: Steve Kargl <sgk@troutmask.apl.washington.edu>
To: Konstantin Belousov <kostikbel@gmail.com>
Cc: freebsd-current@freebsd.org
Subject: Re: unkillable firefox
Message-ID: <20161228232439.GA1031@troutmask.apl.washington.edu>
Reply-To: sgk@troutmask.apl.washington.edu
References: <20161220212920.GA69662@troutmask.apl.washington.edu>
 <20161228205453.GA96328@troutmask.apl.washington.edu>
 <20161228222836.GD1923@kib.kiev.ua>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161228222836.GD1923@kib.kiev.ua>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Mailman-Approved-At: Wed, 28 Dec 2016 23:39:43 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 23:24:40 -0000

On Thu, Dec 29, 2016 at 12:28:36AM +0200, Konstantin Belousov wrote:
> On Wed, Dec 28, 2016 at 12:54:53PM -0800, Steve Kargl wrote:
> > 
> > Firefox is still fubar on freebsd-current.  Following kib's
> > instructions in the thread "Mozilla firefox freezes/zombie on FreeBSD
> > current" thread, here's the requested kernel info
> >   PID USERNAME    THR PRI NICE   SIZE    RES STATE   C   TIME    WCPU COMMAND
> > 96285 kargl        64  40    0  1008M   678M select  0   2:01  18.10% firefox
> > 96256 kargl         2  47    0   834M   304M STOP    0   0:04   0.00% firefox
> 
> Do you have kern.ipc.shm_use_phys set to 1 ?

Yes, I do have this sysctl set to 1.

> Try the following patch, please.
> 

Patch results in a panic when I start X server.

Fatal trap 12: page fault while in kernel mode
cpuid = 7; apic id = 17
fault virtual address   = 0x30
fault code              = supervisor read data, page not present
instruction pointer     = 0x20:0xffffffff807d3999
stack pointer           = 0x0:0xfffffe0238c22720
frame pointer           = 0x0:0xfffffe0238c22750
code segment            = base 0x0, limit 0xfffff, type 0x1b
                        = DPL 0, pres 1, long 1, def32 0, gran 1
processor eflags        = interrupt enabled, resume, IOPL = 0
current process         = 790 (fvwm)
trap number             = 12
panic: page fault
cpuid = 7
KDB: stack backtrace:
db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe0238c223b0
vpanic() at vpanic+0x186/frame 0xfffffe0238c22430
panic() at panic+0x43/frame 0xfffffe0238c22490
trap_fatal() at trap_fatal+0x322/frame 0xfffffe0238c224e0
trap_pfault() at trap_pfault+0x1bc/frame 0xfffffe0238c22540
trap() at trap+0x253/frame 0xfffffe0238c22650
calltrap() at calltrap+0x8/frame 0xfffffe0238c22650
--- trap 0xc, rip = 0xffffffff807d3999, rsp = 0xfffffe0238c22720, rbp = 0xfffffe0238c22750 ---
vm_fault_populate_cleanup() at vm_fault_populate_cleanup+0x39/frame 0xfffffe0238c22750
vm_fault_hold() at vm_fault_hold+0x1a65/frame 0xfffffe0238c22880
vm_fault() at vm_fault+0x78/frame 0xfffffe0238c228c0
trap_pfault() at trap_pfault+0xf6/frame 0xfffffe0238c22920
trap() at trap+0x2ed/frame 0xfffffe0238c22a30
calltrap() at calltrap+0x8/frame 0xfffffe0238c22a30

(kgdb) bt
#0  doadump (textdump=1) at pcpu.h:222
#1  0xffffffff80590002 in kern_reboot (howto=<value optimized out>)
    at /usr/src/sys/kern/kern_shutdown.c:386
#2  0xffffffff805904c0 in vpanic (fmt=<value optimized out>, 
    ap=<value optimized out>) at /usr/src/sys/kern/kern_shutdown.c:779
#3  0xffffffff805902f3 in panic (fmt=<value optimized out>)
    at /usr/src/sys/kern/kern_shutdown.c:710
#4  0xffffffff808151d2 in trap_fatal (frame=0xfffffe0238c22660, eva=48)
    at /usr/src/sys/amd64/amd64/trap.c:801
#5  0xffffffff8081539c in trap_pfault (frame=0xfffffe0238c22660, usermode=0)
    at /usr/src/sys/amd64/amd64/trap.c:658
#6  0xffffffff80814ab3 in trap (frame=0xfffffe0238c22660)
    at /usr/src/sys/amd64/amd64/trap.c:421
#7  0xffffffff807fb023 in calltrap ()
    at /usr/src/sys/amd64/amd64/exception.S:236
#8  0xffffffff807d3999 in vm_fault_populate_cleanup (
    object=<value optimized out>, first=<value optimized out>, 
    last=<value optimized out>) at pcpu.h:222
#9  0xffffffff807d2105 in vm_fault_hold (map=0xfffff8000999f000, 
    vaddr=8597401600, fault_type=<value optimized out>, fault_flags=0, 
    m_hold=0x0) at /usr/src/sys/vm/vm_fault.c:402
#10 0xffffffff807d0658 in vm_fault (map=0xfffff8000999f000, 
    vaddr=<value optimized out>, fault_type=1 '\001', 
    fault_flags=<value optimized out>) at /usr/src/sys/vm/vm_fault.c:464
#11 0xffffffff808152d6 in trap_pfault (frame=0xfffffe0238c22a40, usermode=1)
    at /usr/src/sys/amd64/amd64/trap.c:708
#12 0xffffffff80814b4d in trap (frame=0xfffffe0238c22a40)
    at /usr/src/sys/amd64/amd64/trap.c:326
#13 0xffffffff807fb023 in calltrap ()
    at /usr/src/sys/amd64/amd64/exception.S:236
#14 0x0000000200b25c33 in ?? ()




-- 
Steve
20161221 https://www.youtube.com/watch?v=IbCHE-hONow

From owner-freebsd-current@freebsd.org  Wed Dec 28 23:59:20 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 41D7CC95B54
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Wed, 28 Dec 2016 23:59:20 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from kib.kiev.ua (kib.kiev.ua [IPv6:2001:470:d5e7:1::1])
 (using TLSv1 with cipher DHE-RSA-CAMELLIA256-SHA (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id D470B1059
 for <freebsd-current@freebsd.org>; Wed, 28 Dec 2016 23:59:19 +0000 (UTC)
 (envelope-from kostikbel@gmail.com)
Received: from tom.home (kib@localhost [127.0.0.1])
 by kib.kiev.ua (8.15.2/8.15.2) with ESMTPS id uBSNxDQL099549
 (version=TLSv1 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NO);
 Thu, 29 Dec 2016 01:59:13 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
DKIM-Filter: OpenDKIM Filter v2.10.3 kib.kiev.ua uBSNxDQL099549
Received: (from kostik@localhost)
 by tom.home (8.15.2/8.15.2/Submit) id uBSNxCAs099548;
 Thu, 29 Dec 2016 01:59:12 +0200 (EET)
 (envelope-from kostikbel@gmail.com)
X-Authentication-Warning: tom.home: kostik set sender to kostikbel@gmail.com
 using -f
Date: Thu, 29 Dec 2016 01:59:12 +0200
From: Konstantin Belousov <kostikbel@gmail.com>
To: Steve Kargl <sgk@troutmask.apl.washington.edu>
Cc: freebsd-current@freebsd.org
Subject: Re: unkillable firefox
Message-ID: <20161228235912.GE1923@kib.kiev.ua>
References: <20161220212920.GA69662@troutmask.apl.washington.edu>
 <20161228205453.GA96328@troutmask.apl.washington.edu>
 <20161228222836.GD1923@kib.kiev.ua>
 <20161228232439.GA1031@troutmask.apl.washington.edu>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161228232439.GA1031@troutmask.apl.washington.edu>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Spam-Status: No, score=-2.0 required=5.0 tests=ALL_TRUSTED,BAYES_00,
 DKIM_ADSP_CUSTOM_MED,FREEMAIL_FROM,NML_ADSP_CUSTOM_MED autolearn=no
 autolearn_force=no version=3.4.1
X-Spam-Checker-Version: SpamAssassin 3.4.1 (2015-04-28) on tom.home
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Wed, 28 Dec 2016 23:59:20 -0000

On Wed, Dec 28, 2016 at 03:24:39PM -0800, Steve Kargl wrote:
> Patch results in a panic when I start X server.
> 
> Fatal trap 12: page fault while in kernel mode
> cpuid = 7; apic id = 17
> fault virtual address   = 0x30
> fault code              = supervisor read data, page not present
> instruction pointer     = 0x20:0xffffffff807d3999
> stack pointer           = 0x0:0xfffffe0238c22720
> frame pointer           = 0x0:0xfffffe0238c22750
> code segment            = base 0x0, limit 0xfffff, type 0x1b
>                         = DPL 0, pres 1, long 1, def32 0, gran 1
> processor eflags        = interrupt enabled, resume, IOPL = 0
> current process         = 790 (fvwm)
> trap number             = 12
> panic: page fault
> cpuid = 7
> KDB: stack backtrace:
> db_trace_self_wrapper() at db_trace_self_wrapper+0x2b/frame 0xfffffe0238c223b0
> vpanic() at vpanic+0x186/frame 0xfffffe0238c22430
> panic() at panic+0x43/frame 0xfffffe0238c22490
> trap_fatal() at trap_fatal+0x322/frame 0xfffffe0238c224e0
> trap_pfault() at trap_pfault+0x1bc/frame 0xfffffe0238c22540
> trap() at trap+0x253/frame 0xfffffe0238c22650
> calltrap() at calltrap+0x8/frame 0xfffffe0238c22650
> --- trap 0xc, rip = 0xffffffff807d3999, rsp = 0xfffffe0238c22720, rbp = 0xfffffe0238c22750 ---
> vm_fault_populate_cleanup() at vm_fault_populate_cleanup+0x39/frame 0xfffffe0238c22750
> vm_fault_hold() at vm_fault_hold+0x1a65/frame 0xfffffe0238c22880
> vm_fault() at vm_fault+0x78/frame 0xfffffe0238c228c0
> trap_pfault() at trap_pfault+0xf6/frame 0xfffffe0238c22920
> trap() at trap+0x2ed/frame 0xfffffe0238c22a30
> calltrap() at calltrap+0x8/frame 0xfffffe0238c22a30
> 
> (kgdb) bt
> #0  doadump (textdump=1) at pcpu.h:222
> #1  0xffffffff80590002 in kern_reboot (howto=<value optimized out>)
>     at /usr/src/sys/kern/kern_shutdown.c:386
> #2  0xffffffff805904c0 in vpanic (fmt=<value optimized out>, 
>     ap=<value optimized out>) at /usr/src/sys/kern/kern_shutdown.c:779
> #3  0xffffffff805902f3 in panic (fmt=<value optimized out>)
>     at /usr/src/sys/kern/kern_shutdown.c:710
> #4  0xffffffff808151d2 in trap_fatal (frame=0xfffffe0238c22660, eva=48)
>     at /usr/src/sys/amd64/amd64/trap.c:801
> #5  0xffffffff8081539c in trap_pfault (frame=0xfffffe0238c22660, usermode=0)
>     at /usr/src/sys/amd64/amd64/trap.c:658
> #6  0xffffffff80814ab3 in trap (frame=0xfffffe0238c22660)
>     at /usr/src/sys/amd64/amd64/trap.c:421
> #7  0xffffffff807fb023 in calltrap ()
>     at /usr/src/sys/amd64/amd64/exception.S:236
> #8  0xffffffff807d3999 in vm_fault_populate_cleanup (
>     object=<value optimized out>, first=<value optimized out>, 
>     last=<value optimized out>) at pcpu.h:222
> #9  0xffffffff807d2105 in vm_fault_hold (map=0xfffff8000999f000, 
>     vaddr=8597401600, fault_type=<value optimized out>, fault_flags=0, 
>     m_hold=0x0) at /usr/src/sys/vm/vm_fault.c:402
> #10 0xffffffff807d0658 in vm_fault (map=0xfffff8000999f000, 
>     vaddr=<value optimized out>, fault_type=1 '\001', 
>     fault_flags=<value optimized out>) at /usr/src/sys/vm/vm_fault.c:464
> #11 0xffffffff808152d6 in trap_pfault (frame=0xfffffe0238c22a40, usermode=1)
>     at /usr/src/sys/amd64/amd64/trap.c:708
> #12 0xffffffff80814b4d in trap (frame=0xfffffe0238c22a40)
>     at /usr/src/sys/amd64/amd64/trap.c:326
> #13 0xffffffff807fb023 in calltrap ()
>     at /usr/src/sys/amd64/amd64/exception.S:236
> #14 0x0000000200b25c33 in ?? ()
> 

You do not have INVARIANTS in the kernel config ?

Below is my guess about the issue in the patch.  Hopefully it fixes
your panic and still cure the bug I see in your previous report.

diff --git a/sys/vm/vm_fault.c b/sys/vm/vm_fault.c
index e8fb5d00408..4d25e127e8d 100644
--- a/sys/vm/vm_fault.c
+++ b/sys/vm/vm_fault.c
@@ -304,13 +304,48 @@ vm_fault_restore_map_lock(struct faultstate *fs)
 	fs->lookup_still_valid = true;
 }
 
+static void
+vm_fault_populate_check_page(vm_page_t m, vm_object_t object, vm_pindex_t pidx)
+{
+
+	/*
+	 * Check each page to ensure that the driver is
+	 * obeying the interface: the page must be installed
+	 * in the object, fully valid, and exclusively busied.
+	 */
+	MPASS(m != NULL);
+	MPASS(vm_page_xbusied(m));
+	MPASS(m->valid == VM_PAGE_BITS_ALL);
+	MPASS(m->object == object);
+	MPASS(m->pindex == pidx);
+}
+
+static void
+vm_fault_populate_cleanup(vm_object_t object, vm_pindex_t first,
+    vm_pindex_t last)
+{
+	vm_page_t m;
+	vm_pindex_t pidx;
+
+	VM_OBJECT_ASSERT_WLOCKED(object);
+	if (first > last) /* micro-op: avoid page lookup */
+		return;
+	for (pidx = first, m = vm_page_lookup(object, pidx);
+	    pidx <= last; pidx++, m = vm_page_next(m)) {
+		vm_fault_populate_check_page(m, object, pidx);
+		vm_page_lock(m);
+		vm_page_activate(m);
+		vm_page_unlock(m);
+		vm_page_xunbusy(m);
+	}
+}
 
 static int
 vm_fault_populate(struct faultstate *fs, vm_offset_t vaddr, vm_prot_t prot,
     int fault_type, int fault_flags, boolean_t wired, vm_page_t *m_hold)
 {
 	vm_page_t m;
-	vm_pindex_t f_first, f_last, pidx;
+	vm_pindex_t f_first, f_last, f1_first, f1_last, pidx;
 	int rv;
 
 	MPASS(fs->object == fs->first_object);
@@ -357,28 +392,25 @@ vm_fault_populate(struct faultstate *fs, vm_offset_t vaddr, vm_prot_t prot,
 	MPASS(f_last < fs->first_object->size);
 
 	vm_fault_restore_map_lock(fs);
-	if (fs->map->timestamp != fs->map_generation)
+	if (fs->map->timestamp != fs->map_generation) {
+		vm_fault_populate_cleanup(fs->first_object, f_first, f_last);
 		return (KERN_RESOURCE_SHORTAGE); /* RetryFault */
+	}
 
 	/* Clip pager response to fit into the vm_map_entry. */
-	f_first = MAX(OFF_TO_IDX(fs->entry->offset), f_first);
-	f_last = MIN(OFF_TO_IDX(fs->entry->end - fs->entry->start +
+	f1_first = MAX(OFF_TO_IDX(fs->entry->offset), f_first);
+	if (f1_first > f_first)
+		vm_fault_populate_cleanup(fs->first_object, f_first, f1_first
+		    - 1);
+	f1_last = MIN(OFF_TO_IDX(fs->entry->end - fs->entry->start +
 	    fs->entry->offset), f_last);
+	if (f1_last < f_last)
+		vm_fault_populate_cleanup(fs->first_object, f1_last + 1,
+		    f_last);
 
-	pidx = f_first;
-	for (m = vm_page_lookup(fs->first_object, pidx); pidx <= f_last;
-	    pidx++, m = vm_page_next(m)) {
-		/*
-		 * Check each page to ensure that the driver is
-		 * obeying the interface: the page must be installed
-		 * in the object, fully valid, and exclusively busied.
-		 */
-		MPASS(m != NULL);
-		MPASS(vm_page_xbusied(m));
-		MPASS(m->valid == VM_PAGE_BITS_ALL);
-		MPASS(m->object == fs->first_object);
-		MPASS(m->pindex == pidx);
-
+	for (pidx = f1_first, m = vm_page_lookup(fs->first_object, pidx);
+	    pidx <= f1_last; pidx++, m = vm_page_next(m)) {
+		vm_fault_populate_check_page(m, fs->first_object, pidx);
 		vm_fault_dirty(fs->entry, m, prot, fault_type, fault_flags,
 		    true);
 		VM_OBJECT_WUNLOCK(fs->first_object);

From owner-freebsd-current@freebsd.org  Thu Dec 29 00:20:56 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id E81B2C942A7
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 00:20:56 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (troutmask.apl.washington.edu
 [128.95.76.21])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "troutmask", Issuer "troutmask" (not verified))
 by mx1.freebsd.org (Postfix) with ESMTPS id C5A7F1C55
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 00:20:56 +0000 (UTC)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: from troutmask.apl.washington.edu (localhost [127.0.0.1])
 by troutmask.apl.washington.edu (8.15.2/8.15.2) with ESMTPS id uBT0KtQx000892
 (version=TLSv1.2 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO);
 Wed, 28 Dec 2016 16:20:55 -0800 (PST)
 (envelope-from sgk@troutmask.apl.washington.edu)
Received: (from sgk@localhost)
 by troutmask.apl.washington.edu (8.15.2/8.15.2/Submit) id uBT0KtRe000891;
 Wed, 28 Dec 2016 16:20:55 -0800 (PST) (envelope-from sgk)
Date: Wed, 28 Dec 2016 16:20:55 -0800
From: Steve Kargl <sgk@troutmask.apl.washington.edu>
To: Konstantin Belousov <kostikbel@gmail.com>
Cc: freebsd-current@freebsd.org
Subject: Re: unkillable firefox
Message-ID: <20161229002055.GA866@troutmask.apl.washington.edu>
Reply-To: sgk@troutmask.apl.washington.edu
References: <20161220212920.GA69662@troutmask.apl.washington.edu>
 <20161228205453.GA96328@troutmask.apl.washington.edu>
 <20161228222836.GD1923@kib.kiev.ua>
 <20161228232439.GA1031@troutmask.apl.washington.edu>
 <20161228235912.GE1923@kib.kiev.ua>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161228235912.GE1923@kib.kiev.ua>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-Mailman-Approved-At: Thu, 29 Dec 2016 00:52:47 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 00:20:57 -0000

On Thu, Dec 29, 2016 at 01:59:12AM +0200, Konstantin Belousov wrote:
> On Wed, Dec 28, 2016 at 03:24:39PM -0800, Steve Kargl wrote:
> > Patch results in a panic when I start X server.
> > 
> 
> You do not have INVARIANTS in the kernel config ?
> 

Correct.

> Below is my guess about the issue in the patch.  Hopefully it fixes
> your panic and still cure the bug I see in your previous report.

It fixes both the panic and appears to fix firefox.  At least,
I can't get firefox to get into a wedged state.  Now, I need
to go find out why I have kern.ipc.shm_use_phys set to 1 (likely,
a remnant from isome ancient app installed from the /usr/ports).  

Thanks for the quick response.

-- 
Steve
20161221 https://www.youtube.com/watch?v=IbCHE-hONow

From owner-freebsd-current@freebsd.org  Thu Dec 29 10:11:41 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 70DB4C9569F
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 10:11:41 +0000 (UTC)
 (envelope-from gurenchan@gmail.com)
Received: from mail-lf0-x22a.google.com (mail-lf0-x22a.google.com
 [IPv6:2a00:1450:4010:c07::22a])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id EE4A0170C
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 10:11:40 +0000 (UTC)
 (envelope-from gurenchan@gmail.com)
Received: by mail-lf0-x22a.google.com with SMTP id t196so218842239lff.3
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 02:11:40 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:from:date:message-id:subject:to;
 bh=SoMdnd5c2c4+U3WWHOgl65uU1gRluHWA6raqozVuvr8=;
 b=IvY3uiwsERUpeBwzXos2HmTRy/NmvFVsJAsFu0FcPH5ZPWtuSahvoomQAtpBPjdcgf
 YLUaZ7AVRtYneS5mPC1h27aJt3HXyMAs8E9FRmgYzKdVtN3jZ8dzgGur/9KIZZZsJHFd
 FvhKIAd/UJkMXPYq90xbmlFVI9j7E0R+DbbJtNq3Il/Sdm9I8hldPqs+yLJqqXqgZktw
 2WMlIo5gs25kN81RGx4hJbMsTrbE3frnVgzUBu6LNNGuAxnRTo0M/5NgcKi2l0PjlTIv
 1nKJLX73Siqfcgfp045cuT4IjUGiIt5iA+pDekpBQxEFIyCXFk4FrzZ8MM90hYLuxq27
 RtAA==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:from:date:message-id:subject:to;
 bh=SoMdnd5c2c4+U3WWHOgl65uU1gRluHWA6raqozVuvr8=;
 b=BqBJJvRv4i0X00a/QFirwI5nE7x84jJ3YmNbABiMxP10RbkkLORX+YMz88rlGdQd4J
 EctaOFLFL6tsa4t8vpncSA7EHiYib3G9za2PSNTpLq/xi9FQ0yzPdKw4ifGJv0vD97NL
 51LrPhqkFqWCDY1NaQsGW83TTvWklJPSdmymTFBk8Za4joFMinxFemZLPgBrmDbW+AI0
 jddeMcH7SDIUztf7jN/XW2ic0ABNCotNWQimmF53OINcikFJDN6qH0PN9nD1H9rY/FYd
 3gnMfMBDIhXWbSzUiDFCIoWc4t3qpy91tf0OV/2oaJs2/L6rB4+vxnraNDjRSbAbCHIG
 u8mQ==
X-Gm-Message-State: AIkVDXKzUyMrz9fPWegRFhdvpAO8z9ORXlYis8zJcLnjL18KjjgUv6sXEnye/k3PqcjN2vcsVvDVchzi2LDD6w==
X-Received: by 10.25.28.145 with SMTP id c139mr12117677lfc.167.1483006298918; 
 Thu, 29 Dec 2016 02:11:38 -0800 (PST)
MIME-Version: 1.0
Received: by 10.25.79.88 with HTTP; Thu, 29 Dec 2016 02:11:38 -0800 (PST)
From: blubee blubeeme <gurenchan@gmail.com>
Date: Thu, 29 Dec 2016 18:11:38 +0800
Message-ID: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
Subject: A question about updating src & ports
To: freebsd-current@freebsd.org
Content-Type: text/plain; charset=UTF-8
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 10:11:41 -0000

Howdy

I went through the process of building world for the first time, that was
interesting but I got it. svn clean up prior object files, build world,
kernel, etc.

Okay that part is fine

I have a question about keeping ports up to date, in the past I did
portsnap fetch update to update the ports but since I totally deleted all
the ports and used svn checkout to get the latest ports.

Can I mix portsnap fetch update or should I just continue to use svn update
/usr/ports

Best,
Owen

From owner-freebsd-current@freebsd.org  Thu Dec 29 10:33:51 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id E118AC95D89
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 10:33:51 +0000 (UTC)
 (envelope-from garga.bsd@gmail.com)
Received: from mail-qt0-x243.google.com (mail-qt0-x243.google.com
 [IPv6:2607:f8b0:400d:c0d::243])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 9A16B11E5
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 10:33:51 +0000 (UTC)
 (envelope-from garga.bsd@gmail.com)
Received: by mail-qt0-x243.google.com with SMTP id 41so21015184qtn.0
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 02:33:51 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=sender:from:message-id:mime-version:subject:date:in-reply-to:cc:to
 :references; bh=L+noLuLV6CMUiYAcbrHAk07EFF/+dnvvrKed5hYrUtI=;
 b=FhT1KG7i8tX6d2gt9NJZZAZMy12cFvSuEjDLWwdOmtdQ8a6QFUoTjPRN3/SURu1j1s
 cESECwS43mVRwB9nlkHEg7MOMt2/sON17O6R5tthsNjDsuUJ+IYxINdyVj8LSDCESh29
 lMHFUhYJWnPJFyZD3vO68IFilUJA9VVoefcoSuTpai6SckjvwQw7mfGzHmj4IsUosQ6C
 K8NCztSzoI1gcyItqK9auiwvrjedqihVXOAycx1OR1hQuBnBwqt8aETqZzOrKXN/V8K8
 tUvymJ5YAXMYZI6DehF3Pnys6w0yL5PTsT4RW0ublcuEfcO5rWzNSXPxz71feUhSbD2D
 tObw==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:sender:from:message-id:mime-version:subject:date
 :in-reply-to:cc:to:references;
 bh=L+noLuLV6CMUiYAcbrHAk07EFF/+dnvvrKed5hYrUtI=;
 b=rbKtvpJ0mpfLrdap9gIZIsBukDHtzXFYHnMX/fmfaS5Lg3KYMuC3Y15XfVAAvjJDA4
 tmdHJRHarnMqLSB0pLdCE6Bbv0FNuJw1djGjw02Pte3oX3ZZxwvWjIsNSBPPxS9DkkTL
 V8F9vEV+PrTx0O5WH5uL775iPf+f+u84JD6a/gFRqKWiYHzFpS1mHyALoojt6fb6919F
 7h0DLfZ61cR/7s0z6nc0L7mJ6BgSHOicjuFkKKCPwGMRo3ctoLMh8yoDjRs6W5hNUyfF
 RHyghAEWa8cXe+d5xD5XqDrT6z3ILFqqPkmiqAt0LgZAikMVb/3kYr6kSaWpyvcHtLLt
 fStQ==
X-Gm-Message-State: AIkVDXKzc8bNwkX2JnYLgSpCzgZKrrmN6307OOt9Oe7C9S41ee+rI7ZEo/H0fgZg6ffqkQ==
X-Received: by 10.200.57.71 with SMTP id t7mr41216162qtb.59.1483007630797;
 Thu, 29 Dec 2016 02:33:50 -0800 (PST)
Received: from mbp.home ([187.94.178.176])
 by smtp.gmail.com with ESMTPSA id h43sm32734807qth.29.2016.12.29.02.33.48
 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);
 Thu, 29 Dec 2016 02:33:49 -0800 (PST)
Sender: Renato Botelho <garga.bsd@gmail.com>
From: Renato Botelho <garga@FreeBSD.org>
Message-Id: <1B021B94-2953-4164-B86F-A82396A5AB17@FreeBSD.org>
Mime-Version: 1.0 (Mac OS X Mail 10.2 \(3259\))
Subject: Re: A question about updating src & ports
Date: Thu, 29 Dec 2016 08:33:49 -0200
In-Reply-To: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
Cc: freebsd-current@freebsd.org
To: blubee blubeeme <gurenchan@gmail.com>
References: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
X-Mailer: Apple Mail (2.3259)
Content-Type: text/plain;
	charset=utf-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 10:33:52 -0000

> On 29 Dec 2016, at 08:11, blubee blubeeme <gurenchan@gmail.com> wrote:
>=20
> Howdy
>=20
> I went through the process of building world for the first time, that =
was
> interesting but I got it. svn clean up prior object files, build =
world,
> kernel, etc.
>=20
> Okay that part is fine
>=20
> I have a question about keeping ports up to date, in the past I did
> portsnap fetch update to update the ports but since I totally deleted =
all
> the ports and used svn checkout to get the latest ports.
>=20
> Can I mix portsnap fetch update or should I just continue to use svn =
update
> /usr/ports


If you download ports tree using =E2=80=98portsnap fetch extract=E2=80=99 =
you can keep using =E2=80=98portsnap fetch update=E2=80=99 to update it. =
If you download ports tree using =E2=80=98svn checkout =E2=80=A6=E2=80=99,=
 then you should use =E2=80=98svn up=E2=80=99.

IMO, portsnap is the easiest way.

--
Renato Botelho


From owner-freebsd-current@freebsd.org  Thu Dec 29 10:44:36 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5A6E1C961BE
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 10:44:36 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.18])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id C9E811852
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 10:44:35 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([85.178.51.182]) by mail.gmx.com
 (mrgmx003 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0LqRKT-1d0Inb3ZGz-00e12u; Thu, 29 Dec 2016 11:44:27 +0100
Date: Thu, 29 Dec 2016 11:44:20 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: blubee blubeeme <gurenchan@gmail.com>
Cc: freebsd-current@freebsd.org
Subject: Re: A question about updating src & ports
Message-ID: <20161229114408.4dfdbb8e@thor.walstatt.dynvpn.de>
In-Reply-To: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
References: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/ut1ZX_HkfxGTeXPSZenB1dU"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:VFrWao+j66nkR5m+AhEfejC1U/+9dnH2w67QhmH4qyNAJrlYqJ3
 FiigI8CRTKCnvvudmh2kbd+qLmjVAq+wUZ37KNMhjxEEI13LuvF5OlAIysI2WXqLUwsFLef
 rWX8w9+F+hJHpp3+B/suAN3NEKJMKSo7Ca2OcjyWkVhRB/vwTA/HhmGKwkeznIcmS+wO2Dq
 Dch0FfaXwAJwEso1B3yZg==
X-UI-Out-Filterresults: notjunk:1;V01:K0:ov/kUzLieAo=:VQaA7TA1+KPMAIvwQJ8IB5
 /+PmOrqIkI1SWriu+GNgI/mO5GdyxuW6B2DR4D1iqWbjofshUzcPSKHNfqUUxCLUSPQD3lkMh
 jYeUy+7V8HJuCOv8Z6DVVonBsAiU/G6nIRUbrpWuno+Vnvg6lM4QHH9BPuPwnvdi5k4fS9dF2
 3rnHA+e3m4N05jXiJATDDo3rXpYNLI12MktDkLILr6WDp4JLRW7APrL7TAAwPTdvO5N3YEHhi
 9E+jUj/speWD5PC6bqMWcS0Dpi0JqKnwUTBbDf9qwm7MQKPRQYPJbNtI5ay2uF6liv7vPs9K6
 0F8May1DnaoRYOQTviNEsMkF5EMhQRifbLSNWtMB7gmdPIhsQI6CN+A31L/f3DjrP08iCR8QI
 0H/VTvMCmVS3KBAbMkMl4uJsVFlN2bLJtjH22KvvzReEM7AwdFK9TYAkaRRUCjY4uZ+1lIAjp
 ln4WtfvuCcuI4RoVAC/x8dgN8nbIHKBXINehx1LwjWz4PH+CrHT4fMfI8IWUmUnY/fQ37Ci0S
 kpW81MtXoMxEu+SOTVKudUE0UmIF6BZgruZoaqcAgM4VOuSY/FOX8nxyS+BjULnM0Yv7u1Lb+
 rj1baKo/uOarv6HVASdkHfhTBe1kQrQ3SgdSvlHcFNmx+brQK8mqU9+ApZd3P7mDJDH5SSDFI
 LjonpyYdpGXhBEKK+Lci5BPvBibj9jEOnxXZFFNAWIpXRgQl4uIxBudCTRGexkQyT7A3+cTkC
 KpGgvskwqVzTpwwVxV/w7VBwUNDbeInb3zjujai/bbU5mjkRTyTimPKU5bk=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 10:44:36 -0000

--Sig_/ut1ZX_HkfxGTeXPSZenB1dU
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Am Thu, 29 Dec 2016 18:11:38 +0800
blubee blubeeme <gurenchan@gmail.com> schrieb:

> Howdy
>=20
> I went through the process of building world for the first time, that was
> interesting but I got it. svn clean up prior object files, build world,
> kernel, etc.
>=20
> Okay that part is fine
>=20
> I have a question about keeping ports up to date, in the past I did
> portsnap fetch update to update the ports but since I totally deleted all
> the ports and used svn checkout to get the latest ports.
>=20
> Can I mix portsnap fetch update or should I just continue to use svn upda=
te
> /usr/ports
>=20
> Best,
> Owen

Well,

from my own experience I left the path of "portsnap" and stay with svn alon=
e. portsnap
tends to "flood" the /var filesystem with a tremendous number of files over=
 time. Each
time you issue "portsnap fetch update", a file appears in /var/portsnap - i=
t could be
that the files appear in /var/db, I can't remember. Deleting them with "rm =
-rf *" leaves
me then with an error from "rm": the argument line is to long due to the nu=
mber of files.
Therefore, I switched to svn.

Well, svn itself is pumping up /usr/ports/.svn where it keeps all logs. Dep=
ending on the
frequency of updates it grows. I do the same for /usr/src and by the time o=
f fetching
almost every day several times a day updates, the folder .svn is as large
as /usr/src itself in its pristine state when fetched initially. For
long-haul/long-running systems I'm concerned about the flood of data coming=
 in and
sometimes the filesystem is full. I avoid ZFS on build machines and use par=
titions
for /usr/src, /usr/obj and sibblings which saved my ass several times for n=
ow. ZFS is a
memory hog, on /usr/ports (which is on ZFS in mz scenario, the exclusion ..=
.), a "svn
update" can take up to 8 minutes on a 16GB, freshly rebooted box with a 3,4=
 Ghz XEON
IvyBridge CPU and a ZFS RAIDZ with 4 HDDs and SSD for ZIL and L2ARC.=20

On the other hand - I once tried to mix portsnap and svn and apart from any=
 theory it
worked a while and then it failed. That might be due to non-synchronisation=
 between
portsnap serving facilities and subversion repositories - which I would exp=
ect not to be
in sync withing femto seconds. So it might be wise to saty with one specifi=
c method - I
decided myself to keep it with svn.

Just my experience,

Kind regards,

Oliver
=20
--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/ut1ZX_HkfxGTeXPSZenB1dU
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGTpBAAKCRDS528fyFhY
lJD2Af9qQT0HO++SSYqGi0OuQxo3UWzS1VY/71Yx9ANGpuGVac/OcUMh4jnLcgj8
CnePpshRGJb7/+I4J3slshL7LogLAgCS4LLEf73aafUw5a2IxUn+fzVIkdlorwQ1
NMWF7rFbq57kdCQNs4xWrtiqHgGs7+HccTYzbVuUq/YHjm8vMuKc
=kt5U
-----END PGP SIGNATURE-----

--Sig_/ut1ZX_HkfxGTeXPSZenB1dU--

From owner-freebsd-current@freebsd.org  Thu Dec 29 11:48:35 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 66426C961A9
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 11:48:35 +0000 (UTC) (envelope-from jhs@berklix.com)
Received: from land.berklix.org (land.berklix.org [144.76.10.75])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 078B81709
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 11:48:34 +0000 (UTC)
 (envelope-from jhs@berklix.com)
Received: from mart.js.berklix.net (p5083CD61.dip0.t-ipconnect.de
 [80.131.205.97]) (authenticated bits=128)
 by land.berklix.org (8.15.2/8.15.2) with ESMTPA id uBTBmXrL020636;
 Thu, 29 Dec 2016 11:48:33 GMT (envelope-from jhs@berklix.com)
Received: from fire.js.berklix.net (fire.js.berklix.net [192.168.91.41])
 by mart.js.berklix.net (8.14.3/8.14.3) with ESMTP id uBTBmVuA089491;
 Thu, 29 Dec 2016 12:48:32 +0100 (CET) (envelope-from jhs@berklix.com)
Received: from fire.js.berklix.net (localhost [127.0.0.1])
 by fire.js.berklix.net (8.14.7/8.14.7) with ESMTP id uBTBmDtN038716;
 Thu, 29 Dec 2016 12:48:25 +0100 (CET) (envelope-from jhs@berklix.com)
Message-Id: <201612291148.uBTBmDtN038716@fire.js.berklix.net>
To: blubee blubeeme <gurenchan@gmail.com>
cc: freebsd-current@freebsd.org
Subject: Re: A question about updating src & ports
From: "Julian H. Stacey" <jhs@berklix.com>
Organization: http://berklix.eu BSD Unix Linux Consultants, Munich Germany
User-agent: EXMH on FreeBSD http://berklix.eu/free/
X-From: http://www.berklix.eu/~jhs/
In-reply-to: Your message "Thu, 29 Dec 2016 18:11:38 +0800."
 <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
Date: Thu, 29 Dec 2016 12:48:13 +0100
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 11:48:35 -0000

Hi, Reference:
> From:		blubee blubeeme <gurenchan@gmail.com>
> Date:		Thu, 29 Dec 2016 18:11:38 +0800

blubee blubeeme wrote:
> Howdy
> 
> I went through the process of building world for the first time, that was
> interesting but I got it. svn clean up prior object files, build world,
> kernel, etc.
> 
> Okay that part is fine
> 
> I have a question about keeping ports up to date, in the past I did
> portsnap fetch update to update the ports but since I totally deleted all
> the ports and used svn checkout to get the latest ports.
> 
> Can I mix portsnap fetch update or should I just continue to use svn update
> /usr/ports

BTW, CTM can also update local trees of FreeBSD svn src & ports.
URLs at http://ctm.berklix.org

Cheers,
Julian
-- 
Julian Stacey, BSD Linux Unix Sys Eng Consultant Munich
 Reply below, Prefix '> '. Plain text, No .doc, base64, HTML, quoted-printable.
 http://berklix.eu/brexit/#stolen_votes

From owner-freebsd-current@freebsd.org  Thu Dec 29 12:17:56 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6599C93A23
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 12:17:56 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id B49421EF1;
 Thu, 29 Dec 2016 12:17:56 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 076B74A3;
 Thu, 29 Dec 2016 12:17:57 +0000 (UTC)
Date: Thu, 29 Dec 2016 12:17:50 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, marius@FreeBSD.org, ngie@FreeBSD.org, markj@FreeBSD.org, 
 kan@FreeBSD.org, araujo@FreeBSD.org, emaste@FreeBSD.org, 
 pfg@FreeBSD.org, mjg@FreeBSD.org, loos@FreeBSD.org, br@FreeBSD.org, 
 amdmi3@FreeBSD.org, jhb@FreeBSD.org, alc@FreeBSD.org, 
 arybchik@FreeBSD.org, jenkins-admin@FreeBSD.org, 
 freebsd-current@FreeBSD.org
Message-ID: <143158326.140.1483013877050.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <811092099.138.1482927107592.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <811092099.138.1482927107592.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_amd64_gcc - Build #1747 - Still Failing
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_amd64_gcc
X-Jenkins-Result: FAILURE
Precedence: bulk
X-Mailman-Approved-At: Thu, 29 Dec 2016 12:43:33 +0000
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 12:17:56 -0000

FreeBSD_HEAD_amd64_gcc - Build #1747 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1=
747/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/174=
7/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_amd64_gcc/1747=
/console

Change summaries:

310770 by arybchik:
sfxge(4): cleanup: clarify/unify variable name used for put-list length

get_count is used for get-list.

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310767 by mjg:
cache: depessimize hashing macros/inlines

All hash sizes are power-of-2, but the compiler does not know that for sure
and 'foo % size' forces doing a division.

Store the size - 1 and use 'foo & hash' instead which allows mere shift.

310766 by mjg:
cache: drop the NULL check from VP2VNODELOCK

Now that negative entries are annotated with a dedicated flag, NULL vnodes
are no longer passed.

310765 by arybchik:
sfxge(4): add support for firmware-verified NVRAM updates to the common cod=
e

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D8942

310764 by arybchik:
sfxge(4): sync up tlv_layout.h (from firmwaresrc 82cd8a5715e9)

Submitted by:   Matthew Slattery <mslattery at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310763 by ngie:
Use uint32_t instead of u_int32_t for or_last_change and services in "struc=
t systemg"

This is being done to match "struct systemg" in snmpmod(3)

No functional change

MFC after:=093 days

310762 by arybchik:
sfxge(4): regenerate MCDI headers from firmwaresrc .yml

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310760 by arybchik:
sfxge(4): fix typo in pseudo header accessor function names

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310758 by arybchik:
sfxge(4): delete hunt_phy.c

Submitted by:   Mark Spender <mspender at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310756 by arybchik:
sfxge(4): do not use enum type when values are bitmask

ICC complains that enumerated type mixed with another type.

Found by DPDK upstream build sanity check.

Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8954

310755 by arybchik:
sfxge(4): do not use enum for filter flags

It is not 100% correct to assign non-enum values to enum type
variables.

Found by ICC build (DPDK PMD upstreaming).

Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8953

310754 by arybchik:
sfxge(4): don't use Tx descriptor push with TSO option descriptors

It is not safe to push TSO option descriptors if pacer bypass is
enabled, so to make sure that doesn't happen never push TSO option
descriptors.

Submitted by:   Mark Spender <mspender at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8952

310753 by arybchik:
sfxge(4): split EFX_FILTER_MATCH_LOC_MAC_IG back into separate flags

The flag EFX_FILTER_MATCH_LOC_MAC_IG to represent filtering on the
individual/group bit of the MAC address (with the two cases being
distingusished by the MAC address in the filter specification) was
introduced to mirror the Linux driver filtering code, but the
implementations are different enough anyway that it isn't of much value.

Having separate flags for unknown unicast and multicast simplifies
the code and allows the set of flags to match those used by MCDI.

It will also makes it easier to report whether these filters are
supported.

In the MCDI definitions, the unknown multicast and unicast flags have
the values 0x40000000 and 0x80000000 respectively, and so using the
same values for simplicity requires 32 bits in the filter specification
to store the flags. This means the structure is now a little bigger
than 64 bytes, but filters are not often used on critical paths so this
shouldn't have much impact - on Linux they are also bigger than they
used to be.

Submitted by:   Mark Spender <mspender at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D8951

310752 by arybchik:
sfxge(4): allow to have no NIC handle on Rx datapath in DPDK PMD

It is required to minimize RxQ context in the driver or avoid chaising
for the NIC handle in adapter (global per-interface) structure.

Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8950

310750 by arybchik:
sfxge(4): add missing barrier in common code MCDI response handling

The semantics of the MCDI interfacve require reading the first
dword of the header before any other data in the buffer. Add
a barrier to the common code MCDI handler to enforce this.

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D8949

310749 by arybchik:
sfxge(4): use correct port number in sensor decoding

The port mask used for per-port sensors in mcdi_sensor_map
assumes zero-based port numbering. The port mask used in
the code is based on the one-based MCDI port number.

Fix this to lookup the correct per-port sensors, and to
allow reporting of sensor events from higher port numbers.

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8947

310748 by arybchik:
sfxge(4): cleanup: simplify disable scatter logic in ef10_rx_qcreate

Reviewed by:    gnn
Submitted by:   Andy Moreton <amoreton at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8945

310747 by arybchik:
sfxge(4): provide a way to find out which MAC stats are supported

Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8944

310746 by arybchik:
sfxge(4): make the common code determine the number of PFs

Submitted by:   Ivan Malov <Ivan.Malov at oktetlabs.ru>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8941

310745 by arybchik:
sfxge(4): make the common code retrieve the number of FATSOv2 contexts

Submitted by:   Ivan Malov <Ivan.Malov at oktetlabs.ru>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8940

310744 by arybchik:
sfxge(4): fix efx_ev_qpoll for non-Siena builds

Both Siena and EF10 use the siena_ev_qpoll() implementation, but this
function is not defined in builds without EFSYS_OPT_SIENA.

Remove siena_ev_qpoll and inline it into efx_ev_qpoll to allow it
to be used in non-Siena builds.

Also remove outdated FIXME comment, as EF10 event batching/merging has
been implemented long ago without needing to modify this code.

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      1 week
Differential Revision:  https://reviews.freebsd.org/D8939

310742 by arybchik:
sfxge(4): fix common code for non-Siena builds

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8938

310741 by arybchik:
sfxge(4): fix misuse of siena_build_filter in common code

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8937

310734 by jhb:
Note that the Chelsio T6 also supports 25Gbps.

To avoid overflowing 80 columns, condense the cxgbe description a bit.

Reviewed by:=09np

310729 by ngie:
Prevent improper memory accesses after calling snmp_pdu_free and snmp_value=
_free

snmp_pdu_free: set pdu->nbindings to 0 to limit the damage that
could happen if a pdu was reused after calling the function, and
as both stack and heap allocation types are used in contrib/bsnmp
and usr.sbin/bsnmpd.

snmp_value_free: NULL out value->v.octetstring.octets after calling
free on it to prevent a double-free from occurring.

MFC after:      2 weeks

310728 by ngie:
Install {asn1,bsnmpagent,bsnmpclient,bsnmplib}.3 as all of the APIs
they document

Also, alphabetically sort MAN

MFC after:=093 days

310727 by marius:
Fix a bug in r272840; given that the optlen parameter of setsockopt(2)
is a 32-bit socklen_t, do_get3() passes the kernel to access the wrong
32-bit half on big-endian LP64 machines when simply casting the 64-bit
size_t optlen to a socklen_t pointer.
While at it and given that the intention of do_get3() apparently is to
hide/wrap the fact that socket options are used for communication with
ipfw(4), change the optlen parameter of do_set3() to be of type size_t
and as such more appropriate than uintptr_t, too.

MFC after:=093 days

310726 by emaste:
cdboot: add explict suffix to ambiguous or instruction

Clang disallows ambiguous instructions (GNU as has a default based on
chosen .code setting). We only need 'orb' here because KARGS_FLAGS_PXE
fits in a byte; this is the same as done in bxeboot.

Reviewed by:=09kib
Sponsored by:=09The FreeBSD Foundation
Differential Revision:=09https://reviews.freebsd.org/D8959

310724 by markj:
Follow DW_AT_specification when looking up DW_AT_type attributes.

dwarf_attrval_*() will search the parent DIE referenced by a
DW_AT_abstract_origin attribute for the value of the DW_AT_type attribute.
Do the same thing for the DW_AT_specification attributes in variable
definitions emitted by GCC 6.2, and ensure that we return an error rather
than crashing if neither DW_AT_abstract_origin or DW_AT_specification is
found when looking for the value of the DW_AT_type attribute.

PR:=09=09215350, 215395
Reviewed by:=09emaste
MFC after:=092 weeks
Differential Revision:=09https://reviews.freebsd.org/D8920

310722 by kan:
Do not use read-modify-write on MSC control register.

The register is write-only, so just write only bits we want.

Submitted by:=09jmcneill

310721 by jhb:
Mention T6 and 100GbE in description of cxgbe.

MFC after:=093 days

310720 by alc:
Relax the object type restrictions on vm_page_alloc_contig().  Specifically=
,
add support for object types that were previously prohibited because they
could contain PG_CACHED pages.

Roughly halve the number of radix trie operations performed by
vm_page_alloc_contig() using the same approach that is employed by
vm_page_alloc().  Also, eliminate the radix trie lookup performed with the
free page queues lock held.

Tidy up the handling of radix trie insert failures in vm_page_alloc() and
vm_page_alloc_contig().

Reviewed by:=09kib, markj
Tested by:=09pho
Sponsored by:=09Dell EMC Isilon
Differential Revision:=09https://reviews.freebsd.org/D8878

310719 by arybchik:
sfxge(4): cleanup: remove last use of deprecated function flags with privil=
ege check

The function flags were changed to mirror the privileges, but
the privileges are preferred.

Submitted by:   Mark Spender <mspender at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8936

310718 by amdmi3:
bzip2 does not exit after showing license as requested with --version
or --license as most apps would do, instead it waits for data to
compress on stdin. Because of that, if `bzip2 --version' is called,
bogus `bzip2: I won't write compressed data to a terminal' error
message will be displayed, and checking for bzip2 version in scripts
as in

    bzip2 --version 2>&1 | grep -o "Version [^,]*"

will hand as bzip2 would wait for data to compress on stdin. Fix
this by exiting right after showing version/license text.

I've tried to push this upstream for more than a year, but author
is unresponsive, so upstream may be considered dead.

Ubuntu applies similar fix, for the note.

PR:=09=09199443
Approved by:=09dim, bapt
MFC after:=092 weeks
Differential Revision:=09D8924

310717 by arybchik:
sfxge(4): move BIST methods from hunt_phy.c to ef10_phy.c

Submitted by:   Mark Spender <mspender at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8935

310716 by arybchik:
sfxge(4): add UEFI ROM support to the common code

Submitted by:   Andrew Lee <alee at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8934

310715 by arybchik:
sfxge(4): fix GET_RXDP_CONFIG usage for multi-PF on Medford

On Medford, using MC_CMD_GET_RXDP_CONFIG to query the RX end
padding setting is in the ADMIN group, and so fails for
unprivileged functions. In that case, assume the largest size
supported by Medford hardware (256bytes) to prevent overrun.

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8933

310714 by arybchik:
sfxge(4): support Medford bootcfg partition layout in common code

For Siena and Huntington, the per-port bootcfg (aka expcfg) is
stored in a dedicated 4Kbyte partition for each port.

For Medford, the per-PF bootcfg is stored in a 2Kbyte sector
within a single shared partition. Update the common code to support
the new bootcfg layout.

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8932

310713 by arybchik:
sfxge(4): add possibility to control event queue performance profile

It is ignored on SFN5xxx/6xxx (aka Siena).

Reviewed by:    gnn
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days
Differential Revision:  https://reviews.freebsd.org/D8931

310712 by marius:
- Use correct offsets into the keys set array. As the elements of this
  zero-length array are dynamically sized at run-time based on the use
  of hints, compilers can't be expected to figure out these offsets on
  their own. [1]
- Fix incorrect comparison in cmp_nans(). [2]

PR:=09=09204571 [1], 202301 [2]
Submitted by:=09David Binderman [2]
MFC after:=093 days

310711 by ngie:
Don't explicitly build tcp wrappers support into bsnmpd; make it conditiona=
l
on MK_TCP_WRAPPERS !=3D "no"

This likely fixes an issue seen where some of the USE_TCPWRAPPERS code didn=
't
work as advertised

MFC after:=091 week

310709 by arybchik:
sfxge(4): fix invalid type of eft_unicst_filter_count

Found by clang when boolean_t is defined as bool for DPDK PMD.

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310708 by arybchik:
sfxge(4): do not initialize enumerated type variable to another type

Fix build warning generated by ICC.

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310707 by loos:
Fix the parsing of NPt binat rules.

In this specific case the src address can be set to any, which was not
accepted prior to this commit.

pfSense bug report:=09https://redmine.pfsense.org/issues/6985
Reviewed by:=09kp
Obtained from:=09pfSense
MFC after:=092 weeks
Sponsored by:=09Rubicon Communications, LLC (Netgate)

310706 by pfg:
Undo small wrong style change.

Reported by:=09kib

310705 by pfg:
style(9) cleanups.

Just to reduce some of the issues found with indent(1).

MFC after:=091 week

310704 by arybchik:
sfxge(4): translate MC_CMD_ERR_ERANGE to host errno value

This is needed because MCDI command MC_CMD_REKEY can return
MC_CMD_ERR_ERANGE.

Submitted by:   Tom Millington <tmillington at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310703 by mav:
Pass proper arguments (handles, not directly structure pointers) to
scif_cb_domain_device_removed().

This should fix NULL dereference on task management function timeout.

Reviewed by:=09jimharris
MFC after:=092 weeks

310702 by emaste:
btxldr: process all PT_LOAD segments, not just the first two

With default settings GNU ld generates two PT_LOADs for loader.sym while
LLD generates three, because it creates a rodata segment. Previously
btxldr terminated phdr processing after two PT_LOADs. Remove the early
termination to process all PT_LOADs.

Reviewed by:=09kib, tsoome
MFC after:=092 weeks
Sponsored by:=09The FreeBSD Foundation
Differential Revision:=09https://reviews.freebsd.org/D8929

310701 by br:
o Fix style.
o Remove set but not used variable.

Sponsored by:=09DARPA, AFRL

310700 by kan:
Be more conservative when enabling write-combining on MIPS

Some MIPS revisions do implement uncached-accelerate caching
attribute, but place extra requirement on access, such as
partial-word or out-of-sequence writes potentially having an
=E2=80=9Cunpredictable=E2=80=9D effects.

310699 by arybchik:
sfxge(4): rename hunt_bist_* methods to ef10_bist_*

Submitted by:   Mark Spender <mspender at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310698 by araujo:
Print hostcache usage counts with TCP statistics.

PR:=09=09196252
Submitted by:=09Anton Yuzhaninov <citrin+pr@citrin.ru>
MFC after:=093 weeks.

310696 by arybchik:
sfxge(4): cleanup: improve prefast annotations

Submitted by:   Andy Moreton <amoreton at solarflare.com>
Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310695 by arybchik:
sfxge(4): fix defined-but-not-used warning if neither VPD nor NVRAM opt ena=
bled

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310694 by arybchik:
sfxge(4): cleanup: add missing spaces

Found by DPDK checkpatch.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310693 by arybchik:
sfxge(4): cleanup: avoid unspecified unsigned

Found by DPDK checkpatch.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310692 by arybchik:
sfxge(4): enclose macro complex value in parenthesis

Found by DPDK checkpatches.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310691 by arybchik:
sfxge(4): make strings array pointer itself immutable

Found by DPDK checkpatches.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310690 by arybchik:
sfxge(4): cleanup: add const qualifier to const array pointer

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310689 by arybchik:
sfxge(4): cleanup: avoid spaces before TAB

Found by DPDK checkpatch.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310688 by arybchik:
sfxge(4): cleanup: avoid space just before TAB in efx_types.h

Found by DPDK checkpatch.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days

310687 by arybchik:
sfxge(4): cleanup: use TAB to indent

Found by DPDK checkpatch.sh

Sponsored by:   Solarflare Communications, Inc.
MFC after:      2 days



The end of the build log:

[...truncated 317262 lines...]
ctfconvert -L VERSION -g cam_xpt.o
--- scsi_cd.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_cd.o -MTscsi_cd.o -mcmodel=3Dkernel -mno-red-=
zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inclu=
de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress=
 -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-=
error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-er=
ror=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-er=
ror=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-commo=
n -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --=
param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_H=
EAD_amd64_gcc/sys/cam/scsi/scsi_cd.c
--- modules-all ---
--- zfs.ko ---
/usr/local/x86_64-freebsd/bin/objcopy --strip-debug --add-gnu-debuglink=3Dz=
fs.ko.debug  zfs.ko.full zfs.ko
--- scsi_ch.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_ch.o -MTscsi_ch.o -mcmodel=3Dkernel -mno-red-=
zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inclu=
de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress=
 -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-=
error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-er=
ror=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-er=
ror=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-commo=
n -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --=
param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_H=
EAD_amd64_gcc/sys/cam/scsi/scsi_ch.c
--- scsi_xpt.o ---
ctfconvert -L VERSION -g scsi_xpt.o
--- ata_da.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.ata_da.o -MTata_da.o -mcmodel=3Dkernel -mno-red-zo=
ne -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreest=
anding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnested=
-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winline =
-Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-include=
-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress -=
Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-er=
ror=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-erro=
r=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-erro=
r=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-set=
-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compare =
-Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-common =
-fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --pa=
ram large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_HEA=
D_amd64_gcc/sys/cam/ata/ata_da.c
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c: In function 'adazonedo=
ne':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2614:12: warning: varia=
ble 'num_alloced' set but not used [-Wunused-but-set-variable]
   uint32_t num_alloced, hdr_len, num_avail;
            ^~~~~~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2596:20: warning: varia=
ble 'softc' set but not used [-Wunused-but-set-variable]
  struct ada_softc *softc;
                    ^~~~~
--- scsi_ch.o ---
ctfconvert -L VERSION -g scsi_ch.o
--- scsi_da.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_da.o -MTscsi_da.o -mcmodel=3Dkernel -mno-red-=
zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inclu=
de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress=
 -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-=
error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-er=
ror=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-er=
ror=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-commo=
n -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --=
param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_H=
EAD_amd64_gcc/sys/cam/scsi/scsi_da.c
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c: In function 'daclose=
':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:1473:6: warning: vari=
able 'error' set but not used [-Wunused-but-set-variable]
  int error;
      ^~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c: In function 'dadelet=
emethodsysctl':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:2269:16: warning: var=
iable 'methods' set but not used [-Wunused-but-set-variable]
  int i, error, methods, value;
                ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c: In function 'dazoned=
one':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:3876:12: warning: var=
iable 'num_alloced' set but not used [-Wunused-but-set-variable]
   uint32_t num_alloced, hdr_len, num_avail;
            ^~~~~~~~~~~
--- ata_da.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:4=
6:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c: In function 'adadone':
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2655:29: note: called f=
rom here
   rep->header.maximum_lba =3D le64dec(hdr->maximum_lba);
                             ^~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:4=
6:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2708:8: note: called fr=
om here
        le64dec(desc->write_pointer_lba);
        ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:4=
6:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2706:28: note: called f=
rom here
    entry->zone_start_lba =3D le64dec(desc->zone_start_lba);
                            ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:4=
6:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/ata/ata_da.c:2705:25: note: called f=
rom here
    entry->zone_length =3D le64dec(desc->zone_length);
                         ^~~~~~~~~~~~~~~~~~~~~~~~~~
--- scsi_cd.o ---
ctfconvert -L VERSION -g scsi_cd.o
--- scsi_pass.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_pass.o -MTscsi_pass.o -mcmodel=3Dkernel -mno-=
red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -f=
freestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -W=
nested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wi=
nline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-i=
nclude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Dadd=
ress -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -=
Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wn=
o-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wn=
o-error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-b=
ut-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-co=
mpare -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-c=
ommon -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D10=
0 --param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeB=
SD_HEAD_amd64_gcc/sys/cam/scsi/scsi_pass.c
--- ata_da.o ---
ctfconvert -L VERSION -g ata_da.o
--- scsi_sa.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_sa.o -MTscsi_sa.o -mcmodel=3Dkernel -mno-red-=
zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inclu=
de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress=
 -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-=
error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-er=
ror=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-er=
ror=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-commo=
n -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --=
param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_H=
EAD_amd64_gcc/sys/cam/scsi/scsi_sa.c
--- scsi_pass.o ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_pass.c: In function 'passm=
emdone':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_pass.c:1683:13: warning: v=
ariable 'ccb' set but not used [-Wunused-but-set-variable]
  union ccb *ccb;
             ^~~
--- scsi_all.o ---
ctfconvert -L VERSION -g scsi_all.o
--- scsi_enc.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_enc.o -MTscsi_enc.o -mcmodel=3Dkernel -mno-re=
d-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffr=
eestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wne=
sted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl=
ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inc=
lude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddre=
ss -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wn=
o-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-=
error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-=
error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-comp=
are -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-com=
mon -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 =
--param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD=
_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc.c
--- scsi_da.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c=
:47:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c: In function 'dadone'=
:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:3925:62: note: called=
 from here
   rep->header.maximum_lba =3D ata ?  le64dec(hdr->maximum_lba) :
                             ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
        scsi_8btou64(hdr->maximum_lba);
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~                        =20
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c=
:47:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:3974:41: note: called=
 from here
        ata ? le64dec(desc->zone_length) :
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
       scsi_8btou64(desc->zone_length);
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   =20
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c=
:47:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:3977:44: note: called=
 from here
        ata ? le64dec(desc->zone_start_lba) :
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
       scsi_8btou64(desc->zone_start_lba);
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   =20
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c=
:47:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/sys/endian.h:140:1: warning: inlining fa=
iled in call to 'le64dec': call is unlikely and code size would grow [-Winl=
ine]
 le64dec(const void *pp)
 ^~~~~~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_da.c:3980:47: note: called=
 from here
        ata ? le64dec(desc->write_pointer_lba) :
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^
       scsi_8btou64(desc->write_pointer_lba);
       ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~   =20
--- scsi_enc.o ---
ctfconvert -L VERSION -g scsi_enc.o
--- scsi_pass.o ---
ctfconvert -L VERSION -g scsi_pass.o
--- scsi_enc_ses.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_enc_ses.o -MTscsi_enc_ses.o -mcmodel=3Dkernel=
 -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tab=
les -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-de=
cls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-ari=
th -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmis=
sing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=
=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bo=
unds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compa=
re -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverfl=
ow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dun=
used-but-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonn=
ull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  =
-fno-common -fms-extensions -finline-limit=3D8000 --param inline-unit-growt=
h=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1999   /builds=
/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_ses.c
--- scsi_enc_safte.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.scsi_enc_safte.o -MTscsi_enc_safte.o -mcmodel=3Dke=
rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind=
-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan=
t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer=
-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -=
Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-e=
rror=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-c=
ompare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Dov=
erflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=
=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=
=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-co=
mpare  -fno-common -fms-extensions -finline-limit=3D8000 --param inline-uni=
t-growth=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1999   =
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_safte.c
--- scsi_enc_ses.o ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_ses.c: In function 'se=
s_process_config':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_ses.c:1302:15: warning=
: variable 'ses' set but not used [-Wunused-but-set-variable]
  ses_softc_t *ses;
               ^~~
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_ses.c: In function 'se=
s_handle_string':
/builds/FreeBSD_HEAD_amd64_gcc/sys/cam/scsi/scsi_enc_ses.c:2708:15: warning=
: variable 'ses' set but not used [-Wunused-but-set-variable]
  ses_softc_t *ses;
               ^~~
--- scsi_da.o ---
ctfconvert -L VERSION -g scsi_da.o
--- smp_all.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.smp_all.o -MTsmp_all.o -mcmodel=3Dkernel -mno-red-=
zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffree=
standing -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wnest=
ed-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winlin=
e -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inclu=
de-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddress=
 -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wno-=
error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-er=
ror=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-er=
ror=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but-s=
et-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-compar=
e -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-commo=
n -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 --=
param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD_H=
EAD_amd64_gcc/sys/cam/scsi/smp_all.c
--- scsi_enc_safte.o ---
ctfconvert -L VERSION -g scsi_enc_safte.o
--- freebsd32_capability.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.freebsd32_capability.o -MTfreebsd32_capability.o -=
mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchr=
onous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototyp=
es -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-=
extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pr=
agmas -Wno-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-=
error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-er=
ror=3Denum-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wn=
o-error=3Doverflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow=
 -Wno-error=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -=
Wno-error=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautol=
ogical-compare  -fno-common -fms-extensions -finline-limit=3D8000 --param i=
nline-unit-growth=3D100 --param large-function-growth=3D1000  -std=3Diso989=
9:1999   /builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_capa=
bility.c
--- smp_all.o ---
ctfconvert -L VERSION -g smp_all.o
--- freebsd32_ioctl.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.freebsd32_ioctl.o -MTfreebsd32_ioctl.o -mcmodel=3D=
kernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwi=
nd-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredund=
ant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions=
 -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno=
-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Dar=
ray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum=
-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3D=
overflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-erro=
r=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=
=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-co=
mpare  -fno-common -fms-extensions -finline-limit=3D8000 --param inline-uni=
t-growth=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1999   =
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_ioctl.c
--- freebsd32_capability.o ---
ctfconvert -L VERSION -g freebsd32_capability.o
--- freebsd32_misc.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.freebsd32_misc.o -MTfreebsd32_misc.o -mcmodel=3Dke=
rnel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind=
-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundan=
t-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer=
-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -=
Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-e=
rror=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darra=
y-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-c=
ompare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Dov=
erflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=
=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=
=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-co=
mpare  -fno-common -fms-extensions -finline-limit=3D8000 --param inline-uni=
t-growth=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1999   =
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_misc.c
--- scsi_enc_ses.o ---
ctfconvert -L VERSION -g scsi_enc_ses.o
--- freebsd32_ioctl.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/f=
reebsd32_ioctl.c:54:0:
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_ioctl.c: In f=
unction 'freebsd32_ioctl_md':
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32.h:39:40: warn=
ing: iteration 96 invokes undefined behavior [-Waggressive-loop-optimizatio=
ns]
 #define CP(src,dst,fld) do { (dst).fld =3D (src).fld; } while (0)
                                        =20
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_ioctl.c:132:5=
: note: in expansion of macro 'CP'
     CP(mdv, md32, md_pad[i]);
     ^~
/builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_ioctl.c:131:4=
: note: within this loop
    for (i =3D 0; i < MDNPAD; i++)
    ^~~
--- freebsd32_syscalls.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.freebsd32_syscalls.o -MTfreebsd32_syscalls.o -mcmo=
del=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronou=
s-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -W=
redundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -=
Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-exte=
nsions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragma=
s -Wno-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-erro=
r=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=
=3Denum-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-e=
rror=3Doverflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -W=
no-error=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -Wno=
-error=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautologi=
cal-compare  -fno-common -fms-extensions -finline-limit=3D8000 --param inli=
ne-unit-growth=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1=
999   /builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_syscall=
s.c
ctfconvert -L VERSION -g freebsd32_syscalls.o
--- freebsd32_sysent.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.freebsd32_sysent.o -MTfreebsd32_sysent.o -mcmodel=
=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-u=
nwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wred=
undant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototypes -Wpo=
inter-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensi=
ons -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -=
Wno-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-error=
=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=
=3Denum-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-e=
rror=3Doverflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow -W=
no-error=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -Wno=
-error=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautologi=
cal-compare  -fno-common -fms-extensions -finline-limit=3D8000 --param inli=
ne-unit-growth=3D100 --param large-function-growth=3D1000  -std=3Diso9899:1=
999   /builds/FreeBSD_HEAD_amd64_gcc/sys/compat/freebsd32/freebsd32_sysent.=
c
--- freebsd32_ioctl.o ---
ctfconvert -L VERSION -g freebsd32_ioctl.o
--- ck_array.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.ck_array.o -MTck_array.o -mcmodel=3Dkernel -mno-re=
d-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffr=
eestanding -fwrapv -fstack-protector -gdwarf-2 -Wall -Wredundant-decls -Wne=
sted-externs -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Winl=
ine -Wcast-qual -Wundef -Wno-pointer-sign -fformat-extensions -Wmissing-inc=
lude-dirs -fdiagnostics-show-option -Wno-unknown-pragmas -Wno-error=3Daddre=
ss -Wno-error=3Daggressive-loop-optimizations -Wno-error=3Darray-bounds -Wn=
o-error=3Dattributes -Wno-error=3Dcast-qual -Wno-error=3Denum-compare -Wno-=
error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wno-error=3Doverflow -Wno-=
error=3Dsequence-point -Wno-error=3Dstrict-overflow -Wno-error=3Dunused-but=
-set-variable -Wno-error=3Dmisleading-indentation -Wno-error=3Dnonnull-comp=
are -Wno-error=3Dshift-overflow -Wno-error=3Dtautological-compare  -fno-com=
mon -fms-extensions -finline-limit=3D8000 --param inline-unit-growth=3D100 =
--param large-function-growth=3D1000  -std=3Diso9899:1999   /builds/FreeBSD=
_HEAD_amd64_gcc/sys/contrib/ck/src/ck_array.c -I/builds/FreeBSD_HEAD_amd64_=
gcc/sys/contrib/ck/include
--- scsi_sa.o ---
ctfconvert -L VERSION -g scsi_sa.o
--- ck_barrier_centralized.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.ck_barrier_centralized.o -MTck_barrier_centralized=
.o -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asy=
nchronous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prot=
otypes -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -ffor=
mat-extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknow=
n-pragmas -Wno-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -=
Wno-error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wn=
o-error=3Denum-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized=
 -Wno-error=3Doverflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-over=
flow -Wno-error=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentati=
on -Wno-error=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dta=
utological-compare  -fno-common -fms-extensions -finline-limit=3D8000 --par=
am inline-unit-growth=3D100 --param large-function-growth=3D1000  -std=3Dis=
o9899:1999   /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/src/ck_barrier_c=
entralized.c -I/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include
--- freebsd32_sysent.o ---
ctfconvert -L VERSION -g freebsd32_sysent.o
--- ck_barrier_combining.o ---
/usr/local/bin/x86_64-unknown-freebsd10.1-gcc -isystem /builds/FreeBSD_HEAD=
_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/include -L/builds/Free=
BSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib -B/builds/=
FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp/usr/lib --sysr=
oot=3D/builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD_amd64_gcc/tmp =
-B/usr/local/x86_64-freebsd/bin/ -c -O2 -frename-registers -pipe -fno-stric=
t-aliasing  -g -nostdinc  -I. -I/builds/FreeBSD_HEAD_amd64_gcc/sys -I/build=
s/FreeBSD_HEAD_amd64_gcc/sys/contrib/libfdt -D_KERNEL -DHAVE_KERNEL_OPTION_=
HEADERS -include opt_global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame=
-pointer -MD  -MF.depend.ck_barrier_combining.o -MTck_barrier_combining.o -=
mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-asynchr=
onous-unwind-tables -ffreestanding -fwrapv -fstack-protector -gdwarf-2 -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes -Wmissing-prototyp=
es -Wpointer-arith -Winline -Wcast-qual -Wundef -Wno-pointer-sign -fformat-=
extensions -Wmissing-include-dirs -fdiagnostics-show-option -Wno-unknown-pr=
agmas -Wno-error=3Daddress -Wno-error=3Daggressive-loop-optimizations -Wno-=
error=3Darray-bounds -Wno-error=3Dattributes -Wno-error=3Dcast-qual -Wno-er=
ror=3Denum-compare -Wno-error=3Dinline -Wno-error=3Dmaybe-uninitialized -Wn=
o-error=3Doverflow -Wno-error=3Dsequence-point -Wno-error=3Dstrict-overflow=
 -Wno-error=3Dunused-but-set-variable -Wno-error=3Dmisleading-indentation -=
Wno-error=3Dnonnull-compare -Wno-error=3Dshift-overflow -Wno-error=3Dtautol=
ogical-compare  -fno-common -fms-extensions -finline-limit=3D8000 --param i=
nline-unit-growth=3D100 --param large-function-growth=3D1000  -std=3Diso989=
9:1999   /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/src/ck_barrier_combi=
ning.c -I/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include
--- ck_barrier_centralized.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_pr.h:39:0,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/spinlock/anderson.h:33,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_spinlock.h:30,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_barrier.h:31,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/src/ck_=
barrier_centralized.c:28:
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h: I=
n function 'ck_pr_fas_double':
--- ck_array.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_pr.h:39:0,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_array.h:33,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/src/ck_=
array.c:28:
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h: I=
n function 'ck_pr_fas_double':
--- ck_barrier_combining.o ---
In file included from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_pr.h:39:0,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/spinlock/anderson.h:33,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_spinlock.h:30,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include=
/ck_barrier.h:31,
                 from /builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/src/ck_=
barrier_combining.c:28:
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h: I=
n function 'ck_pr_fas_double':
--- ck_barrier_centralized.o ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h:13=
5:1: error: SSE register return with SSE disabled
 CK_PR_FAS_S(double, double, "xchgq")
 ^~~~~~~~~~~
--- ck_array.o ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h:13=
5:1: error: SSE register return with SSE disabled
 CK_PR_FAS_S(double, double, "xchgq")
 ^~~~~~~~~~~
--- ck_barrier_combining.o ---
/builds/FreeBSD_HEAD_amd64_gcc/sys/contrib/ck/include/gcc/x86_64/ck_pr.h:13=
5:1: error: SSE register return with SSE disabled
 CK_PR_FAS_S(double, double, "xchgq")
 ^~~~~~~~~~~
--- ck_array.o ---
*** [ck_array.o] Error code 1

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD=
_amd64_gcc/sys/GENERIC
--- ck_barrier_centralized.o ---
*** [ck_barrier_centralized.o] Error code 1

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD=
_amd64_gcc/sys/GENERIC
--- ck_barrier_combining.o ---
*** [ck_barrier_combining.o] Error code 1

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD=
_amd64_gcc/sys/GENERIC
--- freebsd32_misc.o ---
ctfconvert -L VERSION -g freebsd32_misc.o
3 errors

bmake[2]: stopped in /builds/FreeBSD_HEAD_amd64_gcc/obj/builds/FreeBSD_HEAD=
_amd64_gcc/sys/GENERIC
*** [buildkernel] Error code 2

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

bmake[1]: stopped in /builds/FreeBSD_HEAD_amd64_gcc
*** [buildkernel] Error code 2

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
1 error

make: stopped in /builds/FreeBSD_HEAD_amd64_gcc
Build step 'Execute shell' marked build as failure
[WARNINGS] Skipping publisher since build result is FAILURE
IRC notifier plugin: Sending notification to: #freebsd-commits
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Thu Dec 29 15:24:20 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 07241C96133;
 Thu, 29 Dec 2016 15:24:20 +0000 (UTC)
 (envelope-from subbsd@gmail.com)
Received: from mail-it0-x244.google.com (mail-it0-x244.google.com
 [IPv6:2607:f8b0:4001:c0b::244])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id C6C951223;
 Thu, 29 Dec 2016 15:24:19 +0000 (UTC)
 (envelope-from subbsd@gmail.com)
Received: by mail-it0-x244.google.com with SMTP id n68so39104119itn.3;
 Thu, 29 Dec 2016 07:24:19 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=mime-version:in-reply-to:references:from:date:message-id:subject:to
 :cc; bh=9yiha+EtwsTah6zQQpUp0A+IPdivB55grb1yoPbx4tU=;
 b=nK4sS2hWns3ejsIfooKV4W8vLy4B1PB/6gCB55ieTn/Hv+UQLdwcaAH8bHArq2STEB
 e7BUonxqusRRazMpAPkJmRPuxthD1j3+36r+GsxkY5uEwFNZl423xABp7tEOMfgFYkJS
 0LQ+NEcPjSpAn5TtSKDT0l6qUcssGUNSkL/z1YFh63zC5NbSxo/SGIY4X33Zs3E4HZx/
 ztZH23FB9b9FW/F5iIkBdo3vclNZ6NqWHgWIO/G6csQRWkYd7JldmX6jqljQHrUsfnEm
 nAgb7hYgyf8bxQW/stqm90oH0P1SdfchgYfn6R+l+fGqnSnshcM2qEu7kYNjYKVCYbLP
 QiZQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:mime-version:in-reply-to:references:from:date
 :message-id:subject:to:cc;
 bh=9yiha+EtwsTah6zQQpUp0A+IPdivB55grb1yoPbx4tU=;
 b=KKfusPrPhUb2Eq9W1pnGqOMCtChT9orGT+1gcLNwbTVLFVtzSfgbxaL73L1cGObCjn
 G0LGKta8J2LV/PKFQIMQexuYt+pL8UUPU9v3TAq1JiCkFGDp5HuHbrw1FOKHlg+bXSd8
 OUKqyOYw7AyI0zXz69XWUad9Pe/rk4gaeuwxNsFPKERV+L8d+3yZc58kFsGN4uXLmu0I
 fNPXplKKPAXk1gKPFRxPe1bRn6pAPM+Or+6YqqzE+hET+ZTwl1hgH2TErIxh1g4mBU5i
 8ZzmTK4Blna7It/GYZyJVuvv6wsXDJ2i/ExmS+pwtTjLQur0+cPgtIQFqm5OIN4HYVw4
 IJcA==
X-Gm-Message-State: AIkVDXJriLQ9aDwLlZhaPZSu9oC4R9221ew0tiy+3TGB6zVmG5tQpepIr7rj0TUUFbSx8TVVcOweZ4j/nj7+Kg==
X-Received: by 10.36.181.83 with SMTP id j19mr36015933iti.13.1483025059290;
 Thu, 29 Dec 2016 07:24:19 -0800 (PST)
MIME-Version: 1.0
Received: by 10.79.0.165 with HTTP; Thu, 29 Dec 2016 07:24:18 -0800 (PST)
In-Reply-To: <20161227153121.GB37153@zxy.spb.ru>
References: <CAFt_eMqMd_fB_MFWezkHdrt_UCWqXbc52L2Bh-02hm3a=wF0FA@mail.gmail.com>
 <20161227153121.GB37153@zxy.spb.ru>
From: Subbsd <subbsd@gmail.com>
Date: Thu, 29 Dec 2016 18:24:18 +0300
Message-ID: <CAFt_eMrB4+RbbRfiZ8BXT5LF_8o0+ix3mavmr3Cg4C-iXfwj8Q@mail.gmail.com>
Subject: Re: Mozilla firefox freezes/zombie on FreeBSD current
To: Slawa Olhovchenkov <slw@zxy.spb.ru>
Cc: freebsd-gecko@freebsd.org, 
 freebsd-current Current <freebsd-current@freebsd.org>
Content-Type: text/plain; charset=UTF-8
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 15:24:20 -0000

On Tue, Dec 27, 2016 at 6:31 PM, Slawa Olhovchenkov <slw@zxy.spb.ru> wrote:
> On Mon, Dec 26, 2016 at 10:29:33PM +0300, Subbsd wrote:
>
>> Hi,
>>
>> On recent FreeBSD version (tested on two host: one from
>> svn://svn.freebsd.org/base/head ( r310507 now) and second from
>> https://github.com/FreeBSDDesktop/freebsd-base-graphics.git /
>> drm-next-4.7 ) and latest firefox ( firefox-50.1.0_4,1 ) I often get
>> into a situation where firefox is hands.
>
> What about downgrade to ff-48?

Sorry for delay. Not sure but it is a fresh error so far as I
regularly update packages ( including firefox ) and FreeBSD revision.
Patch from https://lists.freebsd.org/pipermail/freebsd-current/2016-December/064254.html
fix this behavior on both my system ( drm-next and master branch ),
thanks to Konstantin!

From owner-freebsd-current@freebsd.org  Thu Dec 29 16:20:04 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 98763C96DE5;
 Thu, 29 Dec 2016 16:20:04 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 8C04D1C7E;
 Thu, 29 Dec 2016 16:20:04 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 78CB64A8;
 Thu, 29 Dec 2016 16:20:04 +0000 (UTC)
Date: Thu, 29 Dec 2016 16:20:03 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, jmcneill@FreeBSD.org, dim@FreeBSD.org, 
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <1657611576.142.1483028404502.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4512 - Failure
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 16:20:04 -0000

FreeBSD_HEAD_i386 - Build #4512 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/cha=
nges
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4512/cons=
ole

Change summaries:

310778 by mav:
Improve use of I/O's private area.

 - Since I/Os are allocates from per-port pools, make allocations store
pointer to CTL softc there, and use it where needed instead of global.
 - Created bunch of helper macros to access LUN, port and CTL softc.

MFC after:=09 2 weeks

310777 by jmcneill:
Add support for audio on I2S based DesignWare HDMI controllers.

Relnotes:=09yes

310776 by jmcneill:
The JZ4780 I2S can feed either the internal audio codec or the HDMI
transmitter, but not both at the same time. This patch:

 - Adds a dev.pcm.0.internal_codec sysctl node for selecting between
   internal and external codec
 - Changes playback sample rate from 96 kHz to 48 kHz for HDMI compatibilit=
y
 - Enables i2s clock on codec access

Reviewed by:=09=09br
Differential Revision:=09https://reviews.freebsd.org/D8960

310775 by dim:
Move llvm-objdump from CLANG_EXTRAS to installed by default

We currently install three tools from binutils 2.17.50: as, ld, and
objdump. Work is underway to migrate to a permissively-licensed
tool-chain, with one goal being the retirement of binutils 2.17.50.

LLVM's llvm-objdump is intended to be compatible with GNU objdump
although it is currently missing some options and may have formatting
differences. Enable it by default for testing and further investigation.
It may later be changed to install as /usr/bin/objdump, it becomes a
fully viable replacement.

Reviewed by:=09emaste
Differential Revision:=09https://reviews.freebsd.org/D8879



The end of the build log:

[...truncated 129456 lines...]
--- test_read_format_cpio_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_filename.o -MTtest_r=
ead_format_cpio_filename.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_cpio_filename.c -o test_read_format_cpio_filename.o
--- test_read_format_cpio_odc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_odc.o -MTtest_read_f=
ormat_cpio_odc.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_odc=
.c -o test_read_format_cpio_odc.o
--- all_subdir_usr.sbin ---
--- mntfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.mntfs.o -MTmntfs.o -std=3Dgnu99 -fstack-protector-strong -Wsyst=
em-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -=
Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-=
parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-=
local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno=
-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/mntfs.c -o mn=
tfs.o
--- all_subdir_lib ---
--- test_read_format_cpio_svr4_gzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip.o -MTtest_=
read_format_cpio_svr4_gzip.o -std=3Dgnu99 -fstack-protector-strong    -Qunu=
sed-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_for=
mat_cpio_svr4_gzip.c -o test_read_format_cpio_svr4_gzip.o
--- test_read_format_cpio_svr4c_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4c_Z.o -MTtest_re=
ad_format_cpio_svr4c_Z.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-=
arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_=
cpio_svr4c_Z.c -o test_read_format_cpio_svr4c_Z.o
--- test_read_format_cpio_svr4_bzip2_rpm.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_bzip2_rpm.o -MT=
test_read_format_cpio_svr4_bzip2_rpm.o -std=3Dgnu99 -fstack-protector-stron=
g    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/tes=
t_read_format_cpio_svr4_bzip2_rpm.c -o test_read_format_cpio_svr4_bzip2_rpm=
.o
--- all_subdir_usr.sbin ---
--- nfs_prot_svc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.nfs_prot_svc.o -MTnfs_prot_svc.o -std=3Dgnu99 -fstack-protector=
-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-str=
ing-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unus=
ed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversio=
n -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-=
parameter -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd=
/nfs_prot_svc.c -o nfs_prot_svc.o
--- all_subdir_lib ---
--- test_read_format_cpio_svr4_gzip_rpm.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip_rpm.o -MTt=
est_read_format_cpio_svr4_gzip_rpm.o -std=3Dgnu99 -fstack-protector-strong =
   -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_=
read_format_cpio_svr4_gzip_rpm.c -o test_read_format_cpio_svr4_gzip_rpm.o
--- test_read_format_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_empty.o -MTtest_read_form=
at_empty.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c =
/usr/src/contrib/libarchive/libarchive/test/test_read_format_empty.c -o tes=
t_read_format_empty.o
--- all_subdir_usr.sbin ---
--- nfs_start.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.nfs_start.o -MTnfs_start.o -std=3Dgnu99 -fstack-protector-stron=
g -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-pl=
us-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-val=
ue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno=
-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parame=
ter -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/nfs_s=
tart.c -o nfs_start.o
--- all_subdir_lib ---
--- test_read_format_gtar_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_gtar_filename.o -MTtest_r=
ead_format_gtar_filename.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_gtar_filename.c -o test_read_format_gtar_filename.o
--- all_subdir_usr.sbin ---
--- nfs_subr.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.nfs_subr.o -MTnfs_subr.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/nfs_sub=
r.c -o nfs_subr.o
--- all_subdir_lib ---
--- test_read_format_gtar_gz.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_gtar_gz.o -MTtest_read_fo=
rmat_gtar_gz.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments =
 -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_gz.c =
-o test_read_format_gtar_gz.o
--- test_read_format_gtar_lzma.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_gtar_lzma.o -MTtest_read_=
format_gtar_lzma.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argume=
nts  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_l=
zma.c -o test_read_format_gtar_lzma.o
--- test_read_format_gtar_sparse.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_gtar_sparse.o -MTtest_rea=
d_format_gtar_sparse.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gt=
ar_sparse.c -o test_read_format_gtar_sparse.o
--- test_read_format_gtar_sparse_skip_entry.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_gtar_sparse_skip_entry.o =
-MTtest_read_format_gtar_sparse_skip_entry.o -std=3Dgnu99 -fstack-protector=
-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/te=
st/test_read_format_gtar_sparse_skip_entry.c -o test_read_format_gtar_spars=
e_skip_entry.o
--- test_read_format_iso_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_iso_Z.o -MTtest_read_form=
at_iso_Z.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c =
/usr/src/contrib/libarchive/libarchive/test/test_read_format_iso_Z.c -o tes=
t_read_format_iso_Z.o
--- test_read_format_iso_multi_extent.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_iso_multi_extent.o -MTtes=
t_read_format_iso_multi_extent.o -std=3Dgnu99 -fstack-protector-strong    -=
Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read=
_format_iso_multi_extent.c -o test_read_format_iso_multi_extent.o
--- test_read_format_iso_xorriso.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_iso_xorriso.o -MTtest_rea=
d_format_iso_xorriso.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_is=
o_xorriso.c -o test_read_format_iso_xorriso.o
--- all_subdir_usr.sbin ---
--- ops_cdfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_cdfs.o -MTops_cdfs.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_cdf=
s.c -o ops_cdfs.o
--- all_subdir_lib ---
--- test_read_format_isorr_rr_moved.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isorr_rr_moved.o -MTtest_=
read_format_isorr_rr_moved.o -std=3Dgnu99 -fstack-protector-strong    -Qunu=
sed-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_for=
mat_isorr_rr_moved.c -o test_read_format_isorr_rr_moved.o
--- all_subdir_usr.sbin ---
--- ops_lustre.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_lustre.o -MTops_lustre.o -std=3Dgnu99 -fstack-protector-str=
ong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-=
plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v=
alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W=
no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para=
meter -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops=
_lustre.c -o ops_lustre.o
--- ops_mfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_mfs.o -MTops_mfs.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_mfs.c=
 -o ops_mfs.o
--- all_subdir_lib ---
--- test_read_format_isojoliet_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_bz2.o -MTtest_r=
ead_format_isojoliet_bz2.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_isojoliet_bz2.c -o test_read_format_isojoliet_bz2.o
--- all_subdir_usr.sbin ---
--- ops_nfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_nfs.o -MTops_nfs.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_nfs.c=
 -o ops_nfs.o
--- all_subdir_lib ---
--- test_read_format_isojoliet_long.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_long.o -MTtest_=
read_format_isojoliet_long.o -std=3Dgnu99 -fstack-protector-strong    -Qunu=
sed-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_for=
mat_isojoliet_long.c -o test_read_format_isojoliet_long.o
--- test_read_format_isojoliet_rr.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_rr.o -MTtest_re=
ad_format_isojoliet_rr.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-=
arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_=
isojoliet_rr.c -o test_read_format_isojoliet_rr.o
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-objdump ---
--- llvm-objdump.full ---
c++ -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/us=
r/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm -I=
/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX -=
DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DEFA=
ULT_TARGET_TRIPLE=3D\"i386-unknown-freebsd12.0\" -DLLVM_HOST_TRIPLE=3D\"i38=
6-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=3D\"\" -g -fstack-protector-stron=
g -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-taut=
ological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-fu=
nction -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-swit=
ch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -st=
d=3Dc++11 -fno-exceptions -fno-rtti -stdlib=3Dlibc++ -Wno-c++11-extensions =
 -o llvm-objdump.full  COFFDump.o ELFDump.o MachODump.o llvm-objdump.o /usr=
/obj/usr/src/lib/clang/libllvm/libllvm.a  -lz  -lncursesw  -lpthread
--- all_subdir_lib ---
--- test_read_format_isojoliet_versioned.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_versioned.o -MT=
test_read_format_isojoliet_versioned.o -std=3Dgnu99 -fstack-protector-stron=
g    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/tes=
t_read_format_isojoliet_versioned.c -o test_read_format_isojoliet_versioned=
.o
--- all_subdir_usr.sbin ---
--- ops_nfs3.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_nfs3.o -MTops_nfs3.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_nfs=
3.c -o ops_nfs3.o
--- all_subdir_lib ---
--- test_read_format_isorr_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isorr_bz2.o -MTtest_read_=
format_isorr_bz2.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argume=
nts  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_=
bz2.c -o test_read_format_isorr_bz2.o
--- all_subdir_usr.sbin ---
--- ops_nfs4.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_nfs4.o -MTops_nfs4.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_nfs=
4.c -o ops_nfs4.o
--- all_subdir_lib ---
--- test_read_format_isorr_ce.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isorr_ce.o -MTtest_read_f=
ormat_isorr_ce.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_ce=
.c -o test_read_format_isorr_ce.o
--- all_subdir_usr.bin ---
MachODump.o: In function `DisassembleMachO(llvm::StringRef, llvm::object::M=
achOObjectFile*, llvm::StringRef, llvm::StringRef)':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x177c4): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x17f00): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
MachODump.o: In function `_ZNK4llvm6Target18createMCSymbolizerENS_9StringRe=
fEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_1=
6MCRelocationInfoENSD_14default_deleteISF_EEEE':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text._ZNK4llvm6Tar=
get18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_=
9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteI=
SF_EEEE[_ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFP=
KcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoE=
NSD_14default_deleteISF_EEEE]+0x22): undefined reference to `_ZN4llvm18crea=
teMCSymbolizerERKNS_6TripleEPFiPvyyyiS3_EPFPKcS3_yPyyPS7_ES3_PNS_9MCContext=
EONSt3__110unique_ptrINS_16MCRelocationInfoENSE_14default_deleteISG_EEEE'
llvm-objdump.o: In function `main':
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f2f): u=
ndefined reference to `LLVMInitializeAArch64Disassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f39): u=
ndefined reference to `LLVMInitializeMipsDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f43): u=
ndefined reference to `LLVMInitializeSparcDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f48): u=
ndefined reference to `LLVMInitializeX86Disassembler'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o): In functio=
n `(anonymous namespace)::PPCDisassembler::~PPCDisassembler()':
/usr/src/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp:(=
.text+0xbb): undefined reference to `llvm::MCDisassembler::~MCDisassembler(=
)'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o):(.rodata+0x=
484): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ARMDisassembler::~ARMDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xcb): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned int>(ll=
vm::MCDisassembler::DecodeStatus, unsigned int, unsigned int, llvm::MCInst&=
, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xab72): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRef=
erenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xad74): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb029): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb0f4): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb233): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeArmMOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long lon=
g, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1ac9f): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeAddrModeImm12Operand(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1b4fb): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeBranchImmInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c451): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c4e2): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumbBLXOffset(llvm::MCInst&, unsigned int, unsigned long long, vo=
id const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x219d3): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeT2MOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long long=
, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22689): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumb2BCCInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22b63): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):/usr/src/co=
ntrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22d3b):=
 more undefined references to `llvm::MCDisassembler::tryAddingSymbolicOpera=
nd(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, =
unsigned long long) const' follow
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255c9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255f9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned short>(=
llvm::MCDisassembler::DecodeStatus, unsigned int, unsigned short, llvm::MCI=
nst&, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27e8a): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27fec): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28db3): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28eb1): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):(.rodata+0x=
2cf4): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
--- all_subdir_usr.sbin ---
--- ops_nullfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_nullfs.o -MTops_nullfs.o -std=3Dgnu99 -fstack-protector-str=
ong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-=
plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v=
alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W=
no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para=
meter -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops=
_nullfs.c -o ops_nullfs.o
--- all_subdir_lib ---
--- test_read_format_isorr_new_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_isorr_new_bz2.o -MTtest_r=
ead_format_isorr_new_bz2.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_isorr_new_bz2.c -o test_read_format_isorr_new_bz2.o
--- all_subdir_usr.sbin ---
--- ops_pcfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.ops_pcfs.o -MTops_pcfs.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/ops_pcf=
s.c -o ops_pcfs.o
--- all_subdir_usr.bin ---
c++: error: linker command failed with exit code 1 (use -v to see invocatio=
n)
*** [llvm-objdump.full] Error code 1

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
1 error

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
*** [all_subdir_usr.bin/clang/llvm-objdump] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
--- all_subdir_lib ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /usr/src/lib/libarchive/tests
*** [libarchive_test] Error code 2

bmake[5]: stopped in /usr/src/lib/libarchive/tests
1 error

bmake[5]: stopped in /usr/src/lib/libarchive/tests
*** [all_subdir_lib/libarchive/tests] Error code 2

bmake[4]: stopped in /usr/src/lib/libarchive
1 error

bmake[4]: stopped in /usr/src/lib/libarchive
*** [all_subdir_lib/libarchive] Error code 2

bmake[3]: stopped in /usr/src/lib
1 error

bmake[3]: stopped in /usr/src/lib
*** [all_subdir_lib] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.sbin ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.sbin/amd/amd
*** [all_subdir_usr.sbin/amd/amd] Error code 2

bmake[4]: stopped in /usr/src/usr.sbin/amd
1 error

bmake[4]: stopped in /usr/src/usr.sbin/amd
*** [all_subdir_usr.sbin/amd] Error code 2

bmake[3]: stopped in /usr/src/usr.sbin
1 error

bmake[3]: stopped in /usr/src/usr.sbin
*** [all_subdir_usr.sbin] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-tblgen ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-tblgen
*** [all_subdir_usr.bin/clang/llvm-tblgen] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
2 errors

bmake[4]: stopped in /usr/src/usr.bin/clang
*** [all_subdir_usr.bin/clang] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
1 error

bmake[3]: stopped in /usr/src/usr.bin
*** [all_subdir_usr.bin] Error code 2

bmake[2]: stopped in /usr/src
3 errors

bmake[2]: stopped in /usr/src
*** [everything] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson8578247250611973072.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::103:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Thu Dec 29 16:30:06 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id E5827C9518F;
 Thu, 29 Dec 2016 16:30:06 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.19])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 5EF4C11DC;
 Thu, 29 Dec 2016 16:30:05 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([85.178.51.182]) by mail.gmx.com
 (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0LfCX2-1ctiIf096W-00olxd; Thu, 29 Dec 2016 17:29:57 +0100
Date: Thu, 29 Dec 2016 17:29:49 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: Dimitry Andric <dim@FreeBSD.org>
Cc: "O. Hartmann" <ohartmann@walstatt.org>, FreeBSD CURRENT
 <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org>,
 Ed Maste <emaste@freebsd.org>
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
Message-ID: <20161229172949.48792b29@thor.walstatt.dynvpn.de>
In-Reply-To: <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/FQZM9f28OGiPQLlAC9HOXt="; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:/WmAPBzqjBTSpmicoytyoCU86IvXv/ZfkSV0JbRBrVvxoAbL+V2
 2cVPuOPZFocAe1jGEt4IWZBqIxT96vLeRuTbaM9akpVZfbmLMj0AN0qaeefTckXLzofnQRH
 3Zsn+PfMlsi33ReKUbyzuEg2IdPpmz2eD4tGhdNGzJ9FtanuX42poFGCS8V8+A+Pwnw6DfC
 ozaUtiewc9MaoycX6hEjg==
X-UI-Out-Filterresults: notjunk:1;V01:K0:9Nd6s85hcPw=:eHgQ4VqYK1EyWnc9WaVPXv
 vfnkTg366egmYZ+aA+/6vKlSVTiunvRbpkmk1zLCs+nccB30L9GlkOyu7zXFaNAP06x83BcdU
 l5IB4enLDCbaYDhkFayiV4ngbmQImccEqSL0iHxWQMHicp+uCmGapVIpCHmh/hMAhGaepxrQX
 Fofta3gd+cTJvIqYE4iw8Ps+aZQnAbQe1WzLm6m+xZxdUGw/5xqqtva4Xkdy7xysdsSuDg3mV
 S2QdtRBDVCAv5y2j9Ja9Wfk8yyrkvVCkmOUbNiyOua+qy9oyzKZK4prfoZq6CJTnJDgczwG5m
 rlowNoTcWxpx/m+1xHRmSjgVonzvDtZM8oCr1XQWCFBnohe24erbH5xZGwInNAQ4RiQt6gZG3
 QhItz4MlSwZ0+K/N/zTLIP+m7XxkdrnZsDe2FPotq//r/sorxg5HcDMRDD3oTZFc4puq27i4W
 BIVQjVeLKoaMb6PDWvLfBf74PP4g9V68iBEgcwxg9dJzdzFgX4wP1ILvZUlKEJ0M76Z+TAQuG
 D0S5bt5ZEfz436bf1C00iL8o9+95NkJ0pvqCHpapMl7J4+/XUSXIOOdwslChd6YSX345CiFhk
 DjdWs4P1tSfod+3dnqNmObw+22fCez3UJkA3Gjqc44MjUDH/vCFLIDWm4lEJ6fOiLpV+TlVTH
 eozt61a3OihQn1TgnDdYgnvMqFxZo/hRPHJ/oEt+8iZKn1hQpcbfD8cSk8B3xxKtcU/ENd26n
 89TCtbI3SpdhuatB4unsSt7P1kExt0Zb/eSIPjci5+GJX3Ivc404bizKT5A=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 16:30:07 -0000

--Sig_/FQZM9f28OGiPQLlAC9HOXt=
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Am Wed, 7 Dec 2016 23:31:01 +0100
Dimitry Andric <dim@FreeBSD.org> schrieb:

> On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org> wrote:
> >=20
> > I try my first steps in cross compiling ports with poudriere and theref=
ore I try to
> > setup an appropriate jail and QEMU environment.
> >=20
> > Well, I'm failing at the jail setup due to the non-exitence of any suit=
able QEMU
> > environment and for that I tried to figure out to find some proper HOWT=
O.
> > Searching via google ave some hints, but in questions which QEMU from p=
orts should be
> > used, all leave me alone, so I tried
> >=20
> > emulators/qemu
> > emulators/qemu-devel
> > emulators/qemu-static
> >=20
> > emulators/qemu is known for me to fail since months and the days of 11-=
CURRENT, there
> > is a compiler error spit out with clang 3.8 and now 3.9. The very same =
for qemu-devel
> > (both ports used with standard options, no extras). See also Bug 214873
> > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214873) and Bug 21=
5100
> > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215100). =20
>=20
> I couldn't reproduce the compilation errors, it builds fine for me until
> the link phase.

Well, I face this in poudriere on the most recent 12-CURRENT, too as well a=
s 12-CURRENT
buildworld today.

On the host I'd like to run qemu for testing aarch64 binaries for a Odroid-=
C2 project, I
use a customized /etc/src.conf - but on poudriere, there is no such customi=
sation but
the failing is identical.

>=20
>=20
> > I tried also emulators/qemu-static, but it also fails compiling on most=
 recent
> > 12-CURRENT (as the others, too, also my poudriere environment, which ha=
s also CURRENT
> > jails) with
> >=20
> > [...]
> > /usr/bin/ld:../config-host.ld:14: syntax error
> > c++: error: linker command failed with exit code 1 (use -v to see invoc=
ation)
> > [...] =20
>=20
> But this I *can* reproduce.  It appears qemu wants to set the text
> segment start address, using the -Ttext-segment=3D0x60000000 option to ld.
>=20
> However, our base ld does not yet support this option, and then the
> configure script tries to patch the default linker script using the
> following construct:
>=20
>       $ld --verbose | sed \
>         -e '1,/=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D/d' \
>         -e '/=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D/,$d' \
>         -e "s/[.] =3D [0-9a-fx]* [+] SIZEOF_HEADERS/. =3D $textseg_addr +=
 SIZEOF_HEADERS/" \
>         -e "s/__executable_start =3D [0-9a-fx]*/__executable_start =3D $t=
extseg_addr/" >
> config-host.ld
>=20
> Unfortunately, it seems to run /usr/local/bin/ld in this case, and this
> results in the following busted linker script line, which cannot be
> parsed:
>=20
>   PROVIDE (__executable_start =3D 0x60000000SEGMENT_START("text-segment",=
 0x08048000)); .
> =3D SEGMENT_START("text-segment", 0x08048000) + SIZEOF_HEADERS;
>=20
> If it would use /usr/bin/ld instead, the patching would succeed, and
> the line would become:
>=20
>   PROVIDE (__executable_start =3D 0x60000000); . =3D 0x60000000 + SIZEOF_=
HEADERS;
>=20
> which is probably what was intended.
>=20
> Probably, the configure script needs to be patched to run base ld,
> or use the same ld invocation for both checking the -Ttext-segment
> option support and patching the linker script.
>=20
> -Dimitry
>=20

Since for now all three QEMU ports are incapacitated, I start to float like=
 a dead man in
the water. I do not know where to start looking for possible sources for the
miscompilations and I'm wondering why others running 12-CURRENT do not see =
the problem. I
tried on different 12-CURRENT systems I have access to and its everwhere th=
e same.
Either, a mysterious configuration issue that finds its way also into poudr=
iere - over
clang 3.8 as well as 3.9.0 and 3.9.1 (I think it is 3.9.1 the most recent o=
ne I used).

Any hope?


--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/FQZM9f28OGiPQLlAC9HOXt=
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGU5/QAKCRDS528fyFhY
lMAqAf0S+TfEDtlRmxuaPmPO2yG3Qo5gI/x2I3lPZLgM00PcJaGjNoPiVvPwbrLh
xk7DF/qGuDSH064VZhbQT4S/fheJAf9W/YRpXHpkg7wpdb/B+5198H0re6ZJ06Ef
LS75hBF2ZfkUbb8VnbaUc2GWivPDCQylC1ReaouS5DPjY2NBUGFc
=N6fY
-----END PGP SIGNATURE-----

--Sig_/FQZM9f28OGiPQLlAC9HOXt=--

From owner-freebsd-current@freebsd.org  Thu Dec 29 18:20:16 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5C04BC96D06;
 Thu, 29 Dec 2016 18:20:16 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 4F16A1CBA;
 Thu, 29 Dec 2016 18:20:16 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id A1EF74AC;
 Thu, 29 Dec 2016 18:20:16 +0000 (UTC)
Date: Thu, 29 Dec 2016 18:20:14 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mjg@FreeBSD.org, jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <810991626.146.1483035616669.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <1657611576.142.1483028404502.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <1657611576.142.1483028404502.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4513 - Still Failing
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 18:20:16 -0000

FreeBSD_HEAD_i386 - Build #4513 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/cha=
nges
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4513/cons=
ole

Change summaries:

310779 by mjg:
cache: sprinkle __predict_false



The end of the build log:

[...truncated 130035 lines...]
--- support.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.support.o -M=
Tsupport.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -=
Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswi=
tch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wn=
ested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -W=
missing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-p=
lus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib=
/blacklist/bin/support.c -o support.o
--- all_subdir_lib ---
--- test_write_format_mtree_no_separator.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_mtree_no_separator.o -MT=
test_write_format_mtree_no_separator.o -std=3Dgnu99 -fstack-protector-stron=
g    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/tes=
t_write_format_mtree_no_separator.c -o test_write_format_mtree_no_separator=
.o
--- all_subdir_usr.sbin ---
--- internal.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.internal.o -=
MTinternal.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror=
 -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissi=
ng-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Ws=
witch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -=
Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign =
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string=
-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contr=
ib/blacklist/bin/internal.c -o internal.o
--- sockaddr_snprintf.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.sockaddr_snp=
rintf.o -MTsockaddr_snprintf.o -std=3Dgnu99 -fstack-protector-strong -Wsyst=
em-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-=
prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -=
Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-sub=
scripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition =
-Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empt=
y-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments =
 -c /usr/src/contrib/blacklist/port/sockaddr_snprintf.c -o sockaddr_snprint=
f.o
--- all_subdir_lib ---
--- test_write_format_mtree_quoted_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_mtree_quoted_filename.o =
-MTtest_write_format_mtree_quoted_filename.o -std=3Dgnu99 -fstack-protector=
-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/te=
st/test_write_format_mtree_quoted_filename.c -o test_write_format_mtree_quo=
ted_filename.o
--- test_write_format_pax.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_pax.o -MTtest_write_form=
at_pax.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_write_format_pax.c -o test_w=
rite_format_pax.o
--- all_subdir_usr.sbin ---
--- pidfile.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.pidfile.o -M=
Tpidfile.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -=
Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswi=
tch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wn=
ested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -W=
missing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-p=
lus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib=
/blacklist/port/pidfile.c -o pidfile.o
--- all_subdir_lib ---
--- test_write_format_raw.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_raw.o -MTtest_write_form=
at_raw.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_write_format_raw.c -o test_w=
rite_format_raw.o
--- all_subdir_usr.sbin ---
--- strtoi.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.strtoi.o -MT=
strtoi.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa=
ll -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-p=
rototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitc=
h -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnes=
ted-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmi=
ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu=
s-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib/b=
lacklist/port/strtoi.c -o strtoi.o
--- popenve.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.popenve.o -M=
Tpopenve.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -=
Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswi=
tch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wn=
ested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -W=
missing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-p=
lus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib=
/blacklist/port/popenve.c -o popenve.o
--- all_subdir_lib ---
--- test_write_format_raw_b64.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_raw_b64.o -MTtest_write_=
format_raw_b64.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_raw_b64=
.c -o test_write_format_raw_b64.o
--- test_write_format_shar_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_shar_empty.o -MTtest_wri=
te_format_shar_empty.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_s=
har_empty.c -o test_write_format_shar_empty.o
--- all_subdir_usr.sbin ---
--- blacklistctl.full ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/src/contrib/blacklist/include -I/=
usr/src/contrib/blacklist/port -D_PATH_BLCONTROL=3D\"/usr/libexec/blacklist=
d-helper\" -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H -DHAVE_CLOCK_GETTIM=
E -DHAVE_FGETLN -DHAVE_FPARSELN -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHAVE_ST=
RLCPY -DHAVE_STRUCT_SOCKADDR_SA_LEN -g -std=3Dgnu99 -fstack-protector-stron=
g -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -=
Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcas=
t-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -W=
char-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-def=
inition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -=
Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Qunused-arg=
uments  -L/usr/obj/usr/src/lib/libblacklist -o blacklistctl.full blacklistc=
tl.o conf.o state.o support.o internal.o sockaddr_snprintf.o pidfile.o strt=
oi.o popenve.o   -lblacklist  -lutil
--- blacklistctl.8.gz ---
gzip -cn /usr/src/contrib/blacklist/bin/blacklistctl.8 > blacklistctl.8.gz
--- blacklistctl.debug ---
objcopy --only-keep-debug blacklistctl.full blacklistctl.debug
--- blacklistctl ---
objcopy --strip-debug --add-gnu-debuglink=3Dblacklistctl.debug  blacklistct=
l.full blacklistctl
--- all_subdir_usr.sbin/blacklistd ---
=3D=3D=3D> usr.sbin/blacklistd (all)
--- all_subdir_lib ---
--- test_write_format_tar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_tar.o -MTtest_write_form=
at_tar.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_write_format_tar.c -o test_w=
rite_format_tar.o
--- all_subdir_usr.sbin ---
--- .depend ---
echo blacklistd.full: /usr/obj/usr/src/tmp/usr/lib/libc.a /usr/obj/usr/src/=
tmp/usr/lib/libblacklist.a /usr/obj/usr/src/tmp/usr/lib/libutil.a >> .depen=
d
--- blacklistd.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.blacklistd.o=
 -MTblacklistd.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We=
rror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wm=
issing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings=
 -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winli=
ne -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-s=
ign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-st=
ring-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/c=
ontrib/blacklist/bin/blacklistd.c -o blacklistd.o
--- all_subdir_lib ---
--- test_write_format_tar_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_tar_empty.o -MTtest_writ=
e_format_tar_empty.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argu=
ments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_tar=
_empty.c -o test_write_format_tar_empty.o
--- test_write_format_tar_sparse.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_tar_sparse.o -MTtest_wri=
te_format_tar_sparse.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_t=
ar_sparse.c -o test_write_format_tar_sparse.o
--- all_subdir_usr.sbin ---
--- conf.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.conf.o -MTco=
nf.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-proto=
types -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -W=
shadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-=
externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissin=
g-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-in=
t -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib/black=
list/bin/conf.c -o conf.o
--- all_subdir_lib ---
--- test_write_format_tar_ustar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_tar_ustar.o -MTtest_writ=
e_format_tar_ustar.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argu=
ments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_tar=
_ustar.c -o test_write_format_tar_ustar.o
--- test_write_format_tar_v7tar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_tar_v7tar.o -MTtest_writ=
e_format_tar_v7tar.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argu=
ments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_tar=
_v7tar.c -o test_write_format_tar_v7tar.o
--- all_subdir_usr.sbin ---
--- run.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.run.o -MTrun=
.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn=
o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy=
pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh=
adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex=
terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-=
variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int =
-Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib/blackli=
st/bin/run.c -o run.o
--- all_subdir_lib ---
--- test_write_format_warc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_warc.o -MTtest_write_for=
mat_warc.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c =
/usr/src/contrib/libarchive/libarchive/test/test_write_format_warc.c -o tes=
t_write_format_warc.o
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-objdump ---
--- llvm-objdump.full ---
c++ -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/us=
r/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm -I=
/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX -=
DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DEFA=
ULT_TARGET_TRIPLE=3D\"i386-unknown-freebsd12.0\" -DLLVM_HOST_TRIPLE=3D\"i38=
6-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=3D\"\" -g -fstack-protector-stron=
g -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-taut=
ological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-fu=
nction -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-swit=
ch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -st=
d=3Dc++11 -fno-exceptions -fno-rtti -stdlib=3Dlibc++ -Wno-c++11-extensions =
 -o llvm-objdump.full  COFFDump.o ELFDump.o MachODump.o llvm-objdump.o /usr=
/obj/usr/src/lib/clang/libllvm/libllvm.a  -lz  -lncursesw  -lpthread
--- all_subdir_usr.sbin ---
--- state.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.state.o -MTs=
tate.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall=
 -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-pro=
totypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch =
-Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wneste=
d-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmiss=
ing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-=
int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib/bla=
cklist/bin/state.c -o state.o
--- all_subdir_lib ---
--- test_write_format_warc_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_warc_empty.o -MTtest_wri=
te_format_warc_empty.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_w=
arc_empty.c -o test_write_format_warc_empty.o
--- all_subdir_usr.sbin ---
--- support.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.support.o -M=
Tsupport.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -=
Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswi=
tch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wn=
ested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -W=
missing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-p=
lus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib=
/blacklist/bin/support.c -o support.o
--- all_subdir_lib ---
--- test_write_format_xar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_xar.o -MTtest_write_form=
at_xar.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_write_format_xar.c -o test_w=
rite_format_xar.o
--- all_subdir_usr.sbin ---
--- internal.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.internal.o -=
MTinternal.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror=
 -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissi=
ng-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Ws=
witch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -=
Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign =
-Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string=
-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contr=
ib/blacklist/bin/internal.c -o internal.o
--- sockaddr_snprintf.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.sockaddr_snp=
rintf.o -MTsockaddr_snprintf.o -std=3Dgnu99 -fstack-protector-strong -Wsyst=
em-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-=
prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -=
Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-sub=
scripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition =
-Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empt=
y-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments =
 -c /usr/src/contrib/blacklist/port/sockaddr_snprintf.c -o sockaddr_snprint=
f.o
--- all_subdir_lib ---
--- test_write_format_xar_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_xar_empty.o -MTtest_writ=
e_format_xar_empty.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argu=
ments  -c /usr/src/contrib/libarchive/libarchive/test/test_write_format_xar=
_empty.c -o test_write_format_xar_empty.o
--- all_subdir_usr.bin ---
MachODump.o: In function `DisassembleMachO(llvm::StringRef, llvm::object::M=
achOObjectFile*, llvm::StringRef, llvm::StringRef)':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x177c4): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x17f00): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
MachODump.o: In function `_ZNK4llvm6Target18createMCSymbolizerENS_9StringRe=
fEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_1=
6MCRelocationInfoENSD_14default_deleteISF_EEEE':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text._ZNK4llvm6Tar=
get18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_=
9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteI=
SF_EEEE[_ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFP=
KcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoE=
NSD_14default_deleteISF_EEEE]+0x22): undefined reference to `_ZN4llvm18crea=
teMCSymbolizerERKNS_6TripleEPFiPvyyyiS3_EPFPKcS3_yPyyPS7_ES3_PNS_9MCContext=
EONSt3__110unique_ptrINS_16MCRelocationInfoENSE_14default_deleteISG_EEEE'
llvm-objdump.o: In function `main':
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f2f): u=
ndefined reference to `LLVMInitializeAArch64Disassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f39): u=
ndefined reference to `LLVMInitializeMipsDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f43): u=
ndefined reference to `LLVMInitializeSparcDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f48): u=
ndefined reference to `LLVMInitializeX86Disassembler'
--- all_subdir_lib ---
--- test_write_format_zip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_write_format_zip.o -MTtest_write_form=
at_zip.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_write_format_zip.c -o test_w=
rite_format_zip.o
--- all_subdir_usr.bin ---
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o): In functio=
n `(anonymous namespace)::PPCDisassembler::~PPCDisassembler()':
/usr/src/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp:(=
.text+0xbb): undefined reference to `llvm::MCDisassembler::~MCDisassembler(=
)'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o):(.rodata+0x=
484): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ARMDisassembler::~ARMDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xcb): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned int>(ll=
vm::MCDisassembler::DecodeStatus, unsigned int, unsigned int, llvm::MCInst&=
, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xab72): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRef=
erenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xad74): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb029): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb0f4): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb233): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeArmMOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long lon=
g, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1ac9f): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeAddrModeImm12Operand(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1b4fb): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeBranchImmInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c451): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c4e2): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumbBLXOffset(llvm::MCInst&, unsigned int, unsigned long long, vo=
id const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x219d3): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeT2MOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long long=
, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22689): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumb2BCCInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22b63): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):/usr/src/co=
ntrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22d3b):=
 more undefined references to `llvm::MCDisassembler::tryAddingSymbolicOpera=
nd(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, =
unsigned long long) const' follow
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255c9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255f9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned short>(=
llvm::MCDisassembler::DecodeStatus, unsigned int, unsigned short, llvm::MCI=
nst&, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27e8a): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27fec): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28db3): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28eb1): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):(.rodata+0x=
2cf4): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
--- all_subdir_usr.sbin ---
--- pidfile.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.pidfile.o -M=
Tpidfile.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -=
Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing=
-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswi=
tch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wn=
ested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -W=
missing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-p=
lus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib=
/blacklist/port/pidfile.c -o pidfile.o
--- strtoi.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/contrib/blacklist/include -I=
/usr/src/contrib/blacklist/port  -D_PATH_BLCONTROL=3D\"/usr/libexec/blackli=
std-helper\"  -DHAVE_CONFIG_H -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GE=
TTIME -DHAVE_FGETLN -DHAVE_FPARSELN  -DHAVE_GETPROGNAME -DHAVE_STRLCAT -DHA=
VE_STRLCPY  -DHAVE_STRUCT_SOCKADDR_SA_LEN   -g -MD  -MF.depend.strtoi.o -MT=
strtoi.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wa=
ll -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-p=
rototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitc=
h -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnes=
ted-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmi=
ssing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plu=
s-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/contrib/b=
lacklist/port/strtoi.c -o strtoi.o
--- all_subdir_usr.bin ---
c++: error: linker command failed with exit code 1 (use -v to see invocatio=
n)
*** [llvm-objdump.full] Error code 1

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
1 error

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
*** [all_subdir_usr.bin/clang/llvm-objdump] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
--- all_subdir_usr.sbin ---
A failure has been detected in another branch of the parallel make

bmake[4]: stopped in /usr/src/usr.sbin/blacklistd
*** [all_subdir_usr.sbin/blacklistd] Error code 2

bmake[3]: stopped in /usr/src/usr.sbin
1 error

bmake[3]: stopped in /usr/src/usr.sbin
*** [all_subdir_usr.sbin] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_lib ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /usr/src/lib/libarchive/tests
*** [libarchive_test] Error code 2

bmake[5]: stopped in /usr/src/lib/libarchive/tests
1 error

bmake[5]: stopped in /usr/src/lib/libarchive/tests
*** [all_subdir_lib/libarchive/tests] Error code 2

bmake[4]: stopped in /usr/src/lib/libarchive
1 error

bmake[4]: stopped in /usr/src/lib/libarchive
*** [all_subdir_lib/libarchive] Error code 2

bmake[3]: stopped in /usr/src/lib
1 error

bmake[3]: stopped in /usr/src/lib
*** [all_subdir_lib] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-tblgen ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-tblgen
*** [all_subdir_usr.bin/clang/llvm-tblgen] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
2 errors

bmake[4]: stopped in /usr/src/usr.bin/clang
*** [all_subdir_usr.bin/clang] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
1 error

bmake[3]: stopped in /usr/src/usr.bin
*** [all_subdir_usr.bin] Error code 2

bmake[2]: stopped in /usr/src
3 errors

bmake[2]: stopped in /usr/src
*** [everything] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson7602517003021333607.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::103:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Thu Dec 29 19:26:42 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 83D13C963C5;
 Thu, 29 Dec 2016 19:26:42 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from tensor.andric.com (tensor.andric.com
 [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "tensor.andric.com",
 Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 1A07112C9;
 Thu, 29 Dec 2016 19:26:42 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from [IPv6:2001:7b8:3a7::7d0d:fedb:8b40:bd7f] (unknown
 [IPv6:2001:7b8:3a7:0:7d0d:fedb:8b40:bd7f])
 (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by tensor.andric.com (Postfix) with ESMTPSA id 0BE1118E00;
 Thu, 29 Dec 2016 20:26:39 +0100 (CET)
Content-Type: multipart/signed;
 boundary="Apple-Mail=_7E4B473B-2A78-450A-B2FA-D18E34A4078C";
 protocol="application/pgp-signature"; micalg=pgp-sha1
Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\))
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
From: Dimitry Andric <dim@FreeBSD.org>
In-Reply-To: <20161229172949.48792b29@thor.walstatt.dynvpn.de>
Date: Thu, 29 Dec 2016 20:26:32 +0100
Cc: FreeBSD CURRENT <freebsd-current@freebsd.org>,
 FreeBSD Ports <freebsd-ports@freebsd.org>, Ed Maste <emaste@freebsd.org>
Message-Id: <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
To: "O. Hartmann" <ohartmann@walstatt.org>
X-Mailer: Apple Mail (2.3124)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 19:26:42 -0000


--Apple-Mail=_7E4B473B-2A78-450A-B2FA-D18E34A4078C
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
	charset=us-ascii

On 29 Dec 2016, at 17:29, O. Hartmann <ohartmann@walstatt.org> wrote:
>=20
> Am Wed, 7 Dec 2016 23:31:01 +0100
> Dimitry Andric <dim@FreeBSD.org> schrieb:
>=20
>> On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org> wrote:
>>>=20
>>> I try my first steps in cross compiling ports with poudriere and =
therefore I try to
>>> setup an appropriate jail and QEMU environment.
>>>=20
>>> Well, I'm failing at the jail setup due to the non-exitence of any =
suitable QEMU
>>> environment and for that I tried to figure out to find some proper =
HOWTO.
>>> Searching via google ave some hints, but in questions which QEMU =
from ports should be
>>> used, all leave me alone, so I tried
>>>=20
>>> emulators/qemu
>>> emulators/qemu-devel
>>> emulators/qemu-static
>>>=20
>>> emulators/qemu is known for me to fail since months and the days of =
11-CURRENT, there
>>> is a compiler error spit out with clang 3.8 and now 3.9. The very =
same for qemu-devel
>>> (both ports used with standard options, no extras). See also Bug =
214873
>>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214873) and Bug =
215100
>>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215100).
>>=20
>> I couldn't reproduce the compilation errors, it builds fine for me =
until
>> the link phase.
>=20
> Well, I face this in poudriere on the most recent 12-CURRENT, too as =
well as 12-CURRENT
> buildworld today.
>=20
> On the host I'd like to run qemu for testing aarch64 binaries for a =
Odroid-C2 project, I
> use a customized /etc/src.conf - but on poudriere, there is no such =
customisation but
> the failing is identical.

Looking at your errors, it seems that the port has decided to enable
rdma support.  This is normally enabled using --enable-rdma with the
configure script, but I don't see that at all in the port Makefile.

On my systems, it runs a test to check for rdma support, but this fails.
Quoting from config.log:

    cc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D64 -D_LARGEFILE_SOURCE =
-Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings =
-Wmissing-prototypes -fno-strict-aliasing -fno-common =
-I/usr/work/share/dim/ports/emulators/qemu/work/qemu-2.6.1 =
-I/usr/local/include -DPREFIX=3D\""/usr/local\"" -Wno-string-plus-int =
-Wno-initializer-overrides -Wendif-labels -Wmissing-include-dirs =
-Wempty-body -Wnested-externs -Wformat-security -Wformat-y2k -Winit-self =
-Wignored-qualifiers -Wold-style-definition -Wtype-limits =
-fstack-protector-strong -I/usr/local/include =
-I/usr/local/include/p11-kit-1 -I/usr/local/include -o =
config-temp/qemu-conf.exe config-temp/qemu-conf.c -m64 -g =
-fstack-protector -L"/usr/local/lib" -lrdmacm -libverbs
    config-temp/qemu-conf.c:1:10: fatal error: 'rdma/rdma_cma.h' file =
not found
    #include <rdma/rdma_cma.h>
             ^

The minimal test program it tries to compile here is just this:

    #include <rdma/rdma_cma.h>
    int main(void) { return 0; }

and it attempts to link it with -lrdmacm -libverbs.  If this somehow
succeeds on your system, then it will think rdma support is available,
while apparently the support is not complete, if it misses the
rdma_getaddrinfo() function.

Do you have some Linux rdma or infiniband headers or libraries installed
into /usr or /usr/local?  This might be the cause of the problems.

If you don't want or care about rdma, you can try the following patch
(should similarly apply to the other qemu ports):

Index: emulators/qemu/Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
--- emulators/qemu/Makefile     (revision 429888)
+++ emulators/qemu/Makefile     (working copy)
@@ -78,6 +78,7 @@
                --disable-libssh2 --enable-debug \
                --prefix=3D${PREFIX} --cc=3D${CC} --enable-docs =
--disable-kvm \
                --disable-linux-user --disable-linux-aio --disable-xen \
+               --disable-rdma \
                --smbd=3D${LOCALBASE}/sbin/smbd --enable-debug-info =
--python=3D${PYTHON_CMD} \
                --extra-cflags=3D-I${WRKSRC}\ -I${LOCALBASE}/include\ =
-DPREFIX=3D\\\"\"${PREFIX}\\\"\"

-Dimitry


--Apple-Mail=_7E4B473B-2A78-450A-B2FA-D18E34A4078C
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.30

iEYEARECAAYFAlhlY24ACgkQsF6jCi4glqPl9gCggjnnz4w9JLTLO0h5jxTc1Ce7
XgMAn0h6QKO4VGrPdzsM6ViQhsjswGIG
=Amfo
-----END PGP SIGNATURE-----

--Apple-Mail=_7E4B473B-2A78-450A-B2FA-D18E34A4078C--

From owner-freebsd-current@freebsd.org  Thu Dec 29 20:19:57 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id C7F93C96462;
 Thu, 29 Dec 2016 20:19:57 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id BA56E11B5;
 Thu, 29 Dec 2016 20:19:57 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id DC8FF4B0;
 Thu, 29 Dec 2016 20:19:57 +0000 (UTC)
Date: Thu, 29 Dec 2016 20:19:56 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mav@FreeBSD.org, adrian@FreeBSD.org, jenkins-admin@FreeBSD.org, 
 freebsd-current@FreeBSD.org, freebsd-i386@FreeBSD.org
Message-ID: <2145852290.150.1483042797911.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <810991626.146.1483035616669.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <810991626.146.1483035616669.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4514 - Still Failing
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 20:19:57 -0000

FreeBSD_HEAD_i386 - Build #4514 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/cha=
nges
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4514/cons=
ole

Change summaries:

310782 by mav:
Fix build with enabled debug after r310778.

MFC after:=092 weeks

310781 by adrian:
[ar71xx] add EARLY_PRINTF support for the AR933x (Hornet) UART.

Tested:

* Carambola 2

310780 by adrian:
[ar71xx] put in an implicit read-after-write to flush things out.

Note: I may need to revisit this for mips74k.



The end of the build log:

[...truncated 129485 lines...]
--- readdir.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.readdir.o -MTreaddir.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/readdir.c=
 -o readdir.o
--- all_subdir_lib ---
--- test_read_filter_program_signature.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_filter_program_signature.o -MTte=
st_read_filter_program_signature.o -std=3Dgnu99 -fstack-protector-strong   =
 -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_re=
ad_filter_program_signature.c -o test_read_filter_program_signature.o
--- test_read_filter_uudecode.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_filter_uudecode.o -MTtest_read_f=
ilter_uudecode.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_read_filter_uudecode=
.c -o test_read_filter_uudecode.o
--- all_subdir_usr.bin ---
--- CodeGenMapTable.o ---
c++  -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/u=
sr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm =
-I/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX=
 -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DE=
FAULT_TARGET_TRIPLE=3D\"i386-unknown-freebsd12.0\" -DLLVM_HOST_TRIPLE=3D\"i=
386-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=3D\"\" -g -MD -MF.depend.CodeGe=
nMapTable.o -MTCodeGenMapTable.o -fstack-protector-strong -Wno-empty-body -=
Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -W=
no-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-co=
nversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-pr=
omoted-parameter -Wno-parentheses -Qunused-arguments -std=3Dc++11 -fno-exce=
ptions -fno-rtti  -stdlib=3Dlibc++ -Wno-c++11-extensions  -c /usr/src/contr=
ib/llvm/utils/TableGen/CodeGenMapTable.cpp -o CodeGenMapTable.o
--- all_subdir_lib ---
--- test_read_format_7zip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_7zip.o -MTtest_read_forma=
t_7zip.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /u=
sr/src/contrib/libarchive/libarchive/test/test_read_format_7zip.c -o test_r=
ead_format_7zip.o
--- all_subdir_usr.sbin ---
--- restart.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.restart.o -MTrestart.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/restart.c=
 -o restart.o
--- rpc_fwd.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.rpc_fwd.o -MTrpc_fwd.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/rpc_fwd.c=
 -o rpc_fwd.o
--- all_subdir_lib ---
--- test_read_format_7zip_encryption_data.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_7zip_encryption_data.o -M=
Ttest_read_format_7zip_encryption_data.o -std=3Dgnu99 -fstack-protector-str=
ong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/t=
est_read_format_7zip_encryption_data.c -o test_read_format_7zip_encryption_=
data.o
--- test_read_format_7zip_encryption_header.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_7zip_encryption_header.o =
-MTtest_read_format_7zip_encryption_header.o -std=3Dgnu99 -fstack-protector=
-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/te=
st/test_read_format_7zip_encryption_header.c -o test_read_format_7zip_encry=
ption_header.o
--- all_subdir_usr.sbin ---
--- sched.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.sched.o -MTsched.o -std=3Dgnu99 -fstack-protector-strong -Wsyst=
em-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -=
Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-=
parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-=
local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno=
-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/sched.c -o sc=
hed.o
--- all_subdir_lib ---
--- test_read_format_7zip_encryption_partially.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_7zip_encryption_partially=
.o -MTtest_read_format_7zip_encryption_partially.o -std=3Dgnu99 -fstack-pro=
tector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarch=
ive/test/test_read_format_7zip_encryption_partially.c -o test_read_format_7=
zip_encryption_partially.o
--- test_read_format_7zip_malformed.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_7zip_malformed.o -MTtest_=
read_format_7zip_malformed.o -std=3Dgnu99 -fstack-protector-strong    -Qunu=
sed-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_for=
mat_7zip_malformed.c -o test_read_format_7zip_malformed.o
--- test_read_format_ar.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_ar.o -MTtest_read_format_=
ar.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/s=
rc/contrib/libarchive/libarchive/test/test_read_format_ar.c -o test_read_fo=
rmat_ar.o
--- all_subdir_usr.sbin ---
--- srvr_amfs_auto.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.srvr_amfs_auto.o -MTsrvr_amfs_auto.o -std=3Dgnu99 -fstack-prote=
ctor-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno=
-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-=
unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conve=
rsion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promo=
ted-parameter -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd=
/amd/srvr_amfs_auto.c -o srvr_amfs_auto.o
--- all_subdir_lib ---
--- test_read_format_cab.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cab.o -MTtest_read_format=
_cab.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr=
/src/contrib/libarchive/libarchive/test/test_read_format_cab.c -o test_read=
_format_cab.o
--- all_subdir_usr.sbin ---
--- srvr_nfs.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.srvr_nfs.o -MTsrvr_nfs.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/srvr_nf=
s.c -o srvr_nfs.o
--- all_subdir_lib ---
--- test_read_format_cab_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cab_filename.o -MTtest_re=
ad_format_cab_filename.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-=
arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_=
cab_filename.c -o test_read_format_cab_filename.o
--- test_read_format_cpio_afio.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_afio.o -MTtest_read_=
format_cpio_afio.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argume=
nts  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_a=
fio.c -o test_read_format_cpio_afio.o
--- test_read_format_cpio_bin.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin.o -MTtest_read_f=
ormat_cpio_bin.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_bin=
.c -o test_read_format_cpio_bin.o
--- test_read_format_cpio_bin_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_Z.o -MTtest_read=
_format_cpio_bin_Z.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argu=
ments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio=
_bin_Z.c -o test_read_format_cpio_bin_Z.o
--- all_subdir_usr.sbin ---
--- sun_map.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.sun_map.o -MTsun_map.o -std=3Dgnu99 -fstack-protector-strong -W=
system-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-i=
nt -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -=
Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unu=
sed-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter =
-Wno-parentheses  -Qunused-arguments  -c /usr/src/contrib/amd/amd/sun_map.c=
 -o sun_map.o
--- all_subdir_lib ---
--- test_read_format_cpio_bin_be.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_be.o -MTtest_rea=
d_format_cpio_bin_be.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cp=
io_bin_be.c -o test_read_format_cpio_bin_be.o
--- test_read_format_cpio_bin_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_bz2.o -MTtest_re=
ad_format_cpio_bin_bz2.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-=
arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_=
cpio_bin_bz2.c -o test_read_format_cpio_bin_bz2.o
--- all_subdir_usr.sbin ---
--- conf_parse.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.conf_parse.o -MTconf_parse.o -std=3Dgnu99 -fstack-protector-str=
ong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-=
plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-v=
alue -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -W=
no-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-para=
meter -Wno-parentheses  -Qunused-arguments  -c conf_parse.c -o conf_parse.o
--- all_subdir_lib ---
--- test_read_format_cpio_bin_gz.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_gz.o -MTtest_rea=
d_format_cpio_bin_gz.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cp=
io_bin_gz.c -o test_read_format_cpio_bin_gz.o
--- test_read_format_cpio_bin_le.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_le.o -MTtest_rea=
d_format_cpio_bin_le.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cp=
io_bin_le.c -o test_read_format_cpio_bin_le.o
--- test_read_format_cpio_bin_lzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_lzip.o -MTtest_r=
ead_format_cpio_bin_lzip.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_cpio_bin_lzip.c -o test_read_format_cpio_bin_lzip.o
--- test_read_format_cpio_bin_lzma.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_lzma.o -MTtest_r=
ead_format_cpio_bin_lzma.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_cpio_bin_lzma.c -o test_read_format_cpio_bin_lzma.o
--- all_subdir_usr.sbin ---
--- conf_tok.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.conf_tok.o -MTconf_tok.o -std=3Dgnu99 -fstack-protector-strong =
-Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-string-plus=
-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value=
 -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-u=
nused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramete=
r -Wno-parentheses  -Qunused-arguments  -c conf_tok.c -o conf_tok.o
--- all_subdir_lib ---
--- test_read_format_cpio_bin_xz.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_bin_xz.o -MTtest_rea=
d_format_cpio_bin_xz.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-ar=
guments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cp=
io_bin_xz.c -o test_read_format_cpio_bin_xz.o
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-objdump ---
--- llvm-objdump.full ---
c++ -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/us=
r/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm -I=
/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX -=
DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DEFA=
ULT_TARGET_TRIPLE=3D\"i386-unknown-freebsd12.0\" -DLLVM_HOST_TRIPLE=3D\"i38=
6-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=3D\"\" -g -fstack-protector-stron=
g -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-taut=
ological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-fu=
nction -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-swit=
ch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -st=
d=3Dc++11 -fno-exceptions -fno-rtti -stdlib=3Dlibc++ -Wno-c++11-extensions =
 -o llvm-objdump.full  COFFDump.o ELFDump.o MachODump.o llvm-objdump.o /usr=
/obj/usr/src/lib/clang/libllvm/libllvm.a  -lz  -lncursesw  -lpthread
--- all_subdir_lib ---
--- test_read_format_cpio_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_filename.o -MTtest_r=
ead_format_cpio_filename.o -std=3Dgnu99 -fstack-protector-strong    -Qunuse=
d-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_forma=
t_cpio_filename.c -o test_read_format_cpio_filename.o
--- all_subdir_usr.sbin ---
--- sun_map_parse.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/contrib/amd/amd  -I/usr/sr=
c/contrib/amd/include  -I/usr/obj/usr/src/usr.sbin/amd/amd/../../../include=
/rpcsvc -I. -I/usr/src/usr.sbin/amd/amd -I/usr/src/usr.sbin/amd/amd/../incl=
ude -I/usr/obj/usr/src/usr.sbin/amd/amd/../include -I/usr/src/usr.sbin/amd/=
amd/../../../contrib/amd/include -I/usr/src/usr.sbin/amd/amd/../../../contr=
ib/amd -DHAVE_CONFIG_H -DHOST_CPU=3D\"i386\" -DHOST_ARCH=3D\"i386\" -g -MD =
 -MF.depend.sun_map_parse.o -MTsun_map_parse.o -std=3Dgnu99 -fstack-protect=
or-strong -Wsystem-headers -Werror -Wno-pointer-sign -Wno-empty-body -Wno-s=
tring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-un=
used-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-convers=
ion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promote=
d-parameter -Wno-parentheses  -Qunused-arguments  -c sun_map_parse.c -o sun=
_map_parse.o
--- all_subdir_usr.bin ---
MachODump.o: In function `DisassembleMachO(llvm::StringRef, llvm::object::M=
achOObjectFile*, llvm::StringRef, llvm::StringRef)':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x177c4): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x17f00): und=
efined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_p=
tr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
MachODump.o: In function `_ZNK4llvm6Target18createMCSymbolizerENS_9StringRe=
fEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_1=
6MCRelocationInfoENSD_14default_deleteISF_EEEE':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text._ZNK4llvm6Tar=
get18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_=
9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteI=
SF_EEEE[_ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFP=
KcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoE=
NSD_14default_deleteISF_EEEE]+0x22): undefined reference to `_ZN4llvm18crea=
teMCSymbolizerERKNS_6TripleEPFiPvyyyiS3_EPFPKcS3_yPyyPS7_ES3_PNS_9MCContext=
EONSt3__110unique_ptrINS_16MCRelocationInfoENSE_14default_deleteISG_EEEE'
--- all_subdir_lib ---
--- test_read_format_cpio_odc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_odc.o -MTtest_read_f=
ormat_cpio_odc.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-argument=
s  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_odc=
.c -o test_read_format_cpio_odc.o
--- all_subdir_usr.bin ---
llvm-objdump.o: In function `main':
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f2f): u=
ndefined reference to `LLVMInitializeAArch64Disassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f39): u=
ndefined reference to `LLVMInitializeMipsDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f43): u=
ndefined reference to `LLVMInitializeSparcDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f48): u=
ndefined reference to `LLVMInitializeX86Disassembler'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o): In functio=
n `(anonymous namespace)::PPCDisassembler::~PPCDisassembler()':
/usr/src/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp:(=
.text+0xbb): undefined reference to `llvm::MCDisassembler::~MCDisassembler(=
)'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o):(.rodata+0x=
484): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ARMDisassembler::~ARMDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xcb): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned int>(ll=
vm::MCDisassembler::DecodeStatus, unsigned int, unsigned int, llvm::MCInst&=
, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xab72): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRef=
erenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xad74): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb029): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb0f4): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0xb233): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicO=
perand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long lo=
ng, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeArmMOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long lon=
g, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1ac9f): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeAddrModeImm12Operand(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1b4fb): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeBranchImmInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c451): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x1c4e2): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumbBLXOffset(llvm::MCInst&, unsigned int, unsigned long long, vo=
id const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x219d3): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeT2MOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long long=
, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22689): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `DecodeThumb2BCCInstruction(llvm::MCInst&, unsigned int, unsigned long lo=
ng, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x22b63): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):/usr/src/co=
ntrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22d3b):=
 more undefined references to `llvm::MCDisassembler::tryAddingSymbolicOpera=
nd(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, =
unsigned long long) const' follow
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255c9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x255f9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()=
'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In functio=
n `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned short>(=
llvm::MCDisassembler::DecodeStatus, unsigned int, unsigned short, llvm::MCI=
nst&, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27e8a): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x27fec): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28db3): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadRe=
ferenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.tex=
t+0x28eb1): undefined reference to `llvm::MCDisassembler::tryAddingSymbolic=
Operand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long l=
ong, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):(.rodata+0x=
2cf4): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
--- all_subdir_lib ---
--- test_read_format_cpio_svr4_gzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip.o -MTtest_=
read_format_cpio_svr4_gzip.o -std=3Dgnu99 -fstack-protector-strong    -Qunu=
sed-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_for=
mat_cpio_svr4_gzip.c -o test_read_format_cpio_svr4_gzip.o
--- test_read_format_cpio_svr4c_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/us=
r/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/=
src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=3D1 -DHAVE_LZMA_H=3D1   -g=
 -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4c_Z.o -MTtest_re=
ad_format_cpio_svr4c_Z.o -std=3Dgnu99 -fstack-protector-strong    -Qunused-=
arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_=
cpio_svr4c_Z.c -o test_read_format_cpio_svr4c_Z.o
--- all_subdir_usr.bin ---
c++: error: linker command failed with exit code 1 (use -v to see invocatio=
n)
*** [llvm-objdump.full] Error code 1

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
1 error

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
*** [all_subdir_usr.bin/clang/llvm-objdump] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
--- all_subdir_lib ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /usr/src/lib/libarchive/tests
*** [libarchive_test] Error code 2

bmake[5]: stopped in /usr/src/lib/libarchive/tests
1 error

bmake[5]: stopped in /usr/src/lib/libarchive/tests
*** [all_subdir_lib/libarchive/tests] Error code 2

bmake[4]: stopped in /usr/src/lib/libarchive
1 error

bmake[4]: stopped in /usr/src/lib/libarchive
*** [all_subdir_lib/libarchive] Error code 2

bmake[3]: stopped in /usr/src/lib
1 error

bmake[3]: stopped in /usr/src/lib
*** [all_subdir_lib] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.sbin ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.sbin/amd/amd
*** [all_subdir_usr.sbin/amd/amd] Error code 2

bmake[4]: stopped in /usr/src/usr.sbin/amd
1 error

bmake[4]: stopped in /usr/src/usr.sbin/amd
*** [all_subdir_usr.sbin/amd] Error code 2

bmake[3]: stopped in /usr/src/usr.sbin
1 error

bmake[3]: stopped in /usr/src/usr.sbin
*** [all_subdir_usr.sbin] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-tblgen ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-tblgen
*** [all_subdir_usr.bin/clang/llvm-tblgen] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
2 errors

bmake[4]: stopped in /usr/src/usr.bin/clang
*** [all_subdir_usr.bin/clang] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
1 error

bmake[3]: stopped in /usr/src/usr.bin
*** [all_subdir_usr.bin] Error code 2

bmake[2]: stopped in /usr/src
3 errors

bmake[2]: stopped in /usr/src
*** [everything] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson5123624669053434826.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::103:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Thu Dec 29 20:33:08 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 414B6C96B4A;
 Thu, 29 Dec 2016 20:33:08 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.15])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id ACE761E8C;
 Thu, 29 Dec 2016 20:33:07 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([85.178.51.182]) by mail.gmx.com
 (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0McVGq-1c51yN25gG-00HhR6; Thu, 29 Dec 2016 21:32:59 +0100
Date: Thu, 29 Dec 2016 21:32:53 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: Dimitry Andric <dim@FreeBSD.org>
Cc: "O. Hartmann" <ohartmann@walstatt.org>, FreeBSD CURRENT
 <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org>,
 Ed Maste <emaste@freebsd.org>
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
Message-ID: <20161229213253.75c7993f@thor.walstatt.dynvpn.de>
In-Reply-To: <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
 <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/RV2Cv70TvMfk18ylJzNGwBF"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:JDZFjmhzyVAHhEEIx2Q5Ah7T2wcjOL8pAOKML2rYCjjJoTBOnkX
 wpWQxFIEZJAazadCMUnbKn3X4tkoQcIR9rGH+vf3X4zfpzl46ZyD2dAsThesHEQWNTlyxdK
 FDMRuomiOY32/U9efR0ROs7IjBRJscHB7SF7U5zBue6QQKFIRkHhgucnnXm6s1Li7BhLKqU
 N+r5IOsB+weQHR5EHuD1A==
X-UI-Out-Filterresults: notjunk:1;V01:K0:ffKLxS2mSJE=:P6uL5NgQWL1j2Rxoytf0sT
 3Bq194i9d+OIzXTJbu8fNYIMPuvALf2yRL5UQbJganUZpxj1flVs9M8adfp246QltHH7Qs/mA
 qVz87Hd7F17lOeZ6vPe/8LY8fJfMEQEAalZ3c0Cnj1IAxVyxBDJ/XIqARno9frsGiGHfhWjvR
 A2RdGE0pwRqokyNfmgd2DaORMUpDkTt0RFsjGpABTCAXl+QIwWu4f2kiGEv/srytriPKMZ1rj
 qvDS6ebIrRp57DXVDM1Sd6q1a3Au6N6ibN7t4m4l8MIARzyf/cd8dIam+28VisnNdcQz7dzDT
 IWtRqXABLwamwGCz0AsW28ytsWM2kgIThtsMCtX9tlvMNnP7HVEC32nNFnOuug2nQhMKKI2Fv
 HeAHlWCdi6XoMXOGUA8x5kefuH8ibK+fmLPElbD/eSSk8e1mIdSqRqGlW24hI7Ngi2Bs3p6dt
 R5i5Spe5PQoNOmIa1PqTbohL/vAeiU5er66uWuJHM+nXXGOWwpKCwqlHPcUJ93UJ9mxGfxjiP
 WgoPC2VqgxtpG7iAdIyGeUPhGiGQB9+V0Q9IUHLOXM8BkDfEegsMtbwoc6yWFWgYytLMXHSsy
 vsPWN840rUckbgiV3ob5WybUbQnD58hY0mcUiUsRDXfkI6VuuJOqsYnYMVqRd7P6DPvOaUCot
 YZQ9yS2pwLOtfPiyrEkEhTi6R83sFD2h9KkRt1YRimILDAtAH8elYXn9rrB1mw3LNyA58sPd4
 X3bjXdTq9VF5LI8Uu0r79jIjh6wegknOyuRfuOiHILzLr94knJZ161PETpw=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 20:33:08 -0000

--Sig_/RV2Cv70TvMfk18ylJzNGwBF
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Am Thu, 29 Dec 2016 20:26:32 +0100
Dimitry Andric <dim@FreeBSD.org> schrieb:

> On 29 Dec 2016, at 17:29, O. Hartmann <ohartmann@walstatt.org> wrote:
> >=20
> > Am Wed, 7 Dec 2016 23:31:01 +0100
> > Dimitry Andric <dim@FreeBSD.org> schrieb:
> >  =20
> >> On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org> wrote: =
=20
> >>>=20
> >>> I try my first steps in cross compiling ports with poudriere and ther=
efore I try to
> >>> setup an appropriate jail and QEMU environment.
> >>>=20
> >>> Well, I'm failing at the jail setup due to the non-exitence of any su=
itable QEMU
> >>> environment and for that I tried to figure out to find some proper HO=
WTO.
> >>> Searching via google ave some hints, but in questions which QEMU from=
 ports should
> >>> be used, all leave me alone, so I tried
> >>>=20
> >>> emulators/qemu
> >>> emulators/qemu-devel
> >>> emulators/qemu-static
> >>>=20
> >>> emulators/qemu is known for me to fail since months and the days of 1=
1-CURRENT,
> >>> there is a compiler error spit out with clang 3.8 and now 3.9. The ve=
ry same for
> >>> qemu-devel (both ports used with standard options, no extras). See al=
so Bug 214873
> >>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214873) and Bug =
215100
> >>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215100). =20
> >>=20
> >> I couldn't reproduce the compilation errors, it builds fine for me unt=
il
> >> the link phase. =20
> >=20
> > Well, I face this in poudriere on the most recent 12-CURRENT, too as we=
ll as
> > 12-CURRENT buildworld today.
> >=20
> > On the host I'd like to run qemu for testing aarch64 binaries for a Odr=
oid-C2
> > project, I use a customized /etc/src.conf - but on poudriere, there is =
no such
> > customisation but the failing is identical. =20
>=20
> Looking at your errors, it seems that the port has decided to enable
> rdma support.  This is normally enabled using --enable-rdma with the
> configure script, but I don't see that at all in the port Makefile.
>=20
> On my systems, it runs a test to check for rdma support, but this fails.
> Quoting from config.log:
>=20
>     cc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D64 -D_LARGEFILE_SOURCE
> -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings
> -Wmissing-prototypes -fno-strict-aliasing -fno-common
> -I/usr/work/share/dim/ports/emulators/qemu/work/qemu-2.6.1 -I/usr/local/i=
nclude
> -DPREFIX=3D\""/usr/local\"" -Wno-string-plus-int -Wno-initializer-overrid=
es
> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wfor=
mat-security
> -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-definition -Wty=
pe-limits
> -fstack-protector-strong -I/usr/local/include -I/usr/local/include/p11-ki=
t-1
> -I/usr/local/include -o config-temp/qemu-conf.exe config-temp/qemu-conf.c=
 -m64 -g
> -fstack-protector -L"/usr/local/lib" -lrdmacm -libverbs config-temp/qemu-=
conf.c:1:10:
> fatal error: 'rdma/rdma_cma.h' file not found #include <rdma/rdma_cma.h> ^
>=20
> The minimal test program it tries to compile here is just this:
>=20
>     #include <rdma/rdma_cma.h>
>     int main(void) { return 0; }
>=20
> and it attempts to link it with -lrdmacm -libverbs.  If this somehow
> succeeds on your system, then it will think rdma support is available,
> while apparently the support is not complete, if it misses the
> rdma_getaddrinfo() function.
>=20
> Do you have some Linux rdma or infiniband headers or libraries installed
> into /usr or /usr/local?  This might be the cause of the problems.
>=20
> If you don't want or care about rdma, you can try the following patch
> (should similarly apply to the other qemu ports):
>=20
> Index: emulators/qemu/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> --- emulators/qemu/Makefile     (revision 429888)
> +++ emulators/qemu/Makefile     (working copy)
> @@ -78,6 +78,7 @@
>                 --disable-libssh2 --enable-debug \
>                 --prefix=3D${PREFIX} --cc=3D${CC} --enable-docs --disable=
-kvm \
>                 --disable-linux-user --disable-linux-aio --disable-xen \
> +               --disable-rdma \
>                 --smbd=3D${LOCALBASE}/sbin/smbd --enable-debug-info
> --python=3D${PYTHON_CMD} \ --extra-cflags=3D-I${WRKSRC}\ -I${LOCALBASE}/i=
nclude\
> -DPREFIX=3D\\\"\"${PREFIX}\\\"\"
>=20
> -Dimitry
>=20

emulators/qemu bugged out at:

[...]
/usr/bin/ld:../config-host.ld:14: syntax error
c++: error: linker command failed with exit code 1 (use -v to see invocatio=
n)
gmake[3]: *** [Makefile:195: qemu-sparc64] Error 1

I think so far this is a real bug?

I'll adjust the PR in bugzilla.

I also opened another PR regarding the real bug reported earlier, you'll fi=
nd the PR here:

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215659


Kind regards,
oh

--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/RV2Cv70TvMfk18ylJzNGwBF
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGVy9QAKCRDS528fyFhY
lOSbAf90WTvBoBtK77MjklVOkEdhtlF450fVt6w34IADHisQql4hEOytL2bvR6St
AU5y3hOg0dwQWDVgSbsMd8Xwndi9AgCBQ6bLQ7Nxi77dqjNIetwplCKT+lRFIP8S
b01BvT57pgOXi3NcvDKluXji4xuLN2l/gK/S0tqw6ME4Wq+xW2Li
=21jb
-----END PGP SIGNATURE-----

--Sig_/RV2Cv70TvMfk18ylJzNGwBF--

From owner-freebsd-current@freebsd.org  Thu Dec 29 20:23:13 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id C04B9C966C1;
 Thu, 29 Dec 2016 20:23:13 +0000 (UTC)
 (envelope-from o.hartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.17.21])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 3E5411650;
 Thu, 29 Dec 2016 20:23:12 +0000 (UTC)
 (envelope-from o.hartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([85.178.51.182]) by mail.gmx.com
 (mrgmx102 [212.227.17.168]) with ESMTPSA (Nemesis) id
 0Mcgur-1c4kcT3xUf-00Hxv8; Thu, 29 Dec 2016 21:17:45 +0100
Date: Thu, 29 Dec 2016 21:17:38 +0100
From: "O. Hartmann" <o.hartmann@walstatt.org>
To: Dimitry Andric <dim@FreeBSD.org>
Cc: "O. Hartmann" <ohartmann@walstatt.org>, FreeBSD CURRENT
 <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org>,
 Ed Maste <emaste@freebsd.org>
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
Message-ID: <20161229211738.54f9beae@thor.walstatt.dynvpn.de>
In-Reply-To: <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
 <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/P5rV+nodnUW2heZu4jJ_jl3"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:vOWRj6yHJ8d/818AZqN70TwWViEmzzAsM+PhKeYg6D+TC/5TFox
 cPvXWCiCAribE1EHlEyVCVjKLa4hG7qpyjmb+7YAfn1odGLxnC4jpfIj4YR0AGGetMioXfA
 Y7XBgARdDLhuf1wSXhEnb1CdPAMHx94JDzAxY5GJMbRezMRNC2KQ4fzz9nfvQPzBoTL5Cfb
 DSjjdcvvtNdpbVbSXrJFA==
X-UI-Out-Filterresults: notjunk:1;V01:K0:YG6PMGEL5wE=:gaivQoKFTrwRM8gH8LxyBl
 NM+pjELwP8WtlLNBpCg+tvIAKe/E7JYAvpVtM1mLUrzAbR5j6M9LxmOR0zpJabqd0NlDc4u1f
 3OsqruSUuwnPYIBCxV5iP6N7aFeFaWvfc91iv47b+DZhRW1k8S6wBkXVlu3wH7JLqSBdrVtch
 vEl0HYPnr3RZTqbkrRrlLukLrhmprlwlqgsmji02gNfuSFOeKGxF80mXvdbocOsXi+UyiEsc1
 2Rld4FkuBrZ8FrC3ejsYIQ1RYvVm8SSaXpTrUSUGFkWXPSX8rfv4PuWMlUBWiqJ/SEX3sYdgD
 0NSlZWaHEmdspGyHrsdKqrsnDhZdF2MYmDSD2h/O/JGJ4whrPZJoIlnfYv1eb8RYFr4bsLfRR
 e957p/cFvOWfP3+hcv+XRYc/koSPhYOex4snfGGrVoIGQFyo548jd2TDlZ9h/L41jFylummfi
 TXfiskmLawkfpNF8wvC1ztnoSoRAPmE0j5eSqS2dNfy5d5qIng0YtvQkLII7JbtxQNIlehdIz
 x60FSlX2o9teMcg39Pw8v+ppV8w++D5BrWMxRpik1bHxVW5/xuwZo6uz22E8nSXw2EOPWQdzs
 3UpAE1BOmLX8qBEAhBg5iD9D34YijcRVbLMjcMhyKUWASX1I8mJHOVRlcsc+8tsJQ6hbeJLq3
 46Mm4pW1rWzlvbCrvjCQlIaByFeCSpcvFzitCp1o8n/GFiIzpmMudol0nohziJcncRhjQdl6C
 6QfalkMmpzckjVLfR8S1tKSocP4l1ZX43n07JQi9i/g/2VgRmgdKF7gpcdQhH8UtZmKJ+vgPw
 5JNs6NmbL5EYfDG/1ANHWSUel/NjDCa2Z3TY2zZI9bfpSSF9iRacl86xQ2cWON6B9hhlagPlb
 +tSq63OJsIOhvmlhh+keBxczIplphyMbH6KYaUQRUfrtA6mB61KJOBq5P26MuwjgocF/0nfRi
 RzpmbyNvvMA8qXkimNGF1A5TQBywXaluFCBFpNIrNodM3Q5fG9WlKmlDs5bfIRiFF9UYqKtqq
 Ig==
X-Mailman-Approved-At: Thu, 29 Dec 2016 20:48:23 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 20:23:13 -0000

--Sig_/P5rV+nodnUW2heZu4jJ_jl3
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Am Thu, 29 Dec 2016 20:26:32 +0100
Dimitry Andric <dim@FreeBSD.org> schrieb:

> On 29 Dec 2016, at 17:29, O. Hartmann <ohartmann@walstatt.org> wrote:
> >=20
> > Am Wed, 7 Dec 2016 23:31:01 +0100
> > Dimitry Andric <dim@FreeBSD.org> schrieb:
> >  =20
> >> On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org> wrote: =
=20
> >>>=20
> >>> I try my first steps in cross compiling ports with poudriere and ther=
efore I try to
> >>> setup an appropriate jail and QEMU environment.
> >>>=20
> >>> Well, I'm failing at the jail setup due to the non-exitence of any su=
itable QEMU
> >>> environment and for that I tried to figure out to find some proper HO=
WTO.
> >>> Searching via google ave some hints, but in questions which QEMU from=
 ports should
> >>> be used, all leave me alone, so I tried
> >>>=20
> >>> emulators/qemu
> >>> emulators/qemu-devel
> >>> emulators/qemu-static
> >>>=20
> >>> emulators/qemu is known for me to fail since months and the days of 1=
1-CURRENT,
> >>> there is a compiler error spit out with clang 3.8 and now 3.9. The ve=
ry same for
> >>> qemu-devel (both ports used with standard options, no extras). See al=
so Bug 214873
> >>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214873) and Bug =
215100
> >>> (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215100). =20
> >>=20
> >> I couldn't reproduce the compilation errors, it builds fine for me unt=
il
> >> the link phase. =20
> >=20
> > Well, I face this in poudriere on the most recent 12-CURRENT, too as we=
ll as
> > 12-CURRENT buildworld today.
> >=20
> > On the host I'd like to run qemu for testing aarch64 binaries for a Odr=
oid-C2
> > project, I use a customized /etc/src.conf - but on poudriere, there is =
no such
> > customisation but the failing is identical. =20
>=20
> Looking at your errors, it seems that the port has decided to enable
> rdma support.  This is normally enabled using --enable-rdma with the
> configure script, but I don't see that at all in the port Makefile.
>=20
> On my systems, it runs a test to check for rdma support, but this fails.
> Quoting from config.log:
>=20
>     cc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D64 -D_LARGEFILE_SOURCE
> -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings
> -Wmissing-prototypes -fno-strict-aliasing -fno-common
> -I/usr/work/share/dim/ports/emulators/qemu/work/qemu-2.6.1 -I/usr/local/i=
nclude
> -DPREFIX=3D\""/usr/local\"" -Wno-string-plus-int -Wno-initializer-overrid=
es
> -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs -Wfor=
mat-security
> -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-definition -Wty=
pe-limits
> -fstack-protector-strong -I/usr/local/include -I/usr/local/include/p11-ki=
t-1
> -I/usr/local/include -o config-temp/qemu-conf.exe config-temp/qemu-conf.c=
 -m64 -g
> -fstack-protector -L"/usr/local/lib" -lrdmacm -libverbs config-temp/qemu-=
conf.c:1:10:
> fatal error: 'rdma/rdma_cma.h' file not found #include <rdma/rdma_cma.h> ^
>=20
> The minimal test program it tries to compile here is just this:
>=20
>     #include <rdma/rdma_cma.h>
>     int main(void) { return 0; }
>=20
> and it attempts to link it with -lrdmacm -libverbs.  If this somehow
> succeeds on your system, then it will think rdma support is available,
> while apparently the support is not complete, if it misses the
> rdma_getaddrinfo() function.
>=20
> Do you have some Linux rdma or infiniband headers or libraries installed
> into /usr or /usr/local?  This might be the cause of the problems.

No Linux, but I found these files on all of the boxes in question:

locate rdma

[...]
/usr/include/rdma
/usr/include/rdma/rdma_cma.h
/usr/include/rdma/rdma_cma_abi.h
/usr/lib/librdmacm.a
/usr/lib/librdmacm.so
/usr/lib/librdmacm.so.1

ll usr/include/rdma discovers:

total 44
322075 drwxr-xr-x   2 root  wheel  -  512B Oct  7 13:52 ./
240768 drwxr-xr-x  55 root  wheel  -  6.5K Dec 29 19:14 ../
324275 -r--r--r--   1 root  wheel  -   21K Oct  7 13:52 rdma_cma.h
324276 -r--r--r--   1 root  wheel  -  4.7K Oct  7 13:52 rdma_cma_abi.h

and

ll /usr/lib/librdma*
804463 -r--r--r--  1 root  wheel  -   28K Dec 18 16:34 /usr/lib/librdmacm.a
804127 lrwxr-xr-x  1 root  wheel  -   14B Dec 29 19:15 /usr/lib/librdmacm.s=
o@ ->
librdmacm.so.1 804128 -r--r--r--  1 root  wheel  -   24K Dec 29
19:15 /usr/lib/librdmacm.so.1


As you can see, the libraries are of the date of the last full install of t=
he system,
while the headers seem to be remains from October?

In my jail for poudriere, I was surprised, based on your analysis, that I f=
ound this:

ll /pool/poudriere/jails/head-amd64/usr/include/rdma
total 43
77923 drwxr-xr-x   2 root  wheel  uarch    4B Jul 13 07:09 ./
77028 drwxr-xr-x  55 root  wheel  uarch  336B Dec 28 11:29 ../
96127 -r--r--r--   1 root  wheel  -       21K Jul 13 07:09 rdma_cma.h
96128 -r--r--r--   1 root  wheel  -      4.7K Jul 13 07:09 rdma_cma_abi.h

I do buildworlds on almost a daily basis, so could this be a fallout of any=
 kind?

It seems the installworld didn't got right

Thanks for your analysis - I delete, frankly, the header files as they resi=
de in the base
systems domain without a valid timestamp - they are considered hostile ;-)

the big scary question is now how i can prevent such a situation (possibly =
not if not
staying with STABLE or RELEASE) or how can I clean the system without dange=
r. I think
some of my problems reported in the nearest past (half a year back) could b=
e triggered by
some nasty fallout of CURRENT - you might remember that I also had a strang=
e lib path in
the tree considered not valid and caused lots of problems.

Thank you anyway, it seems that emulators/qemu is now over the point of fai=
lure and I
hope I'll get a working package now to start working on the AARCH64 ports.

Thanks.

Kind regards,
Oliver


> If you don't want or care about rdma, you can try the following patch
> (should similarly apply to the other qemu ports):
>=20
> Index: emulators/qemu/Makefile
> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> --- emulators/qemu/Makefile     (revision 429888)
> +++ emulators/qemu/Makefile     (working copy)
> @@ -78,6 +78,7 @@
>                 --disable-libssh2 --enable-debug \
>                 --prefix=3D${PREFIX} --cc=3D${CC} --enable-docs --disable=
-kvm \
>                 --disable-linux-user --disable-linux-aio --disable-xen \
> +               --disable-rdma \
>                 --smbd=3D${LOCALBASE}/sbin/smbd --enable-debug-info
> --python=3D${PYTHON_CMD} \ --extra-cflags=3D-I${WRKSRC}\ -I${LOCALBASE}/i=
nclude\
> -DPREFIX=3D\\\"\"${PREFIX}\\\"\"
>=20
> -Dimitry
>=20



--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/P5rV+nodnUW2heZu4jJ_jl3
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGVvYgAKCRDS528fyFhY
lPhmAf9Jb6GM+UpeGNHaW2nVDSecRGA9xldzvTReHzOc+dj5iIalGxePNud4VEM3
8mxOT9vTj1w/ZUF6fmAMYJ8UxYwKAf94sQRG9pd/x7zIcrfkFMDZBCqbUcSeyLVD
HCsRRFSIzfXERxohlHl2p4Iry6TQYQzlgN0P8MkB7WtXEDmokYY0
=L7fh
-----END PGP SIGNATURE-----

--Sig_/P5rV+nodnUW2heZu4jJ_jl3--

From owner-freebsd-current@freebsd.org  Thu Dec 29 21:25:01 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 34A97C96184
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 21:25:01 +0000 (UTC) (envelope-from ian@freebsd.org)
Received: from outbound1a.eu.mailhop.org (outbound1a.eu.mailhop.org
 [52.58.109.202])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id C25371FF7
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 21:25:00 +0000 (UTC)
 (envelope-from ian@freebsd.org)
X-MHO-User: 3f6befe1-ce0d-11e6-9357-bffcd86bd944
X-Report-Abuse-To: https://support.duocircle.com/support/solutions/articles/5000540958-duocircle-standard-smtp-abuse-information
X-Originating-IP: 73.78.92.27
X-Mail-Handler: DuoCircle Outbound SMTP
Received: from ilsoft.org (unknown [73.78.92.27])
 by outbound1.eu.mailhop.org (Halon) with ESMTPSA
 id 3f6befe1-ce0d-11e6-9357-bffcd86bd944;
 Thu, 29 Dec 2016 21:24:59 +0000 (UTC)
Received: from rev (rev [172.22.42.240])
 by ilsoft.org (8.15.2/8.15.2) with ESMTP id uBTLOp24001969;
 Thu, 29 Dec 2016 14:24:51 -0700 (MST) (envelope-from ian@freebsd.org)
Message-ID: <1483046691.16152.67.camel@freebsd.org>
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
From: Ian Lepore <ian@freebsd.org>
To: "O. Hartmann" <o.hartmann@walstatt.org>, Dimitry Andric <dim@FreeBSD.org>
Cc: "O. Hartmann" <ohartmann@walstatt.org>, FreeBSD CURRENT
 <freebsd-current@freebsd.org>, FreeBSD Ports <freebsd-ports@freebsd.org>,
 Ed Maste <emaste@freebsd.org>
Date: Thu, 29 Dec 2016 14:24:51 -0700
In-Reply-To: <20161229211738.54f9beae@thor.walstatt.dynvpn.de>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
 <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
 <20161229211738.54f9beae@thor.walstatt.dynvpn.de>
Content-Type: text/plain; charset="ISO-8859-1"
X-Mailer: Evolution 3.18.5.1 FreeBSD GNOME Team Port 
Mime-Version: 1.0
Content-Transfer-Encoding: 8bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 21:25:01 -0000

On Thu, 2016-12-29 at 21:17 +0100, O. Hartmann wrote:
> Am Thu, 29 Dec 2016 20:26:32 +0100
> Dimitry Andric <dim@FreeBSD.org> schrieb:
> 
> > 
> > On 29 Dec 2016, at 17:29, O. Hartmann <ohartmann@walstatt.org>
> > wrote:
> > > 
> > > 
> > > Am Wed, 7 Dec 2016 23:31:01 +0100
> > > Dimitry Andric <dim@FreeBSD.org> schrieb:
> > >   
> > > > 
> > > > On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org>
> > > > wrote:  
> > > > > 
> > > > > 
> > > > > I try my first steps in cross compiling ports with poudriere
> > > > > and therefore I try to
> > > > > setup an appropriate jail and QEMU environment.
> > > > > 
> > > > > Well, I'm failing at the jail setup due to the non-exitence
> > > > > of any suitable QEMU
> > > > > environment and for that I tried to figure out to find some
> > > > > proper HOWTO.
> > > > > Searching via google ave some hints, but in questions which
> > > > > QEMU from ports should
> > > > > be used, all leave me alone, so I tried
> > > > > 
> > > > > emulators/qemu
> > > > > emulators/qemu-devel
> > > > > emulators/qemu-static
> > > > > 
> > > > > emulators/qemu is known for me to fail since months and the
> > > > > days of 11-CURRENT,
> > > > > there is a compiler error spit out with clang 3.8 and now
> > > > > 3.9. The very same for
> > > > > qemu-devel (both ports used with standard options, no
> > > > > extras). See also Bug 214873
> > > > > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214873)
> > > > > and Bug 215100
> > > > > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=215100).  
> > > > I couldn't reproduce the compilation errors, it builds fine for
> > > > me until
> > > > the link phase.  
> > > Well, I face this in poudriere on the most recent 12-CURRENT, too
> > > as well as
> > > 12-CURRENT buildworld today.
> > > 
> > > On the host I'd like to run qemu for testing aarch64 binaries for
> > > a Odroid-C2
> > > project, I use a customized /etc/src.conf - but on poudriere,
> > > there is no such
> > > customisation but the failing is identical.  
> > Looking at your errors, it seems that the port has decided to
> > enable
> > rdma support.  This is normally enabled using --enable-rdma with
> > the
> > configure script, but I don't see that at all in the port Makefile.
> > 
> > On my systems, it runs a test to check for rdma support, but this
> > fails.
> > Quoting from config.log:
> > 
> >     cc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64
> > -D_LARGEFILE_SOURCE
> > -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings
> > -Wmissing-prototypes -fno-strict-aliasing -fno-common
> > -I/usr/work/share/dim/ports/emulators/qemu/work/qemu-2.6.1
> > -I/usr/local/include
> > -DPREFIX=\""/usr/local\"" -Wno-string-plus-int -Wno-initializer-
> > overrides
> > -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs 
> > -Wformat-security
> > -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-
> > definition -Wtype-limits
> > -fstack-protector-strong -I/usr/local/include
> > -I/usr/local/include/p11-kit-1
> > -I/usr/local/include -o config-temp/qemu-conf.exe config-temp/qemu-
> > conf.c -m64 -g
> > -fstack-protector -L"/usr/local/lib" -lrdmacm -libverbs config-
> > temp/qemu-conf.c:1:10:
> > fatal error: 'rdma/rdma_cma.h' file not found #include
> > <rdma/rdma_cma.h> ^
> > 
> > The minimal test program it tries to compile here is just this:
> > 
> >     #include <rdma/rdma_cma.h>
> >     int main(void) { return 0; }
> > 
> > and it attempts to link it with -lrdmacm -libverbs.  If this
> > somehow
> > succeeds on your system, then it will think rdma support is
> > available,
> > while apparently the support is not complete, if it misses the
> > rdma_getaddrinfo() function.
> > 
> > Do you have some Linux rdma or infiniband headers or libraries
> > installed
> > into /usr or /usr/local?  This might be the cause of the problems.
> No Linux, but I found these files on all of the boxes in question:
> 
> locate rdma
> 
> [...]
> /usr/include/rdma
> /usr/include/rdma/rdma_cma.h
> /usr/include/rdma/rdma_cma_abi.h
> /usr/lib/librdmacm.a
> /usr/lib/librdmacm.so
> /usr/lib/librdmacm.so.1
> 
> ll usr/include/rdma discovers:
> 
> total 44
> 322075 drwxr-xr-x   2 root  wheel  -  512B Oct  7 13:52 ./
> 240768 drwxr-xr-x  55 root  wheel  -  6.5K Dec 29 19:14 ../
> 324275 -r--r--r--   1 root  wheel  -   21K Oct  7 13:52 rdma_cma.h
> 324276 -r--r--r--   1 root  wheel  -  4.7K Oct  7 13:52
> rdma_cma_abi.h
> 
> and
> 
> ll /usr/lib/librdma*
> 804463 -r--r--r--  1 root  wheel  -   28K Dec 18 16:34
> /usr/lib/librdmacm.a
> 804127 lrwxr-xr-x  1 root  wheel  -   14B Dec 29 19:15
> /usr/lib/librdmacm.so@ ->
> librdmacm.so.1 804128 -r--r--r--  1 root  wheel  -   24K Dec 29
> 19:15 /usr/lib/librdmacm.so.1
> 
> 
> As you can see, the libraries are of the date of the last full
> install of the system,
> while the headers seem to be remains from October?
> 
> In my jail for poudriere, I was surprised, based on your analysis,
> that I found this:
> 
> ll /pool/poudriere/jails/head-amd64/usr/include/rdma
> total 43
> 77923 drwxr-xr-x   2 root  wheel  uarch    4B Jul 13 07:09 ./
> 77028 drwxr-xr-x  55 root  wheel  uarch  336B Dec 28 11:29 ../
> 96127 -r--r--r--   1 root  wheel  -       21K Jul 13 07:09 rdma_cma.h
> 96128 -r--r--r--   1 root  wheel  -      4.7K Jul 13 07:09
> rdma_cma_abi.h
> 
> I do buildworlds on almost a daily basis, so could this be a fallout
> of any kind?
> 
> It seems the installworld didn't got right
> 
> Thanks for your analysis - I delete, frankly, the header files as
> they reside in the base
> systems domain without a valid timestamp - they are considered
> hostile ;-)
> 
> the big scary question is now how i can prevent such a situation
> (possibly not if not
> staying with STABLE or RELEASE) or how can I clean the system without
> danger. I think
> some of my problems reported in the nearest past (half a year back)
> could be triggered by
> some nasty fallout of CURRENT - you might remember that I also had a
> strange lib path in
> the tree considered not valid and caused lots of problems.
> 
> Thank you anyway, it seems that emulators/qemu is now over the point
> of failure and I
> hope I'll get a working package now to start working on the AARCH64
> ports.
> 
> Thanks.
> 
> Kind regards,
> Oliver
> 
> 
> > 
> > If you don't want or care about rdma, you can try the following
> > patch
> > (should similarly apply to the other qemu ports):
> > 
> > Index: emulators/qemu/Makefile
> > ===================================================================
> > --- emulators/qemu/Makefile     (revision 429888)
> > +++ emulators/qemu/Makefile     (working copy)
> > @@ -78,6 +78,7 @@
> >                 --disable-libssh2 --enable-debug \
> >                 --prefix=${PREFIX} --cc=${CC} --enable-docs --
> > disable-kvm \
> >                 --disable-linux-user --disable-linux-aio --disable-
> > xen \
> > +               --disable-rdma \
> >                 --smbd=${LOCALBASE}/sbin/smbd --enable-debug-info
> > --python=${PYTHON_CMD} \ --extra-cflags=-I${WRKSRC}\
> > -I${LOCALBASE}/include\
> > -DPREFIX=\\\"\"${PREFIX}\\\"\"
> > 
> > -Dimitry
> > 
> 
> 

The rdma stuff is part of OFED, it comes from sys/ofed/include.  Other
parts of it are in sys/contrib/rmda and src/contrib/ofed.  Maybe it
only gets installed if you are using certain kernel options?  I'm not
sure.

-- Ian


From owner-freebsd-current@freebsd.org  Thu Dec 29 21:34:21 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D916C9659C;
 Thu, 29 Dec 2016 21:34:21 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from tensor.andric.com (tensor.andric.com [87.251.56.140])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "tensor.andric.com",
 Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id C107B173D;
 Thu, 29 Dec 2016 21:34:20 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from [IPv6:2001:7b8:3a7::7d0d:fedb:8b40:bd7f] (unknown
 [IPv6:2001:7b8:3a7:0:7d0d:fedb:8b40:bd7f])
 (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by tensor.andric.com (Postfix) with ESMTPSA id F198818ECD;
 Thu, 29 Dec 2016 22:34:16 +0100 (CET)
Content-Type: multipart/signed;
 boundary="Apple-Mail=_56A9EB76-C03D-4975-B392-A3567A3AD86D";
 protocol="application/pgp-signature"; micalg=pgp-sha1
Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\))
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
From: Dimitry Andric <dim@FreeBSD.org>
In-Reply-To: <1483046691.16152.67.camel@freebsd.org>
Date: Thu, 29 Dec 2016 22:34:09 +0100
Cc: "O. Hartmann" <o.hartmann@walstatt.org>,
 FreeBSD CURRENT <freebsd-current@freebsd.org>,
 FreeBSD Ports <freebsd-ports@freebsd.org>, Ed Maste <emaste@freebsd.org>
Message-Id: <4CA179F7-4B73-4E74-819F-DED17CEBE524@FreeBSD.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
 <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
 <20161229211738.54f9beae@thor.walstatt.dynvpn.de>
 <1483046691.16152.67.camel@freebsd.org>
To: Ian Lepore <ian@freebsd.org>
X-Mailer: Apple Mail (2.3124)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 21:34:21 -0000


--Apple-Mail=_56A9EB76-C03D-4975-B392-A3567A3AD86D
Content-Transfer-Encoding: 7bit
Content-Type: text/plain;
	charset=iso-8859-1

On 29 Dec 2016, at 22:24, Ian Lepore <ian@freebsd.org> wrote:
> 
> On Thu, 2016-12-29 at 21:17 +0100, O. Hartmann wrote:
>> Am Thu, 29 Dec 2016 20:26:32 +0100
>> Dimitry Andric <dim@FreeBSD.org> schrieb:
...
>>> Do you have some Linux rdma or infiniband headers or libraries
>>> installed
>>> into /usr or /usr/local?  This might be the cause of the problems.
>> No Linux, but I found these files on all of the boxes in question:
>> 
>> locate rdma
>> 
>> [...]
>> /usr/include/rdma
>> /usr/include/rdma/rdma_cma.h
>> /usr/include/rdma/rdma_cma_abi.h
>> /usr/lib/librdmacm.a
>> /usr/lib/librdmacm.so
>> /usr/lib/librdmacm.so.1
>> 
>> ll usr/include/rdma discovers:
>> 
>> total 44
>> 322075 drwxr-xr-x   2 root  wheel  -  512B Oct  7 13:52 ./
>> 240768 drwxr-xr-x  55 root  wheel  -  6.5K Dec 29 19:14 ../
>> 324275 -r--r--r--   1 root  wheel  -   21K Oct  7 13:52 rdma_cma.h
>> 324276 -r--r--r--   1 root  wheel  -  4.7K Oct  7 13:52
>> rdma_cma_abi.h
...
> The rdma stuff is part of OFED, it comes from sys/ofed/include.  Other
> parts of it are in sys/contrib/rmda and src/contrib/ofed.  Maybe it
> only gets installed if you are using certain kernel options?  I'm not
> sure.

Indeed, this turns out to be enabled by WITH_OFED.  It then uses the
Makefile in contrib/ofed/include/rdma to install headers, and the
Makefile in contrib/ofed/usr.lib/librdmacm to install a library.

Unfortunately the headers aren't compatible with the qemu requirements,
so the port still needs to have --disable-rdma, in any case.

-Dimitry


--Apple-Mail=_56A9EB76-C03D-4975-B392-A3567A3AD86D
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.30

iEYEARECAAYFAlhlgVgACgkQsF6jCi4glqOk7wCfZ51RPr2SfoL8sEpWXDLOf4Hp
CI4An2FkwCOlgzScZvhs+wCgZKgMBR1D
=Ldnk
-----END PGP SIGNATURE-----

--Apple-Mail=_56A9EB76-C03D-4975-B392-A3567A3AD86D--

From owner-freebsd-current@freebsd.org  Thu Dec 29 22:20:13 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id C0323C9666E;
 Thu, 29 Dec 2016 22:20:13 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id B1F6711CF;
 Thu, 29 Dec 2016 22:20:13 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id D21614B4;
 Thu, 29 Dec 2016 22:20:13 +0000 (UTC)
Date: Thu, 29 Dec 2016 22:20:11 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: ae@FreeBSD.org, kan@FreeBSD.org, asomers@FreeBSD.org, 
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <976269124.154.1483050013868.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <2145852290.150.1483042797911.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <2145852290.150.1483042797911.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4515 - Still Failing
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 22:20:14 -0000

FreeBSD_HEAD_i386 - Build #4515 - Still Failing:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4515/console

Change summaries:

310786 by asomers:
Reduce the runtime of the GELI tests

There is no reduction in test coverage.  On my system runtime is reduced
from 38m32s to 6m24s.

tests/sys/geom/class/eli/conf.sh
tests/sys/geom/class/eli/init_a_test.sh
tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/integrity_copy_test.sh
tests/sys/geom/class/eli/integrity_data_test.sh
tests/sys/geom/class/eli/integrity_hmac_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
tests/sys/geom/class/eli/onetime_test.sh
	Move the looping code into common functions in conf.sh, and remove
	alias ciphers from the list.

tests/sys/geom/class/eli/init_a_test.sh
tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/integrity_copy_test.sh
tests/sys/geom/class/eli/integrity_data_test.sh
tests/sys/geom/class/eli/integrity_hmac_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
	Move a few commands that don't need to be in the inner loop out.

tests/sys/geom/class/eli/init_test.sh
tests/sys/geom/class/eli/onetime_a_test.sh
	Reduce the sector count

tests/sys/geom/class/eli/Makefile
tests/sys/geom/class/eli/init_alias_test.sh
	Add a test for initializing a GELI device using one of the cipher
	aliases, and check that the alias is correctly interpreted.

MFC after:	4 weeks
Sponsored by:	Spectra Logic Corp
Differential Revision:	https://reviews.freebsd.org/D8814

310785 by ae:
Convert ipv4_flags and ipv4_offset fields into host byte order.
Also save only high bits in the ipv4_flags, because it is defined
as uint8_t. So now it will show DF and MF flags as 0x40 and 0x20.

Reviewed by:	markj@
MFC after:	1 week

310784 by kan:
Use mips_dcache_wbinv_range instead of mips_dcache_wb_range on CPU_XBURST

Ingenic CPUs treat plain cache writeback as local-only operation and do
nothing if that is a remote CPU that holds the dirty cache line. They
do broadcast invalidate and write-and-invalidate to other cores though,
so take advantage of that and use wbinv in place of wb as this still gives
us required busdma semantics. Otherwise we'd have to do IPI to remote CPU
ourselves.

310783 by ae:
When we are sending IP fragments, update ip pointers in IP_PROBE() for
each fragment.

MFC after:	1 week



The end of the build log:

[...truncated 131301 lines...]
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DSNMPTREE_TYPES -I.   -MD  -MF.depend.wlan_snmp.pico -MTwlan_snmp.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_snmp.c -o wlan_snmp.pico
--- all_subdir_lib ---
--- test_read_format_cpio_odc.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_cpio_odc.o -MTtest_read_format_cpio_odc.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_odc.c -o test_read_format_cpio_odc.o
--- test_read_format_cpio_svr4_gzip.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip.o -MTtest_read_format_cpio_svr4_gzip.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip.c -o test_read_format_cpio_svr4_gzip.o
--- test_read_format_cpio_svr4c_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4c_Z.o -MTtest_read_format_cpio_svr4c_Z.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4c_Z.c -o test_read_format_cpio_svr4c_Z.o
--- test_read_format_cpio_svr4_bzip2_rpm.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_bzip2_rpm.o -MTtest_read_format_cpio_svr4_bzip2_rpm.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_bzip2_rpm.c -o test_read_format_cpio_svr4_bzip2_rpm.o
--- test_read_format_cpio_svr4_gzip_rpm.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_cpio_svr4_gzip_rpm.o -MTtest_read_format_cpio_svr4_gzip_rpm.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_cpio_svr4_gzip_rpm.c -o test_read_format_cpio_svr4_gzip_rpm.o
--- test_read_format_empty.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_empty.o -MTtest_read_format_empty.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_empty.c -o test_read_format_empty.o
--- test_read_format_gtar_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_gtar_filename.o -MTtest_read_format_gtar_filename.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_filename.c -o test_read_format_gtar_filename.o
--- test_read_format_gtar_gz.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_gtar_gz.o -MTtest_read_format_gtar_gz.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_gz.c -o test_read_format_gtar_gz.o
--- test_read_format_gtar_lzma.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_gtar_lzma.o -MTtest_read_format_gtar_lzma.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_lzma.c -o test_read_format_gtar_lzma.o
--- test_read_format_gtar_sparse.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_gtar_sparse.o -MTtest_read_format_gtar_sparse.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse.c -o test_read_format_gtar_sparse.o
--- test_read_format_gtar_sparse_skip_entry.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_gtar_sparse_skip_entry.o -MTtest_read_format_gtar_sparse_skip_entry.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_gtar_sparse_skip_entry.c -o test_read_format_gtar_sparse_skip_entry.o
--- test_read_format_iso_Z.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_iso_Z.o -MTtest_read_format_iso_Z.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_iso_Z.c -o test_read_format_iso_Z.o
--- test_read_format_iso_multi_extent.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_iso_multi_extent.o -MTtest_read_format_iso_multi_extent.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_iso_multi_extent.c -o test_read_format_iso_multi_extent.o
--- test_read_format_iso_xorriso.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_iso_xorriso.o -MTtest_read_format_iso_xorriso.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_iso_xorriso.c -o test_read_format_iso_xorriso.o
--- test_read_format_isorr_rr_moved.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isorr_rr_moved.o -MTtest_read_format_isorr_rr_moved.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_rr_moved.c -o test_read_format_isorr_rr_moved.o
--- test_read_format_isojoliet_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_bz2.o -MTtest_read_format_isojoliet_bz2.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isojoliet_bz2.c -o test_read_format_isojoliet_bz2.o
--- test_read_format_isojoliet_long.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_long.o -MTtest_read_format_isojoliet_long.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isojoliet_long.c -o test_read_format_isojoliet_long.o
--- all_subdir_usr.sbin ---
--- wlan_sys.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DSNMPTREE_TYPES -I.   -MD  -MF.depend.wlan_sys.pico -MTwlan_sys.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/modules/snmp_wlan/wlan_sys.c -o wlan_sys.pico
--- all_subdir_lib ---
--- test_read_format_isojoliet_rr.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_rr.o -MTtest_read_format_isojoliet_rr.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isojoliet_rr.c -o test_read_format_isojoliet_rr.o
--- test_read_format_isojoliet_versioned.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isojoliet_versioned.o -MTtest_read_format_isojoliet_versioned.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isojoliet_versioned.c -o test_read_format_isojoliet_versioned.o
--- test_read_format_isorr_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isorr_bz2.o -MTtest_read_format_isorr_bz2.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_bz2.c -o test_read_format_isorr_bz2.o
--- test_read_format_isorr_ce.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isorr_ce.o -MTtest_read_format_isorr_ce.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_ce.c -o test_read_format_isorr_ce.o
--- test_read_format_isorr_new_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isorr_new_bz2.o -MTtest_read_format_isorr_new_bz2.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isorr_new_bz2.c -o test_read_format_isorr_new_bz2.o
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-objdump ---
--- llvm-objdump.full ---
c++ -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -O2 -pipe -I/usr/obj/usr/src/lib/clang/libllvm -I/usr/src/lib/clang/include -I/usr/src/contrib/llvm/include -DLLVM_ON_UNIX -DLLVM_ON_FREEBSD -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS -DLLVM_DEFAULT_TARGET_TRIPLE=\"i386-unknown-freebsd12.0\" -DLLVM_HOST_TRIPLE=\"i386-unknown-freebsd12.0\" -DDEFAULT_SYSROOT=\"\" -g -fstack-protector-strong -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter -Wno-parentheses -Qunused-arguments -std=c++11 -fno-exceptions -fno-rtti -stdlib=libc++ -Wno-c++11-extensions  -o llvm-objdump.full  COFFDump.o ELFDump.o MachODump.o llvm-objdump.o /usr/obj/usr/src/lib/clang/libllvm/libllvm.a  -lz  -lncursesw  -lpthread
--- all_subdir_lib ---
--- test_read_format_isozisofs_bz2.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_isozisofs_bz2.o -MTtest_read_format_isozisofs_bz2.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_isozisofs_bz2.c -o test_read_format_isozisofs_bz2.o
--- test_read_format_lha.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_lha.o -MTtest_read_format_lha.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_lha.c -o test_read_format_lha.o
--- test_read_format_lha_bugfix_0.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_lha_bugfix_0.o -MTtest_read_format_lha_bugfix_0.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_lha_bugfix_0.c -o test_read_format_lha_bugfix_0.o
--- all_subdir_usr.sbin ---
--- wlan_tree.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -DSNMPTREE_TYPES -I.   -MD  -MF.depend.wlan_tree.pico -MTwlan_tree.pico -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c wlan_tree.c -o wlan_tree.pico
--- all_subdir_usr.bin ---
MachODump.o: In function `DisassembleMachO(llvm::StringRef, llvm::object::MachOObjectFile*, llvm::StringRef, llvm::StringRef)':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x177c4): undefined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_ptr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text+0x17f00): undefined reference to `llvm::MCDisassembler::setSymbolizer(std::__1::unique_ptr<llvm::MCSymbolizer, std::__1::default_delete<llvm::MCSymbolizer> >)'
MachODump.o: In function `_ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteISF_EEEE':
/usr/src/contrib/llvm/tools/llvm-objdump/MachODump.cpp:(.text._ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteISF_EEEE[_ZNK4llvm6Target18createMCSymbolizerENS_9StringRefEPFiPvyyyiS2_EPFPKcS2_yPyyPS6_ES2_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSD_14default_deleteISF_EEEE]+0x22): undefined reference to `_ZN4llvm18createMCSymbolizerERKNS_6TripleEPFiPvyyyiS3_EPFPKcS3_yPyyPS7_ES3_PNS_9MCContextEONSt3__110unique_ptrINS_16MCRelocationInfoENSE_14default_deleteISG_EEEE'
--- all_subdir_lib ---
--- test_read_format_lha_filename.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_lha_filename.o -MTtest_read_format_lha_filename.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_lha_filename.c -o test_read_format_lha_filename.o
--- all_subdir_usr.bin ---
llvm-objdump.o: In function `main':
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f2f): undefined reference to `LLVMInitializeAArch64Disassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f39): undefined reference to `LLVMInitializeMipsDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f43): undefined reference to `LLVMInitializeSparcDisassembler'
/usr/src/contrib/llvm/tools/llvm-objdump/llvm-objdump.cpp:(.text+0x4f48): undefined reference to `LLVMInitializeX86Disassembler'
--- all_subdir_usr.sbin ---
--- snmp_wlan.so.6.full ---
building shared library snmp_wlan.so.6
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fatal-warnings -Wl,--warn-shared-textrel  -o snmp_wlan.so.6.full -Wl,-soname,snmp_wlan.so.6  `NM='nm' NMFLAGS='' lorder wlan_snmp.pico wlan_sys.pico wlan_tree.pico |  tsort -q` 
--- all_subdir_usr.bin ---
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o): In function `(anonymous namespace)::PPCDisassembler::~PPCDisassembler()':
/usr/src/contrib/llvm/lib/Target/PowerPC/Disassembler/PPCDisassembler.cpp:(.text+0xbb): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(PPCDisassembler.o):(.rodata+0x484): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `(anonymous namespace)::ARMDisassembler::~ARMDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xcb): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned int>(llvm::MCDisassembler::DecodeStatus, unsigned int, unsigned int, llvm::MCInst&, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xab72): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadReferenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xad74): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xb029): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xb0f4): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0xb233): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeArmMOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x1ac9f): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeAddrModeImm12Operand(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x1b4fb): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadReferenceComment(long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeBranchImmInstruction(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x1c451): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x1c4e2): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeThumbBLXOffset(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x219d3): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeT2MOVTWInstruction(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22689): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `DecodeThumb2BCCInstruction(llvm::MCInst&, unsigned int, unsigned long long, void const*)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22b63): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x22d3b): more undefined references to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const' follow
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x255c9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `(anonymous namespace)::ThumbDisassembler::~ThumbDisassembler()':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x255f9): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o): In function `llvm::MCDisassembler::DecodeStatus llvm::decodeToMCInst<unsigned short>(llvm::MCDisassembler::DecodeStatus, unsigned int, unsigned short, llvm::MCInst&, unsigned long long, void const*, bool&)':
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x27e8a): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x27fec): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x28db3): undefined reference to `llvm::MCDisassembler::tryAddingPcLoadReferenceComment(long long, unsigned long long) const'
/usr/src/contrib/llvm/lib/Target/ARM/Disassembler/ARMDisassembler.cpp:(.text+0x28eb1): undefined reference to `llvm::MCDisassembler::tryAddingSymbolicOperand(llvm::MCInst&, long long, unsigned long long, bool, unsigned long long, unsigned long long) const'
/usr/obj/usr/src/lib/clang/libllvm/libllvm.a(ARMDisassembler.o):(.rodata+0x2cf4): undefined reference to `llvm::MCDisassembler::~MCDisassembler()'
--- all_subdir_usr.sbin ---
--- snmp_wlan.3.gz ---
sed -e 's%@MODPATH@%/usr/lib/%g'		 -e 's%@DEFPATH@%/usr/share/snmp/defs/%g'		 -e 's%@MIBSPATH@%/usr/share/snmp/mibs/%g' < /usr/src/usr.sbin/bsnmpd/modules/snmp_wlan/snmp_wlan.3 | gzip -cn > snmp_wlan.3.gz
--- snmp_wlan.so.6.debug ---
objcopy --only-keep-debug snmp_wlan.so.6.full snmp_wlan.so.6.debug
--- snmp_wlan.so.6 ---
objcopy --strip-debug --add-gnu-debuglink=snmp_wlan.so.6.debug  snmp_wlan.so.6.full snmp_wlan.so.6
--- all_subdir_usr.sbin/bsnmpd/tools ---
===> usr.sbin/bsnmpd/tools (all)
--- all_subdir_usr.sbin/bsnmpd/tools/libbsnmptools ---
===> usr.sbin/bsnmpd/tools/libbsnmptools (all)
--- all_subdir_lib ---
--- test_read_format_mtree.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libarchive -I/usr/obj/usr/src/lib/libarchive/tests -I/usr/src/contrib/libarchive/libarchive -I/usr/src/contrib/libarchive/test_utils -DHAVE_LIBLZMA=1 -DHAVE_LZMA_H=1   -g -MD  -MF.depend.libarchive_test.test_read_format_mtree.o -MTtest_read_format_mtree.o -std=gnu99 -fstack-protector-strong    -Qunused-arguments  -c /usr/src/contrib/libarchive/libarchive/test/test_read_format_mtree.c -o test_read_format_mtree.o
--- all_subdir_usr.sbin ---
--- bsnmpimport.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=/usr/obj/usr/src/tmp -B/usr/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I. -I/usr/src/usr.sbin/bsnmpd/tools/libbsnmptools -MD  -MF.depend.bsnmpimport.o -MTbsnmpimport.o -std=gnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/usr.sbin/bsnmpd/tools/libbsnmptools/bsnmpimport.c -o bsnmpimport.o
--- all_subdir_usr.bin ---
c++: error: linker command failed with exit code 1 (use -v to see invocation)
*** [llvm-objdump.full] Error code 1

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
1 error

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-objdump
*** [all_subdir_usr.bin/clang/llvm-objdump] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
--- all_subdir_usr.sbin ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /usr/src/usr.sbin/bsnmpd/tools/libbsnmptools
*** [all_subdir_usr.sbin/bsnmpd/tools/libbsnmptools] Error code 2

bmake[5]: stopped in /usr/src/usr.sbin/bsnmpd/tools
1 error

bmake[5]: stopped in /usr/src/usr.sbin/bsnmpd/tools
*** [all_subdir_usr.sbin/bsnmpd/tools] Error code 2

bmake[4]: stopped in /usr/src/usr.sbin/bsnmpd
1 error

bmake[4]: stopped in /usr/src/usr.sbin/bsnmpd
*** [all_subdir_usr.sbin/bsnmpd] Error code 2

bmake[3]: stopped in /usr/src/usr.sbin
1 error

bmake[3]: stopped in /usr/src/usr.sbin
*** [all_subdir_usr.sbin] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_lib ---
A failure has been detected in another branch of the parallel make

bmake[6]: stopped in /usr/src/lib/libarchive/tests
*** [libarchive_test] Error code 2

bmake[5]: stopped in /usr/src/lib/libarchive/tests
1 error

bmake[5]: stopped in /usr/src/lib/libarchive/tests
*** [all_subdir_lib/libarchive/tests] Error code 2

bmake[4]: stopped in /usr/src/lib/libarchive
1 error

bmake[4]: stopped in /usr/src/lib/libarchive
*** [all_subdir_lib/libarchive] Error code 2

bmake[3]: stopped in /usr/src/lib
1 error

bmake[3]: stopped in /usr/src/lib
*** [all_subdir_lib] Error code 2

bmake[2]: stopped in /usr/src
--- all_subdir_usr.bin ---
--- all_subdir_usr.bin/clang/llvm-tblgen ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/usr.bin/clang/llvm-tblgen
*** [all_subdir_usr.bin/clang/llvm-tblgen] Error code 2

bmake[4]: stopped in /usr/src/usr.bin/clang
2 errors

bmake[4]: stopped in /usr/src/usr.bin/clang
*** [all_subdir_usr.bin/clang] Error code 2

bmake[3]: stopped in /usr/src/usr.bin
1 error

bmake[3]: stopped in /usr/src/usr.bin
*** [all_subdir_usr.bin] Error code 2

bmake[2]: stopped in /usr/src
3 errors

bmake[2]: stopped in /usr/src
*** [everything] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson8360231911227696714.sh
+ export 'PATH=/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/bin'
+ export 'jname=FreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::103:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Thu Dec 29 22:30:20 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1246CC96C0D;
 Thu, 29 Dec 2016 22:30:20 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.15])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 8323018F8;
 Thu, 29 Dec 2016 22:30:18 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([92.224.249.53]) by mail.gmx.com
 (mrgmx001 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0Lrek1-1cWJ4M38er-013OGt; Thu, 29 Dec 2016 23:30:15 +0100
Date: Thu, 29 Dec 2016 23:29:59 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: Ian Lepore <ian@freebsd.org>
Cc: Dimitry Andric <dim@FreeBSD.org>, "O. Hartmann"
 <ohartmann@walstatt.org>, FreeBSD CURRENT <freebsd-current@freebsd.org>,
 FreeBSD Ports <freebsd-ports@freebsd.org>, Ed Maste <emaste@freebsd.org>
Subject: Re: emulators/qemu: qemu ports failing due to compiler error on
 12-CURRENT
Message-ID: <20161229232959.1b35466a@thor.walstatt.dynvpn.de>
In-Reply-To: <1483046691.16152.67.camel@freebsd.org>
References: <20161207104203.7c9524a3@thor.walstatt.dynvpn.de>
 <782FAC01-9A7C-438F-912C-831628A08E63@FreeBSD.org>
 <20161229172949.48792b29@thor.walstatt.dynvpn.de>
 <F84C2E65-8402-49E4-A0EF-173C045CD753@FreeBSD.org>
 <20161229211738.54f9beae@thor.walstatt.dynvpn.de>
 <1483046691.16152.67.camel@freebsd.org>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/hSVqKZ6/tfeX7HqteQg73r4"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:EEZACVHsM3+56Qi8M1xqAIt11A2mLKNc0XRUfrX/WLPUxdLCKaa
 jkmBm61R3Em+dTqllnr0BzQHMlo5xWlE6SYkKhgAtrHKv9k7gVzMbrly9rGyTEHKezkeO6E
 zM4JIRbk1WDfyTF6qbKcmWCX3FO0Kf7eLOZFISA8xl80Lyo49f6/mPTN2qoTM6WfJ0yN8Oh
 EBkNLLck9TU3vLa39N94A==
X-UI-Out-Filterresults: notjunk:1;V01:K0:3OSm564dZBs=:b6PA9lBUIt0XTZ9xG0vdkK
 LsiRS1fMybLfGFQgJu/zSWYFMca6iYWi9m9ze8qfCyLMNQiDimyvCkGb8cUjl4KPB7fl+n1fx
 hA/LpyQIGhEeWDPO04RvkQ+33pWxGjZWMSOcFNAR+zjPWOYYMTbsgWgpHKCYJLz7cxBZctSNM
 mLaZjkjtknFsrcLjWHIIKkf106q5ucpzghBUFLH575SS6QrXTKmTS08Ovxfg/HBKPFPWuB57J
 RfxCsV7KdfLCq/4iNQIgg1ySNgP3qDp/HOkVFTpAzZoQ64rDVI1xQzJkLiST82ZHeueCtoA+U
 +Nf5Fvr2SQxoENzCe6oJuZ7mQjqWHeDYgNxz0wuqMqjteyM8HKd9imr0/HUxfhvTvlmjKa11B
 rS9SKz3gip8xu5xTkBH6tCCYiyMG9JKGOdRFr5dF6/bL/wgftNz0jG58XlhyFFTBQaJQ2hlJ+
 fuZF2EZFJqwbEpNBD0kpOB0ZzvlVzVBSNd9cS96LnMEiPelYfVGueUEvnPvcQI7OiQYZg0i+O
 1cwcPLJTSVM/N8fZqrtlJzTWUvTwuA61urVFGIxpJOaJjQO8ieygHbHa88O0MpVrj6d6Bwg6b
 iKhiJBjpcC/zHg2iqL6GYKnpftBwQoaHSIn88Y2oZUKFMndQudH4EQmz5Ny2qsuYmBXhglF0r
 Hl4BsXo7doP+Iw658OcRJzBDLF/kWRuhurHemlxZCL/SemoktNHPi68vU3oQnf4oIX1pQ4bno
 z1GdZuT2Do81X6Gfz7M6DhZdkHm2Azdh3TeOV1mrHBECbu62wjwk9rC77Xg=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 22:30:20 -0000

--Sig_/hSVqKZ6/tfeX7HqteQg73r4
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: quoted-printable

Am Thu, 29 Dec 2016 14:24:51 -0700
Ian Lepore <ian@freebsd.org> schrieb:

> On Thu, 2016-12-29 at 21:17 +0100, O. Hartmann wrote:
> > Am Thu, 29 Dec 2016 20:26:32 +0100
> > Dimitry Andric <dim@FreeBSD.org> schrieb:
> >  =20
> > >=20
> > > On 29 Dec 2016, at 17:29, O. Hartmann <ohartmann@walstatt.org>
> > > wrote: =20
> > > >=20
> > > >=20
> > > > Am Wed, 7 Dec 2016 23:31:01 +0100
> > > > Dimitry Andric <dim@FreeBSD.org> schrieb:
> > > > =A0=A0 =20
> > > > >=20
> > > > > On 07 Dec 2016, at 10:42, O. Hartmann <ohartmann@walstatt.org>
> > > > > wrote:=A0=A0 =20
> > > > > >=20
> > > > > >=20
> > > > > > I try my first steps in cross compiling ports with poudriere
> > > > > > and therefore I try to
> > > > > > setup an appropriate jail and QEMU environment.
> > > > > >=20
> > > > > > Well, I'm failing at the jail setup due to the non-exitence
> > > > > > of any suitable QEMU
> > > > > > environment and for that I tried to figure out to find some
> > > > > > proper HOWTO.
> > > > > > Searching via google ave some hints, but in questions which
> > > > > > QEMU from ports should
> > > > > > be used, all leave me alone, so I tried
> > > > > >=20
> > > > > > emulators/qemu
> > > > > > emulators/qemu-devel
> > > > > > emulators/qemu-static
> > > > > >=20
> > > > > > emulators/qemu is known for me to fail since months and the
> > > > > > days of 11-CURRENT,
> > > > > > there is a compiler error spit out with clang 3.8 and now
> > > > > > 3.9. The very same for
> > > > > > qemu-devel (both ports used with standard options, no
> > > > > > extras). See also Bug 214873
> > > > > > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D214873)
> > > > > > and Bug 215100
> > > > > > (https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D215100).=
=A0=A0 =20
> > > > > I couldn't reproduce the compilation errors, it builds fine for
> > > > > me until
> > > > > the link phase.=A0=A0 =20
> > > > Well, I face this in poudriere on the most recent 12-CURRENT, too
> > > > as well as
> > > > 12-CURRENT buildworld today.
> > > >=20
> > > > On the host I'd like to run qemu for testing aarch64 binaries for
> > > > a Odroid-C2
> > > > project, I use a customized /etc/src.conf - but on poudriere,
> > > > there is no such
> > > > customisation but the failing is identical.=A0=A0 =20
> > > Looking at your errors, it seems that the port has decided to
> > > enable
> > > rdma support.=A0=A0This is normally enabled using --enable-rdma with
> > > the
> > > configure script, but I don't see that at all in the port Makefile.
> > >=20
> > > On my systems, it runs a test to check for rdma support, but this
> > > fails.
> > > Quoting from config.log:
> > >=20
> > > =A0=A0=A0=A0cc -m64 -D_GNU_SOURCE -D_FILE_OFFSET_BITS=3D64
> > > -D_LARGEFILE_SOURCE
> > > -Wstrict-prototypes -Wredundant-decls -Wall -Wundef -Wwrite-strings
> > > -Wmissing-prototypes -fno-strict-aliasing -fno-common
> > > -I/usr/work/share/dim/ports/emulators/qemu/work/qemu-2.6.1
> > > -I/usr/local/include
> > > -DPREFIX=3D\""/usr/local\"" -Wno-string-plus-int -Wno-initializer-
> > > overrides
> > > -Wendif-labels -Wmissing-include-dirs -Wempty-body -Wnested-externs=20
> > > -Wformat-security
> > > -Wformat-y2k -Winit-self -Wignored-qualifiers -Wold-style-
> > > definition -Wtype-limits
> > > -fstack-protector-strong -I/usr/local/include
> > > -I/usr/local/include/p11-kit-1
> > > -I/usr/local/include -o config-temp/qemu-conf.exe config-temp/qemu-
> > > conf.c -m64 -g
> > > -fstack-protector -L"/usr/local/lib" -lrdmacm -libverbs config-
> > > temp/qemu-conf.c:1:10:
> > > fatal error: 'rdma/rdma_cma.h' file not found #include
> > > <rdma/rdma_cma.h> ^
> > >=20
> > > The minimal test program it tries to compile here is just this:
> > >=20
> > > =A0=A0=A0=A0#include <rdma/rdma_cma.h>
> > > =A0=A0=A0=A0int main(void) { return 0; }
> > >=20
> > > and it attempts to link it with -lrdmacm -libverbs.=A0=A0If this
> > > somehow
> > > succeeds on your system, then it will think rdma support is
> > > available,
> > > while apparently the support is not complete, if it misses the
> > > rdma_getaddrinfo() function.
> > >=20
> > > Do you have some Linux rdma or infiniband headers or libraries
> > > installed
> > > into /usr or /usr/local?=A0=A0This might be the cause of the problems=
. =20
> > No Linux, but I found these files on all of the boxes in question:
> >=20
> > locate rdma
> >=20
> > [...]
> > /usr/include/rdma
> > /usr/include/rdma/rdma_cma.h
> > /usr/include/rdma/rdma_cma_abi.h
> > /usr/lib/librdmacm.a
> > /usr/lib/librdmacm.so
> > /usr/lib/librdmacm.so.1
> >=20
> > ll usr/include/rdma discovers:
> >=20
> > total 44
> > 322075 drwxr-xr-x=A0=A0=A02 root=A0=A0wheel=A0=A0-=A0=A0512B Oct=A0=A07=
 13:52 ./
> > 240768 drwxr-xr-x=A0=A055 root=A0=A0wheel=A0=A0-=A0=A06.5K Dec 29 19:14=
 ../
> > 324275 -r--r--r--=A0=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A021K Oct=A0=
=A07 13:52 rdma_cma.h
> > 324276 -r--r--r--=A0=A0=A01 root=A0=A0wheel=A0=A0-=A0=A04.7K Oct=A0=A07=
 13:52
> > rdma_cma_abi.h
> >=20
> > and
> >=20
> > ll /usr/lib/librdma*
> > 804463 -r--r--r--=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A028K Dec 18 16:34
> > /usr/lib/librdmacm.a
> > 804127 lrwxr-xr-x=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A014B Dec 29 19:15
> > /usr/lib/librdmacm.so@ ->
> > librdmacm.so.1 804128 -r--r--r--=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A0=
24K Dec 29
> > 19:15 /usr/lib/librdmacm.so.1
> >=20
> >=20
> > As you can see, the libraries are of the date of the last full
> > install of the system,
> > while the headers seem to be remains from October?
> >=20
> > In my jail for poudriere, I was surprised, based on your analysis,
> > that I found this:
> >=20
> > ll /pool/poudriere/jails/head-amd64/usr/include/rdma
> > total 43
> > 77923 drwxr-xr-x=A0=A0=A02 root=A0=A0wheel=A0=A0uarch=A0=A0=A0=A04B Jul=
 13 07:09 ./
> > 77028 drwxr-xr-x=A0=A055 root=A0=A0wheel=A0=A0uarch=A0=A0336B Dec 28 11=
:29 ../
> > 96127 -r--r--r--=A0=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A0=A0=A0=A0=A02=
1K Jul 13 07:09 rdma_cma.h
> > 96128 -r--r--r--=A0=A0=A01 root=A0=A0wheel=A0=A0-=A0=A0=A0=A0=A0=A04.7K=
 Jul 13 07:09
> > rdma_cma_abi.h
> >=20
> > I do buildworlds on almost a daily basis, so could this be a fallout
> > of any kind?
> >=20
> > It seems the installworld didn't got right
> >=20
> > Thanks for your analysis - I delete, frankly, the header files as
> > they reside in the base
> > systems domain without a valid timestamp - they are considered
> > hostile ;-)
> >=20
> > the big scary question is now how i can prevent such a situation
> > (possibly not if not
> > staying with STABLE or RELEASE) or how can I clean the system without
> > danger. I think
> > some of my problems reported in the nearest past (half a year back)
> > could be triggered by
> > some nasty fallout of CURRENT - you might remember that I also had a
> > strange lib path in
> > the tree considered not valid and caused lots of problems.
> >=20
> > Thank you anyway, it seems that emulators/qemu is now over the point
> > of failure and I
> > hope I'll get a working package now to start working on the AARCH64
> > ports.
> >=20
> > Thanks.
> >=20
> > Kind regards,
> > Oliver
> >=20
> >  =20
> > >=20
> > > If you don't want or care about rdma, you can try the following
> > > patch
> > > (should similarly apply to the other qemu ports):
> > >=20
> > > Index: emulators/qemu/Makefile
> > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
> > > --- emulators/qemu/Makefile=A0=A0=A0=A0=A0(revision 429888)
> > > +++ emulators/qemu/Makefile=A0=A0=A0=A0=A0(working copy)
> > > @@ -78,6 +78,7 @@
> > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0--disable-libssh2 --e=
nable-debug \
> > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0--prefix=3D${PREFIX} =
--cc=3D${CC} --enable-docs --
> > > disable-kvm \
> > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0--disable-linux-user =
--disable-linux-aio --disable-
> > > xen \
> > > +=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0--disable-rdma \
> > > =A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0=A0--smbd=3D${LOCALBASE}=
/sbin/smbd --enable-debug-info
> > > --python=3D${PYTHON_CMD} \ --extra-cflags=3D-I${WRKSRC}\
> > > -I${LOCALBASE}/include\
> > > -DPREFIX=3D\\\"\"${PREFIX}\\\"\"
> > >=20
> > > -Dimitry
> > >  =20
> >=20
> >  =20
>=20
> The rdma stuff is part of OFED, it comes from sys/ofed/include. =A0Other
> parts of it are in sys/contrib/rmda and src/contrib/ofed. =A0Maybe it
> only gets installed if you are using certain kernel options? =A0I'm not
> sure.
>=20
> -- Ian

I have "WITH_OFED=3DYES" defined in /etc/src.conf.

After a make buildworld, all the rdma stuff is in place again.

I think the patch above for the Makefile is appropriate.

--=20
O. Hartmann

Ich widerspreche der Nutzung oder =DCbermittlung meiner Daten f=FCr
Werbezwecke oder f=FCr die Markt- oder Meinungsforschung (=A7 28 Abs. 4 BDS=
G).

--Sig_/hSVqKZ6/tfeX7HqteQg73r4
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGWOZwAKCRDS528fyFhY
lMAJAgCc1P7jaHsnQU0r+5Dkhseyq+qOszmz1AGAIgQubAAzp3CJJC7L60gfLsRz
Fo7WSubnjKhQKgVx6jKaIfUvYJUVAgClreBwDq3p4JTfElGQ/CZLIFh6/Mape3fJ
nz0PX03S04PwOSn1hUGJeLYudQ2ObqUPHo8eiwvSCXJ4yeXGaW9e
=pawT
-----END PGP SIGNATURE-----

--Sig_/hSVqKZ6/tfeX7HqteQg73r4--

From owner-freebsd-current@freebsd.org  Thu Dec 29 23:32:12 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 50A1FC9628A
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Thu, 29 Dec 2016 23:32:12 +0000 (UTC)
 (envelope-from rwmaillists@googlemail.com)
Received: from mail-wm0-x244.google.com (mail-wm0-x244.google.com
 [IPv6:2a00:1450:400c:c09::244])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id EA5B41A88
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 23:32:11 +0000 (UTC)
 (envelope-from rwmaillists@googlemail.com)
Received: by mail-wm0-x244.google.com with SMTP id c85so30337548wmi.1
 for <freebsd-current@freebsd.org>; Thu, 29 Dec 2016 15:32:11 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=googlemail.com; s=20161025;
 h=date:from:to:subject:message-id:in-reply-to:references:mime-version
 :content-transfer-encoding;
 bh=4viRJFUxTmdKNP/a31DL8E3HrCwJCSUt4BdbiPg32WE=;
 b=fQpdrnx2nzGV07mRLxeSlt2sA8ddfdsN5vnsvOrFWTuCjFJk/2FjNQSgeujCdqacLk
 HH0cIr8SrXBBa2512TFU2eTgImBktY6zIiwt9+PE9EfPkW3Rtj0c2rX+XnBGx3u5hdEF
 dAVugsAUGm2gvJgQfZgygZcUltUw/p1HutYUrS1oqku8AaEzAP3nXHYH3SXwIdS+K9xJ
 1xbWH2Ue/LVyj7CDFavjQi3SbgbzvSChl/LZP58GHNL/54Zkl2aM5el+0/mxNlqiLSFl
 M0mpoJuEv6QZC06LSFfySRm6QV/UT6dDiJ/E8tbj6eTGuuaCylzIX+0L5vmMYTMg3rEi
 kbsQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:date:from:to:subject:message-id:in-reply-to
 :references:mime-version:content-transfer-encoding;
 bh=4viRJFUxTmdKNP/a31DL8E3HrCwJCSUt4BdbiPg32WE=;
 b=GPgd0hzYSThkkFAMxKrIfNd0D1pJKtPln44h5JSHW3znP3ITd3G7/e4wXmSc9x7F3o
 8h28fWa/twvJ0XaXDaMCXSssTUMzwiwhOUzGOMBIKhgwC3ONiHig5u2MxnwqwVydIBUt
 nuu1vcHwOEBiCOqit9i2NfJnzY5T0qGOhydoccnOqgBKAFa8ekULQScoz34feWkLmCNu
 AbYovxDxv7E24nKdySp70Totxl+tMDrWphwRGNpTECfq7j02J6QQptV1wWpaUiAIduLd
 YHqCYWjMwdnuN/fDXazs6Pk/zCkDCnmhnTDjSXdXtY/uPv5XPcZ3bXcCf4LF5EnksncQ
 SSXw==
X-Gm-Message-State: AIkVDXJbtfIx8j0kRprVE5KNMYbVsWUTvszEN9ZFc0J+L8t3XJoe+Av7OAkiFhpNBHU46A==
X-Received: by 10.28.45.142 with SMTP id t136mr44493698wmt.110.1483054329764; 
 Thu, 29 Dec 2016 15:32:09 -0800 (PST)
Received: from gumby.homeunix.com ([81.17.24.158])
 by smtp.gmail.com with ESMTPSA id f76sm67526711wmd.15.2016.12.29.15.32.08
 for <freebsd-current@freebsd.org>
 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256);
 Thu, 29 Dec 2016 15:32:08 -0800 (PST)
Date: Thu, 29 Dec 2016 23:32:05 +0000
From: RW <rwmaillists@googlemail.com>
To: freebsd-current@freebsd.org
Subject: Re: A question about updating src & ports
Message-ID: <20161229233205.2feb1125@gumby.homeunix.com>
In-Reply-To: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
References: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
X-Mailer: Claws Mail 3.14.1 (GTK+ 2.24.29; amd64-portbld-freebsd10.3)
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Thu, 29 Dec 2016 23:32:12 -0000

On Thu, 29 Dec 2016 18:11:38 +0800
blubee blubeeme wrote:

> Can I mix portsnap fetch update or should I just continue to use svn
> update /usr/ports

As a general rule don't mix methods in the same directory. 

From owner-freebsd-current@freebsd.org  Fri Dec 30 00:59:19 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 84BFAC97CB8;
 Fri, 30 Dec 2016 00:59:19 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 6C91B1F7A;
 Fri, 30 Dec 2016 00:59:19 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id A088B4B8;
 Fri, 30 Dec 2016 00:59:19 +0000 (UTC)
Date: Fri, 30 Dec 2016 00:59:17 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: avos@FreeBSD.org, dim@FreeBSD.org, kan@FreeBSD.org, gonzo@FreeBSD.org, 
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <1058510463.156.1483059559665.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <976269124.154.1483050013868.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <976269124.154.1483050013868.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4516 - Fixed
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: SUCCESS
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 00:59:19 -0000

FreeBSD_HEAD_i386 - Build #4516 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4516/console

Change summaries:

310793 by avos:
rtwn: silence compiler warning (-Wmaybe-uninitialized).

Reported by:	adrian

310792 by dim:
Revert r310775 for now, until we can figure out why it does not seem to
work properly when cross-building.  Sorry for the breakage.

310791 by gonzo:
[qemu] Fix VERSATILEPB kernel boot in QEMU broken by r300968

QEMU does not implement hardware debug registers so when
dbg_monitor_is_enabled is called kernel receives "invalid instruction"
exception. QEMU implements only DIDR register and on read returns all
zeroes to indicate that it doesn't support other registers. Real
hardware has Version bits set.

MFC after:	1 week

310790 by kan:
Use TARGET_ARCH instead of MACHINE_ARCH for MIPS kernel

MACHINE_ARCH is overwritten by config file and will not
contain -hf suffix, so uname -p reported by kernel will
be wrong.

310789 by kan:
Use compiler driver to build relocatable object

This works better with external toolchains where LD
will not necessarily defailt to emulation we want.
Compiler driver knows better.


From owner-freebsd-current@freebsd.org  Fri Dec 30 19:23:52 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id EBE4EC98AB5
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 19:23:52 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.17.21])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4CE6014E2
 for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016 19:23:51 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([92.224.249.53]) by mail.gmx.com
 (mrgmx103 [212.227.17.168]) with ESMTPSA (Nemesis) id
 0LgqEs-1cq09c19uA-00oEH4 for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016
 20:23:46 +0100
Date: Fri, 30 Dec 2016 20:23:38 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: FreeBSD CURRENT <freebsd-current@freebsd.org>
Subject: r 310850: buildworld failure due to: nandfs.c:1049:15: error: too
 many arguments to function call,
Message-ID: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/D1W4g.1QklXUeW2ystq8q3R"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:vbegT0it53DME9had3gI0tnnZQCc7hJPRIkoVZkRRYeJ9WWnlTc
 5otnRcsLKheuR82yolue0tMboc6if262kOIyw3O09vBZhpmRUqvfYRnBk/j/j1A/aaO/JoK
 T3723b0xv3SG5MMHmB54tA+Fw9PX3kWIXmT4saLgdNNdPcfbTjfYQtiWLD4tu4q8FaRgtkQ
 828zxWYAC3x8uY+MLHLpw==
X-UI-Out-Filterresults: notjunk:1;V01:K0:/14FELllDMc=:wlwQkZ1xOgLqQIjudu9CPE
 tfWDjr3P2w9syOlouygsCbcbb3Veddz4quYAqORDSx5Nn3DAB0Mc2JVkW7B2ZDQTZxy4Aplvq
 8jGZTBKPNDpFFIrSXaZltttX5436Jzo9868EDM48n8tln+7pyr0V3kQIUeSgEtRZrgc/TqRNI
 mHEti0LLb6ilOlWVkH0AbZC/LvAH5SAM42hSD3sO1HhV/qi9VOG8Z5SvPAmCN9uDYGsEt7dzj
 +KhGgSJQq9fWLxq9XajiSwv1lpFvNvD4s3VJkolFHwHTOwirq9/9Acip11fAXOKft/8aimAf/
 Vpw6ge2kOGM+25j55Bp5kgVpfcflvmHc0WJXa1KdHdLe7EDZKEvahlXlmgz6bbGYccvuO86zw
 ECUu9xAbTPRK1roFItGhpN3uA6yPna0l1q6L5e3r1B2cGJP37mLinFTwpDCSVCg3fUkLfOwKk
 +GeqioXwisB3AA8GaKqN5vG4jxydw00OWIGhARCdQDjcLmi6ZjwJzByZfg7/n5Edcotwt09rf
 JZ85IiWH9eJoPwhGhvjSJ+21fvut3gYxEc5vl3uBi9FQk2UPGPqLy95MEtwqNAZjwyE72Y+SG
 X5wiJ3GhejP9jlCisCVvp5f0XEooWp5oRPbHuzQ6OZuGS42wycH45wSH9jzaIuoiXB8fBdKAQ
 q9OlFCSPmwG7uFBHd1cWwLvpC5i/zJ87KgeIIGMaPvoqMXgEtNPNbPO88/yM6O9lynBJY8uad
 bDvDE98pm8w8oQSJFTQa5gpAFZnvcApo19SSXp+aOCz8S/sjyyE+Z21QYcK5DXrwG8pJ1b4nP
 f3cyasggMndepg/U4NEST6w0WagWpJwPQgiCAYjaZsdOTUFKfj5dEhpr05avGIp2xKXPpWBcW
 6JzYYt5e0ZB14XGRN9gy4R5oToOE28ZoK37NykRKtbtMQEX1LfB/jsEHbJqy5+TbSQemPMvp2
 pBzLamzJZs3SSxIlk3sTLpVSvEcqkxDfL8ZZNjczJY+Gx5cYE2EjYw+sf1jGfqpR8UBCYLw1/
 e/nDlpsPlAj+zqm6CWL2ME0YywdbIcIDX1Ji47YBIGlE
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 19:23:53 -0000

--Sig_/D1W4g.1QklXUeW2ystq8q3R
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

Recent update of CURRENT to 2310850 fails with buildworld error:

[...]
=3D=3D=3D> lib/atf/libatf-c++ (all)
--- all_subdir_lib/libstand ---
--- nandfs.o ---
/usr/src/lib/libstand/nandfs.c:1049:15: error: too many arguments to functi=
on call,
expected 6, have 7 buffer, NULL);
                            ^~~~
/usr/obj/usr/src/tmp/usr/include/sys/_null.h:32:14: note: expanded from mac=
ro 'NULL'
#define NULL    ((void *)0)
                ^~~~~~~~~~~
1 error generated.
*** [nandfs.o] Error code 1


--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/D1W4g.1QklXUeW2ystq8q3R
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGa0OgAKCRDS528fyFhY
lEw1AgCVg62zuT5TyfFfOOiQqAhMCxjkg6BHn5mdDnfiHcEgVxuBs3Ckyd2NXZ0i
BFp1zTNVTgPxOXPVJITt4C7Xs9qsAgCCDcuoqy33DyI/10itgwYgZo+u1qAw9gZM
C4/0fs31tfawuPLVLyRugwJz0LGO0bahVomYrEG6pCruOdsAmFFm
=Ytur
-----END PGP SIGNATURE-----

--Sig_/D1W4g.1QklXUeW2ystq8q3R--

From owner-freebsd-current@freebsd.org  Fri Dec 30 19:35:17 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 6295DC98E66
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 19:35:17 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from tensor.andric.com (tensor.andric.com
 [IPv6:2001:7b8:3a7:1:2d0:b7ff:fea0:8c26])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "tensor.andric.com",
 Issuer "COMODO RSA Domain Validation Secure Server CA" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 2928F1F4D;
 Fri, 30 Dec 2016 19:35:17 +0000 (UTC) (envelope-from dim@FreeBSD.org)
Received: from [IPv6:2001:7b8:3a7::5974:e26f:ec92:4d78] (unknown
 [IPv6:2001:7b8:3a7:0:5974:e26f:ec92:4d78])
 (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by tensor.andric.com (Postfix) with ESMTPSA id A8BE2194A9;
 Fri, 30 Dec 2016 20:35:13 +0100 (CET)
Content-Type: multipart/signed;
 boundary="Apple-Mail=_750BFABF-EC7C-4C41-858F-F0A5871949EA";
 protocol="application/pgp-signature"; micalg=pgp-sha1
Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\))
Subject: Re: r 310850: buildworld failure due to: nandfs.c:1049:15: error: too
 many arguments to function call, 
From: Dimitry Andric <dim@FreeBSD.org>
In-Reply-To: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
Date: Fri, 30 Dec 2016 20:35:06 +0100
Cc: FreeBSD CURRENT <freebsd-current@freebsd.org>,
 Toomas Soome <tsoome@FreeBSD.org>
Message-Id: <30C71053-94F3-44D1-9089-CE31E67912DF@FreeBSD.org>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
To: "O. Hartmann" <ohartmann@walstatt.org>
X-Mailer: Apple Mail (2.3124)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 19:35:17 -0000


--Apple-Mail=_750BFABF-EC7C-4C41-858F-F0A5871949EA
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
	charset=us-ascii

On 30 Dec 2016, at 20:23, O. Hartmann <ohartmann@walstatt.org> wrote:
>=20
> Recent update of CURRENT to 2310850 fails with buildworld error:
>=20
> [...]
> =3D=3D=3D> lib/atf/libatf-c++ (all)
> --- all_subdir_lib/libstand ---
> --- nandfs.o ---
> /usr/src/lib/libstand/nandfs.c:1049:15: error: too many arguments to =
function call,
> expected 6, have 7 buffer, NULL);
>                            ^~~~
> /usr/obj/usr/src/tmp/usr/include/sys/_null.h:32:14: note: expanded =
from macro 'NULL'
> #define NULL    ((void *)0)
>                ^~~~~~~~~~~
> 1 error generated.
> *** [nandfs.o] Error code 1

This looks like the culprit to me:

On 30 Dec 2016, at 20:06, Toomas Soome <tsoome@FreeBSD.org> wrote:
> Author: tsoome
> Date: Fri Dec 30 19:06:29 2016
> New Revision: 310850
> URL: https://svnweb.freebsd.org/changeset/base/310850
>=20
> Log:
>  dosfs support in libstand is broken since r298230
>=20
>  Apparently the libstand dosfs optimization is a bit too optimistic
>  and did introduce possible memory corruption.
>=20
>  This patch is backing out the bad part and since this results in
>  dosfs reading full blocks now, we can also remove extra offset =
argument
>  from dv_strategy callback.
>=20
>  The analysis of the issue and the backout patch is provided by =
Mikhail Kupchik.
>=20
>  PR:		214423
>  Submitted by:	Mikhail Kupchik
>  Reported by:	Mikhail Kupchik
>  Reviewed by:	bapt, allanjude
>  Approved by:	allanjude (mentor)
>  MFC after:	1 month
>  Differential Revision:	https://reviews.freebsd.org/D864

For some reason, your build seems to pick up an older stand.h header?

-Dimitry


--Apple-Mail=_750BFABF-EC7C-4C41-858F-F0A5871949EA
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Version: GnuPG/MacGPG2 v2.0.30

iEYEARECAAYFAlhmtvEACgkQsF6jCi4glqNBxQCg4pXuGX/ceECiXHNY5tPbYEEJ
9vEAoIwuYogT22U/Xez+TkIa+Rx/Wbzj
=9ywB
-----END PGP SIGNATURE-----

--Apple-Mail=_750BFABF-EC7C-4C41-858F-F0A5871949EA--

From owner-freebsd-current@freebsd.org  Fri Dec 30 20:07:46 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 272DBC978D5
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 20:07:46 +0000 (UTC)
 (envelope-from o.hartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.15.18])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 818231114
 for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016 20:07:44 +0000 (UTC)
 (envelope-from o.hartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([92.224.249.53]) by mail.gmx.com
 (mrgmx003 [212.227.17.190]) with ESMTPSA (Nemesis) id
 0MSutp-1bvrZs0xIT-00RuSN for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016
 21:07:37 +0100
Date: Fri, 30 Dec 2016 21:07:29 +0100
From: "O. Hartmann" <o.hartmann@walstatt.org>
To: freebsd-current@freebsd.org
Subject: r 310850: buildkernel failure: ip_carp.c:615:28: error: incomplete
 definition
Message-ID: <20161230210729.5ba48a3b@thor.walstatt.dynvpn.de>
In-Reply-To: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/DNdefRRBvwKTFoAZg1gYEUT"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:D6PcoP3wF4uDiIKt3bO4Wp99ZFQ7lHZD8X4H3dW6KH7J4b+PLkM
 YCuR8RXXDC+ZrVpd53unQ8G5OxqogTslz9gT3W3YTUg5Mifj0sFejlq1cHFuv8qIgL/9SrZ
 e8fMYPgNYbWKL0WuCqrQzAx08L/rcAYNX82Gi0Md413F9gtdDfJkT2MEMZcyDULNHf7kCI0
 YncfZvhoAW26JiM0cIVTg==
X-UI-Out-Filterresults: notjunk:1;V01:K0:SGb8Xba0c6o=:K1Rr7rFf9oRPZt07AxjDk4
 CPqjtT/qxTpD8+9fh4vkFFziOId2bU8+qySIQVQpaDOGwilU5dMCqi4OBv4/RsyDqWciAaXl/
 4nAKx7puxifkIUjVtlk2C4Df3rQwzqEuMFG2P/Lr42EIiVVo7ddPiXilyCkKYD+b7gogYdzAz
 PivkY2QC9iKXgKezYZ7rJM1AWGvderylKbZo9CqP+UapDPMs2jY6off3fyZ5QH4roGcqbwbrK
 ElNZNxTz2+3PaYtpRIemnfLdaB7ejPQqdrj0aO/1CHo0ol6D/54RUZCO5v8qdpk2FUFxy3XRC
 iparnyi2Pm447Zgy4OGqGeA+Wt7KrF2OICMxwSgJgkwJ5PPrCC0j1KXMSSM+W3Zbigzzk2HzL
 M1bg+r8XFhKoZVY/ZkkrFwaIW/j2zfD04X4Ib9PxpY8IL3DakV21Z6mbmcSWal54i+9BOp61u
 HnHStCc1QQTy+D2G2gtaH6bq58jyWrTSrmXwgcSH/yp1xU3xGkJjZMz0dm/ms2LG1xmWlSFTm
 trDktkOPqw7jR6ipS606DcVjPtPdD4ysvHGdNuNWGZIBPJPiSQ3SwzMhtLOd4iViTuYQQzeOj
 9JmYU+IHjnr0zq0gFQINz4mwRtvkObRbnqidp7OaIEiuPf514Fi3wZS7qg3I8Li7mg/xEnpYM
 EQ5xAzZ4kBengpuE3UPUbN0bVo9ZQDRZR7wQvn/AvtIC2Cr9E5EFjTgxLvMCYP6+ub7tXYcvK
 t9FhB7XizVLBOmIMxjtROUtvvAUCoMgeP5HZqA1WVGDHyWcYicfcrbTNmo8=
X-Mailman-Approved-At: Fri, 30 Dec 2016 20:38:56 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 20:07:46 -0000

--Sig_/DNdefRRBvwKTFoAZg1gYEUT
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable


[...]

=3D=3D=3D> cas (all)
--- all_subdir_carp ---
--- ip_carp.o ---
/usr/src/sys/modules/carp/../../netinet/ip_carp.c:615:28: error: incomplete=
 definition of
type 'struct ip6_hdr' return (memcmp(&in6, &ip6->ip6_src, sizeof(in6)) =3D=
=3D 0);
                                      ~~~^
/usr/src/sys/netinet6/in6.h:662:8: note: forward declaration of 'struct ip6=
_hdr'
struct ip6_hdr;
       ^
--- all_subdir_cam ---
Building /usr/obj/usr/src/sys/WALHALL/modules/usr/src/sys/modules/cam/scsi_=
pass.o
--- all_subdir_carp ---
1 error generated.
*** [ip_carp.o] Error code 1

--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/DNdefRRBvwKTFoAZg1gYEUT
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGa+gQAKCRDS528fyFhY
lLKUAgCMBq5HRCQJkfNqDKec8rtYCUg1y6bqCDqEWx1G6nTQdhyLgt4agfbDrIrd
j6WMjB7pTUl3kD2UoqLPRAiWqy9mAf4zWjKEwGxzReTEZhcevE4UDTsjpR9JTeR4
9L1PSPKfcYvPyoA6rGiOyfsxqFzDU8B6KKdhPmYmScqZeIfSLPIJ
=7OOy
-----END PGP SIGNATURE-----

--Sig_/DNdefRRBvwKTFoAZg1gYEUT--

From owner-freebsd-current@freebsd.org  Fri Dec 30 20:40:40 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7B7EBC987DF
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 20:40:40 +0000 (UTC) (envelope-from tsoome@me.com)
Received: from st13p35im-asmtp004.me.com (st13p35im-asmtp004.me.com
 [17.164.199.67])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 53B8A194E;
 Fri, 30 Dec 2016 20:40:40 +0000 (UTC) (envelope-from tsoome@me.com)
Received: from process-dkim-sign-daemon.st13p35im-asmtp004.me.com by
 st13p35im-asmtp004.me.com
 (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016))
 id <0OJ000G00JHYTH00@st13p35im-asmtp004.me.com>; Fri,
 30 Dec 2016 19:40:33 +0000 (GMT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=me.com; s=4d515a;
 t=1483126833; bh=wo27C4d6IeYg5x4rXfhohPWrap5+Gvz0+s0gedQchco=;
 h=Content-type:MIME-version:Subject:From:Date:Message-id:To;
 b=TFLqqvT+cFmdWLFt72U8tEw8EUqJMuV2mCjNQ1HkrlkFTbQwIB8RpCPCu7ks70eVT
 8nZ6O/saISRaa31mzoO6vCq7LUyUdlBG4cytQSLABC3qtBZP6aM6ha5+TjdaC+8t8q
 hVkMZuIekSgrX26ehhgROimGQl0oKe5LxX2dNSPTRv1KD7+mB63zrokOX4PDqrUqp/
 qbqVSnKujJsslRQqWv+Q8EJqDE/we3ZAdOH8THmEDJH0Wq//TG11seQE4preLmfSSj
 vOGZEE/pau6sCvwU++Kg7SokMGUs7dhGcgvhcPwsSEOzWpjfZS9G6J59A8jH7VeORs
 KuNVhLikG7dfw==
Received: from nazgul.lan (220-90-235-80.dyn.estpak.ee [80.235.90.220])
 by st13p35im-asmtp004.me.com
 (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016))
 with ESMTPSA id <0OJ0002I4JZGIP10@st13p35im-asmtp004.me.com>; Fri,
 30 Dec 2016 19:40:33 +0000 (GMT)
X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,,
 definitions=2016-12-30_14:,, signatures=0
X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
 clxscore=1034 suspectscore=2 malwarescore=0 phishscore=0 adultscore=0
 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1
 engine=8.0.1-1603290000 definitions=main-1612300307
Content-type: text/plain; charset=utf-8
MIME-version: 1.0 (Mac OS X Mail 10.2 \(3259\))
Subject: Re: r 310850: buildworld failure due to: nandfs.c:1049:15: error: too
 many arguments to function call,
From: Toomas Soome <tsoome@me.com>
In-reply-to: <30C71053-94F3-44D1-9089-CE31E67912DF@FreeBSD.org>
Date: Fri, 30 Dec 2016 21:40:27 +0200
Cc: "O. Hartmann" <ohartmann@walstatt.org>,
 FreeBSD CURRENT <freebsd-current@freebsd.org>,
 Toomas Soome <tsoome@FreeBSD.org>
Content-transfer-encoding: quoted-printable
Message-id: <F2CCA263-F1A7-410A-902D-3AEC4A23E9A7@me.com>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
 <30C71053-94F3-44D1-9089-CE31E67912DF@FreeBSD.org>
To: Dimitry Andric <dim@FreeBSD.org>
X-Mailer: Apple Mail (2.3259)
X-Mailman-Approved-At: Fri, 30 Dec 2016 20:49:59 +0000
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 20:40:40 -0000


> On 30. dets 2016, at 21:35, Dimitry Andric <dim@FreeBSD.org> wrote:
>=20
> On 30 Dec 2016, at 20:23, O. Hartmann <ohartmann@walstatt.org> wrote:
>>=20
>> Recent update of CURRENT to 2310850 fails with buildworld error:
>>=20
>> [...]
>> =3D=3D=3D> lib/atf/libatf-c++ (all)
>> --- all_subdir_lib/libstand ---
>> --- nandfs.o ---
>> /usr/src/lib/libstand/nandfs.c:1049:15: error: too many arguments to =
function call,
>> expected 6, have 7 buffer, NULL);
>>                           ^~~~
>> /usr/obj/usr/src/tmp/usr/include/sys/_null.h:32:14: note: expanded =
from macro 'NULL'
>> #define NULL    ((void *)0)
>>               ^~~~~~~~~~~
>> 1 error generated.
>> *** [nandfs.o] Error code 1
>=20
> This looks like the culprit to me:
>=20
> On 30 Dec 2016, at 20:06, Toomas Soome <tsoome@FreeBSD.org> wrote:
>> Author: tsoome
>> Date: Fri Dec 30 19:06:29 2016
>> New Revision: 310850
>> URL: https://svnweb.freebsd.org/changeset/base/310850
>>=20
>> Log:
>> dosfs support in libstand is broken since r298230
>>=20
>> Apparently the libstand dosfs optimization is a bit too optimistic
>> and did introduce possible memory corruption.
>>=20
>> This patch is backing out the bad part and since this results in
>> dosfs reading full blocks now, we can also remove extra offset =
argument
>> from dv_strategy callback.
>>=20
>> The analysis of the issue and the backout patch is provided by =
Mikhail Kupchik.
>>=20
>> PR:		214423
>> Submitted by:	Mikhail Kupchik
>> Reported by:	Mikhail Kupchik
>> Reviewed by:	bapt, allanjude
>> Approved by:	allanjude (mentor)
>> MFC after:	1 month
>> Differential Revision:	https://reviews.freebsd.org/D864
>=20
> For some reason, your build seems to pick up an older stand.h header?
>=20
> -Dimitry
>=20


oh, apparently I *still* did miss one strategy call in nandfs..  Sorry, =
I=E2=80=99ll try to fix it asap.

rgds,
toomas


From owner-freebsd-current@freebsd.org  Fri Dec 30 21:00:21 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id C6B4FC98EC6
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 21:00:21 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from mout.gmx.net (mout.gmx.net [212.227.17.20])
 (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mout.gmx.net", Issuer "TeleSec ServerPass DE-2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4189019D5;
 Fri, 30 Dec 2016 21:00:20 +0000 (UTC)
 (envelope-from ohartmann@walstatt.org)
Received: from thor.walstatt.dynvpn.de ([92.224.249.53]) by mail.gmx.com
 (mrgmx101 [212.227.17.168]) with ESMTPSA (Nemesis) id
 0MOSNd-1cQfJT3P7N-005n3O; Fri, 30 Dec 2016 22:00:15 +0100
Date: Fri, 30 Dec 2016 22:00:07 +0100
From: "O. Hartmann" <ohartmann@walstatt.org>
To: Toomas Soome <tsoome@me.com>
Cc: Dimitry Andric <dim@FreeBSD.org>, "O. Hartmann"
 <ohartmann@walstatt.org>, FreeBSD CURRENT <freebsd-current@freebsd.org>,
 Toomas Soome <tsoome@FreeBSD.org>
Subject: Re: r 310850: buildworld failure due to: nandfs.c:1049:15: error:
 too many arguments to function call,
Message-ID: <20161230220007.517c6586@thor.walstatt.dynvpn.de>
In-Reply-To: <F2CCA263-F1A7-410A-902D-3AEC4A23E9A7@me.com>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
 <30C71053-94F3-44D1-9089-CE31E67912DF@FreeBSD.org>
 <F2CCA263-F1A7-410A-902D-3AEC4A23E9A7@me.com>
Organization: WALSTATT
User-Agent: OutScare 3.1415926
X-Operating-System: ImNotAnOperatingSystem 3.141592527
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 boundary="Sig_/eJ279oHP8hIxcOSXE4.DoHp"; protocol="application/pgp-signature"
X-Provags-ID: V03:K0:QmXahGl7lqCm2LWolU2DKX2lh9hA7Fp+p/mxVougtS48O3tpyf7
 lSOEt+RefprNP+bnHIHRAesFLgX6H/D1s7ziE9tJLnCJ343nVu+OXYF6ToXyjEHqbOLEj2P
 sLCKw4uy6d7eXJ6aTvYz0JR495ZykaCIN3hjUFfaIS7XStTtM7G4GrQd23QZQdMLqcUXsHT
 i7R/jXrr8naHkZryZi9PA==
X-UI-Out-Filterresults: notjunk:1;V01:K0:4cUe7RHKIVs=:nL/il28nykocSG0cJFhe6g
 d9ylRkhz+dSlYwgmROSBxSFgaIg47rzQxqPERYLU9sH3p7ufKVYtabyn8l0RD8aQrV0oeFLQm
 nHC+pIPxeT69bIW3uvea4vcjC06Sq3y0ZJ/bPXF5YrTkusK/lags4+9WQ09ZCBKraaS0JUj7e
 2QJ+pbSN2EjmP4u5+6izKh0/XvcnCutPfx/E2kFGlEn+zz97tjeO9cdR0mla8yyJXwez+/FL9
 9q7B+4Bb5Yc12mFu1Q/oeZLF/4kGd54AeonQqAHyp7kFDS+r/7SEaJ9wCk4pdCNo7IBvNLp7h
 mAHdXkRd/i+dKD3M6lj/jWNqjkhaoVACQ6S8N1EeYjAfhEVEe5r1Q9tSmMt/wTBYleDLDuym3
 UHrsdO+VBgasgR9R0VP6s5syX47/4hMBoy1j+hubPDRg7Vp+8+xmnlikvtMDxmkmxM/n3COEy
 FsZ7AarqprvVXey8QJRBAuUYloxtsMzHqi+kFSVDgz+9dp4QHXVwJG387Bffd4Rx+2ZZFTfqN
 e8sspUYElDKSwzI6+adqn0CzlvH4ATbDuzAK/dwGXYqV26Brhjw50C1iH2Nl2PP4gPbqr9EKL
 NBvtmI9hW+S5MUI8R9JDU9RG9dSDMo9tyHLiamaEg3ALSFK649mHqeWqdAz3ERbkrOoGthnMI
 VE22dlNfeMDeb0Gug1hQNPR39XqeiFXXr5yR0j/dpAZ9qEytPoHFrQG3nl0syzA3fkhqqNQf5
 /1//3Rzhei3rNSBHf8OPWCM/wHFIyfY3T/JEgSFsv+TZWy5gv2u5ePl62Ok=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 21:00:21 -0000

--Sig_/eJ279oHP8hIxcOSXE4.DoHp
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable

Am Fri, 30 Dec 2016 21:40:27 +0200
Toomas Soome <tsoome@me.com> schrieb:

> > On 30. dets 2016, at 21:35, Dimitry Andric <dim@FreeBSD.org> wrote:
> >=20
> > On 30 Dec 2016, at 20:23, O. Hartmann <ohartmann@walstatt.org> wrote: =
=20
> >>=20
> >> Recent update of CURRENT to 2310850 fails with buildworld error:
> >>=20
> >> [...] =20
> >> =3D=3D=3D> lib/atf/libatf-c++ (all) =20
> >> --- all_subdir_lib/libstand ---
> >> --- nandfs.o ---
> >> /usr/src/lib/libstand/nandfs.c:1049:15: error: too many arguments to f=
unction call,
> >> expected 6, have 7 buffer, NULL);
> >>                           ^~~~
> >> /usr/obj/usr/src/tmp/usr/include/sys/_null.h:32:14: note: expanded fro=
m macro 'NULL'
> >> #define NULL    ((void *)0)
> >>               ^~~~~~~~~~~
> >> 1 error generated.
> >> *** [nandfs.o] Error code 1 =20
> >=20
> > This looks like the culprit to me:
> >=20
> > On 30 Dec 2016, at 20:06, Toomas Soome <tsoome@FreeBSD.org> wrote: =20
> >> Author: tsoome
> >> Date: Fri Dec 30 19:06:29 2016
> >> New Revision: 310850
> >> URL: https://svnweb.freebsd.org/changeset/base/310850
> >>=20
> >> Log:
> >> dosfs support in libstand is broken since r298230
> >>=20
> >> Apparently the libstand dosfs optimization is a bit too optimistic
> >> and did introduce possible memory corruption.
> >>=20
> >> This patch is backing out the bad part and since this results in
> >> dosfs reading full blocks now, we can also remove extra offset argument
> >> from dv_strategy callback.
> >>=20
> >> The analysis of the issue and the backout patch is provided by Mikhail=
 Kupchik.
> >>=20
> >> PR:		214423
> >> Submitted by:	Mikhail Kupchik
> >> Reported by:	Mikhail Kupchik
> >> Reviewed by:	bapt, allanjude
> >> Approved by:	allanjude (mentor)
> >> MFC after:	1 month
> >> Differential Revision:	https://reviews.freebsd.org/D864 =20
> >=20
> > For some reason, your build seems to pick up an older stand.h header?
> >=20
> > -Dimitry
> >  =20
>=20
>=20
> oh, apparently I *still* did miss one strategy call in nandfs..  Sorry, I=
=E2=80=99ll try to fix
> it asap.
>=20
> rgds,
> toomas


That has been fixed, thanks.

But another bug in CARP makes buildkernel failing ...

--=20
O. Hartmann

Ich widerspreche der Nutzung oder =C3=9Cbermittlung meiner Daten f=C3=BCr
Werbezwecke oder f=C3=BCr die Markt- oder Meinungsforschung (=C2=A7 28 Abs.=
 4 BDSG).

--Sig_/eJ279oHP8hIxcOSXE4.DoHp
Content-Type: application/pgp-signature
Content-Description: OpenPGP digital signature

-----BEGIN PGP SIGNATURE-----

iLUEARMKAB0WIQQZVZMzAtwC2T/86TrS528fyFhYlAUCWGbK2AAKCRDS528fyFhY
lC6zAgCemxE4iN3NOBtxj80aJ1QqKJYKWgHbCcHYyqgF9qryW1CA1ecwli+INTTi
uTMw2Yw8bFRVMEh5YoOPf9y/TACTAgCmVY6+v8QabJ6JSaf/6O4DPtURDiK/JZ2p
6aoSW8+NiijmuBd5zxCWDhZ/b1twnasM7vH8WSIasgYa77niy43g
=MsLd
-----END PGP SIGNATURE-----

--Sig_/eJ279oHP8hIxcOSXE4.DoHp--

From owner-freebsd-current@freebsd.org  Fri Dec 30 20:46:09 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 61D73C98B08
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 20:46:09 +0000 (UTC) (envelope-from tsoome@me.com)
Received: from st13p35im-asmtp003.me.com (st13p35im-asmtp003.me.com
 [17.164.199.66])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 37AFF1081;
 Fri, 30 Dec 2016 20:46:09 +0000 (UTC) (envelope-from tsoome@me.com)
Received: from process-dkim-sign-daemon.st13p35im-asmtp003.me.com by
 st13p35im-asmtp003.me.com
 (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016))
 id <0OJ000600JWYXJ00@st13p35im-asmtp003.me.com>; Fri,
 30 Dec 2016 19:46:02 +0000 (GMT)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=me.com; s=4d515a;
 t=1483127162; bh=U8G06dYgRJ+5C/1Jj7AqcARtw+zilf/huy41eFnoGQ0=;
 h=From:Message-id:Content-type:MIME-version:Subject:Date:To;
 b=Q3NAjmQXtQDLr+R6tHoFtarg012Dhx4pIVvjf5z5I5ijDeJFa0lOjl6uqXKEqoDuO
 69RnLhkMviDUqEuC2NenCS1fpf9I86ugxbsC0PrfBkAjhONrbRnvYB6lMCRDFMbc05
 e3e1KXd/pZloenwgTz8W2PmAbxQGIBNsL4EZxYoufGDJEmm5/cKeFi6U1cNVpJfPxy
 stqciix+6UlXYzNWLNKxJB4LnGpoa3yf1MJj5QmvRf6aJfL5CRyJQGpg+bxDu7e9qp
 F+pHNmfgXU6Q33t/AUcaTgbAF6ivk3SMqlkFCDBf1yiW6+LQ1mKr15RAxkdoiovogq
 BrMvraeMDL0Aw==
Received: from nazgul.lan (220-90-235-80.dyn.estpak.ee [80.235.90.220])
 by st13p35im-asmtp003.me.com
 (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016))
 with ESMTPSA id <0OJ0003V3K8NHP30@st13p35im-asmtp003.me.com>; Fri,
 30 Dec 2016 19:46:02 +0000 (GMT)
X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,,
 definitions=2016-12-30_14:,, signatures=0
X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0
 clxscore=1034 suspectscore=2 malwarescore=0 phishscore=0 adultscore=0
 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1
 engine=8.0.1-1603290000 definitions=main-1612300308
From: Toomas Soome <tsoome@me.com>
Message-id: <873A984F-324B-400B-93F5-2991C2FF7674@me.com>
MIME-version: 1.0 (Mac OS X Mail 10.2 \(3259\))
Subject: Re: r 310850: buildworld failure due to: nandfs.c:1049:15: error: too
 many arguments to function call,
Date: Fri, 30 Dec 2016 21:45:59 +0200
In-reply-to: <F2CCA263-F1A7-410A-902D-3AEC4A23E9A7@me.com>
Cc: "O. Hartmann" <ohartmann@walstatt.org>,
 FreeBSD CURRENT <freebsd-current@freebsd.org>,
 Toomas Soome <tsoome@FreeBSD.org>
To: Dimitry Andric <dim@FreeBSD.org>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
 <30C71053-94F3-44D1-9089-CE31E67912DF@FreeBSD.org>
 <F2CCA263-F1A7-410A-902D-3AEC4A23E9A7@me.com>
X-Mailer: Apple Mail (2.3259)
X-Mailman-Approved-At: Fri, 30 Dec 2016 21:05:14 +0000
Content-Type: text/plain;
	charset=utf-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 20:46:09 -0000


> On 30. dets 2016, at 21:40, Toomas Soome <tsoome@me.com> wrote:
>=20
>=20
>> On 30. dets 2016, at 21:35, Dimitry Andric <dim@FreeBSD.org> wrote:
>>=20
>> On 30 Dec 2016, at 20:23, O. Hartmann <ohartmann@walstatt.org> wrote:
>>>=20
>>> Recent update of CURRENT to 2310850 fails with buildworld error:
>>>=20
>>> [...]
>>> =3D=3D=3D> lib/atf/libatf-c++ (all)
>>> --- all_subdir_lib/libstand ---
>>> --- nandfs.o ---
>>> /usr/src/lib/libstand/nandfs.c:1049:15: error: too many arguments to =
function call,
>>> expected 6, have 7 buffer, NULL);
>>>                          ^~~~
>>> /usr/obj/usr/src/tmp/usr/include/sys/_null.h:32:14: note: expanded =
from macro 'NULL'
>>> #define NULL    ((void *)0)
>>>              ^~~~~~~~~~~
>>> 1 error generated.
>>> *** [nandfs.o] Error code 1
>>=20
>> This looks like the culprit to me:
>>=20
>> On 30 Dec 2016, at 20:06, Toomas Soome <tsoome@FreeBSD.org> wrote:
>>> Author: tsoome
>>> Date: Fri Dec 30 19:06:29 2016
>>> New Revision: 310850
>>> URL: https://svnweb.freebsd.org/changeset/base/310850
>>>=20
>>> Log:
>>> dosfs support in libstand is broken since r298230
>>>=20
>>> Apparently the libstand dosfs optimization is a bit too optimistic
>>> and did introduce possible memory corruption.
>>>=20
>>> This patch is backing out the bad part and since this results in
>>> dosfs reading full blocks now, we can also remove extra offset =
argument
>>> from dv_strategy callback.
>>>=20
>>> The analysis of the issue and the backout patch is provided by =
Mikhail Kupchik.
>>>=20
>>> PR:		214423
>>> Submitted by:	Mikhail Kupchik
>>> Reported by:	Mikhail Kupchik
>>> Reviewed by:	bapt, allanjude
>>> Approved by:	allanjude (mentor)
>>> MFC after:	1 month
>>> Differential Revision:	https://reviews.freebsd.org/D864
>>=20
>> For some reason, your build seems to pick up an older stand.h header?
>>=20
>> -Dimitry
>>=20
>=20
>=20
> oh, apparently I *still* did miss one strategy call in nandfs..  =
Sorry, I=E2=80=99ll try to fix it asap.
>=20

Please check: https://reviews.freebsd.org/D9003 =
<https://reviews.freebsd.org/D9003>

rgds,
toomas


From owner-freebsd-current@freebsd.org  Fri Dec 30 21:33:32 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id B6AD5C98923
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 21:33:32 +0000 (UTC)
 (envelope-from yaneurabeya@gmail.com)
Received: from mail-pg0-x241.google.com (mail-pg0-x241.google.com
 [IPv6:2607:f8b0:400e:c05::241])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 8CCA81F39;
 Fri, 30 Dec 2016 21:33:32 +0000 (UTC)
 (envelope-from yaneurabeya@gmail.com)
Received: by mail-pg0-x241.google.com with SMTP id i5so23134602pgh.2;
 Fri, 30 Dec 2016 13:33:32 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=subject:mime-version:from:in-reply-to:date:cc:message-id:references
 :to; bh=HcjtrhwAyNY3vqhipXgw8+S+VWom2+cu3xHb3Wj//YM=;
 b=ATbIK9qs5BlUkhpi7QvobiiCONeXuR1oBTdzCXA4FA/L9uhGPZGKrwGNoTsWKx1H4h
 eP2Y+/aSYsyaOMA82kUMgFVCuTRgSYzD9hYYd47GPuv1stUHaohlgCPWnhuZ8JPSlmcx
 ItMyf4eWNA7zD5FmQSK+osqMi3iUL7HVGhU9TaVR6EXwnKMQPocDkywrQjBhEWOZxD5K
 ubzwnSg4omW7aAP+HqKJ45/IUL03SNAX4Qo8kNkgxOsQIyFlkq+AyP+OpNUSJLhF7eXy
 oNP4bV+dn3pfOTIg2zx2aFCcpSPP3zJsxAqP2iI3xHfE6d7Hg2k4KHIHGUTYHqJaAVP8
 BWzg==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:subject:mime-version:from:in-reply-to:date:cc
 :message-id:references:to;
 bh=HcjtrhwAyNY3vqhipXgw8+S+VWom2+cu3xHb3Wj//YM=;
 b=ETS6ZRyPcJO6MV8fiMpCFgf2juOXENlJbaFCEB1bAJ5XhMeD223AFDVlXn5T2bKFaV
 RVu/l/rOHccNrE8X5sempHSYM4aplHM5qnngUKWztATHj8X22D4y6OHzgZv7AIftz8nj
 Qbx6acijEwPUzTEZT9WyProFvsO9gp5Hyn9MbO4JYNRVO5SUyzMUaTHB2WSWsLXtNX1E
 BN4knp1Zsn9ULf0gpOIUJ2d6okR9fnwqNlBwi8W436pqJm9AUMnTX6fORyBQF8num8nH
 Ygx67Tim53GuPKgiF/B0bp/WVHsqO6k8HyDgGCcgQK/nUTDviPV8IiBDrabUaWQ6+9np
 U+Hw==
X-Gm-Message-State: AIkVDXIRDiKozjcuzXrGjGlfoA72T1kydAM/Zp4s1mwL5aRYo/rgPsZKU8gUvylbWph5FQ==
X-Received: by 10.84.210.167 with SMTP id a36mr103502655pli.125.1483133612058; 
 Fri, 30 Dec 2016 13:33:32 -0800 (PST)
Received: from [192.168.20.12] (c-73-19-52-228.hsd1.wa.comcast.net.
 [73.19.52.228])
 by smtp.gmail.com with ESMTPSA id k192sm95831183pgc.3.2016.12.30.13.33.31
 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Fri, 30 Dec 2016 13:33:31 -0800 (PST)
Subject: Re: r 310850: buildkernel failure: ip_carp.c:615:28: error:
 incomplete definition
Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\))
Content-Type: multipart/signed;
 boundary="Apple-Mail=_9FFB074F-4E32-4660-9E32-94C9DDC1F690";
 protocol="application/pgp-signature"; micalg=pgp-sha512
X-Pgp-Agent: GPGMail
From: "Ngie Cooper (yaneurabeya)" <yaneurabeya@gmail.com>
In-Reply-To: <20161230210729.5ba48a3b@thor.walstatt.dynvpn.de>
Date: Fri, 30 Dec 2016 13:33:29 -0800
Cc: freebsd-current Current <freebsd-current@freebsd.org>,
 Josh Paetzel <jpaetzel@FreeBSD.org>
Message-Id: <A445FAAB-24B8-40DC-A2A8-D8CD2AB31CA8@gmail.com>
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
 <20161230210729.5ba48a3b@thor.walstatt.dynvpn.de>
To: "O. Hartmann" <o.hartmann@walstatt.org>
X-Mailer: Apple Mail (2.3124)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 21:33:32 -0000


--Apple-Mail=_9FFB074F-4E32-4660-9E32-94C9DDC1F690
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
	charset=us-ascii


> On Dec 30, 2016, at 12:07, O. Hartmann <o.hartmann@walstatt.org> =
wrote:
>=20
>=20
> [...]
>=20
> =3D=3D=3D> cas (all)
> --- all_subdir_carp ---
> --- ip_carp.o ---
> /usr/src/sys/modules/carp/../../netinet/ip_carp.c:615:28: error: =
incomplete definition of
> type 'struct ip6_hdr' return (memcmp(&in6, &ip6->ip6_src, sizeof(in6)) =
=3D=3D 0);
>                                      ~~~^
> /usr/src/sys/netinet6/in6.h:662:8: note: forward declaration of =
'struct ip6_hdr'
> struct ip6_hdr;
>       ^
> --- all_subdir_cam ---
> Building =
/usr/obj/usr/src/sys/WALHALL/modules/usr/src/sys/modules/cam/scsi_pass.o
> --- all_subdir_carp ---
> 1 error generated.
> *** [ip_carp.o] Error code 1

Should be addressed in r310864.
Thanks,
-Ngie

--Apple-Mail=_9FFB074F-4E32-4660-9E32-94C9DDC1F690
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJYZtKqAAoJEPWDqSZpMIYVCPwQALIVjhmZHQwevwCoS0Duwmck
YU9iE80TFXcHSvaCoonttSZ8o0Nj3ylJcu1Oao0TVvkeHdwGjkVdFrKzHCqoq82e
LVnW+uWnjzUqSuGGUrLUCZVStphgBxDzdcd0xZ1SKznNnY+9F7L7RFeiWGxnAhu4
oxUm9LrlWBEvzaYvJprBC15Aao5/PmsDVAlH0g/pYq3LutnJSuCKCKP22qUmLkfS
n8cBr00I/nI6bEf0fYP5ZBp78CEb1ETRL5HYcWm2xm5OVBI4br5AyK7tqyv1f5AH
WQ/QHZ7X3Tga+BZVzSDCTKGPRJEQHe0FlJf07341AwzsxLOU/Dgr0PBNT3ffLUxX
zfswrhxgluZ+YJ2qP9fJ5aDcnZR2sTlTrQFSAteR0pC7LmIKM2v4OqPtZoq/w3gx
8Zp0++b7Xem9OOKWh38n/ISnJomiZwU8X4bpWrRua2NqHhOUw30eQn8mpAQLSK3T
7911ki0QNIiASz2YkKq6Xp+A2EZFOucAuVfEeQGJq8DVKnAXxOtgOtgCXof/E8/H
wgFlK5GQWVIKxvK0YirxrzPHkZEi/16bFfg85kYoLaGuHxdCo9KGtlVfLLLGq5M/
IOCRF0UcOSsl5Xi7nw2oJlyJC8px9wbm5nbYm1wgCwozo9SAvIQKqnYxWeWM346J
RyQ/afYI2sFL2KZb+u+X
=loEr
-----END PGP SIGNATURE-----

--Apple-Mail=_9FFB074F-4E32-4660-9E32-94C9DDC1F690--

From owner-freebsd-current@freebsd.org  Fri Dec 30 21:49:46 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 855D6C98F94
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Fri, 30 Dec 2016 21:49:46 +0000 (UTC)
 (envelope-from jpaetzel@FreeBSD.org)
Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com
 [66.111.4.25])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 5D5401B88
 for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016 21:49:46 +0000 (UTC)
 (envelope-from jpaetzel@FreeBSD.org)
Received: from compute2.internal (compute2.nyi.internal [10.202.2.42])
 by mailout.nyi.internal (Postfix) with ESMTP id 36961208E9
 for <freebsd-current@freebsd.org>; Fri, 30 Dec 2016 16:49:45 -0500 (EST)
Received: from web1 ([10.202.2.211])
 by compute2.internal (MEProxy); Fri, 30 Dec 2016 16:49:45 -0500
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=
 messagingengine.com; h=content-transfer-encoding:content-type
 :date:from:in-reply-to:message-id:mime-version:references
 :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=smtpout; bh=3s
 ILtf0gzwjxnHDgG0IsWrwlQ1M=; b=AS54cvMwKkD7dACjgPRx8aTvcBIoW5HXwO
 gJ0PlKUsyseSGLu9OQmfIFMuS8iJwtb8iRIFMZR1bSzng4gjO/CYP0TzJK2iFhyo
 fyslRJPumfC7WoW7hpdnmL0GwFjq96fvUVUad5ma/Tp3lfvkSjr5nHTfonOKzLYv
 frhCKETww=
X-ME-Sender: <xms:edZmWImCKHboeZF8EXd5u4sPnAU2le-uYPsYJy2wfb22RGgc9DY2ig>
Received: by mailuser.nyi.internal (Postfix, from userid 99)
 id 0CEDAAA6C5; Fri, 30 Dec 2016 16:49:44 -0500 (EST)
Message-Id: <1483134584.3238397.833328169.08E5ED0A@webmail.messagingengine.com>
From: Josh Paetzel <jpaetzel@FreeBSD.org>
To: freebsd-current@freebsd.org
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Type: text/plain; charset="utf-8"
X-Mailer: MessagingEngine.com Webmail Interface - ajax-9c115fcf
Date: Fri, 30 Dec 2016 15:49:44 -0600
References: <20161230202338.73e7d00b@thor.walstatt.dynvpn.de>
 <20161230210729.5ba48a3b@thor.walstatt.dynvpn.de>
 <A445FAAB-24B8-40DC-A2A8-D8CD2AB31CA8@gmail.com>
In-Reply-To: <A445FAAB-24B8-40DC-A2A8-D8CD2AB31CA8@gmail.com>
Subject: Re: r 310850: buildkernel failure: ip_carp.c:615:28: error: incomplete
 definition
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 30 Dec 2016 21:49:46 -0000

Thanks for the catch ngie.  I couldn't reproduce the problem, now I see
why.

On Fri, Dec 30, 2016, at 03:33 PM, Ngie Cooper (yaneurabeya) wrote:
> 
> > On Dec 30, 2016, at 12:07, O. Hartmann <o.hartmann@walstatt.org> wrote:
> > 
> > 
> > [...]
> > 
> > ===> cas (all)
> > --- all_subdir_carp ---
> > --- ip_carp.o ---
> > /usr/src/sys/modules/carp/../../netinet/ip_carp.c:615:28: error: incomplete definition of
> > type 'struct ip6_hdr' return (memcmp(&in6, &ip6->ip6_src, sizeof(in6)) == 0);
> >                                      ~~~^
> > /usr/src/sys/netinet6/in6.h:662:8: note: forward declaration of 'struct ip6_hdr'
> > struct ip6_hdr;
> >       ^
> > --- all_subdir_cam ---
> > Building /usr/obj/usr/src/sys/WALHALL/modules/usr/src/sys/modules/cam/scsi_pass.o
> > --- all_subdir_carp ---
> > 1 error generated.
> > *** [ip_carp.o] Error code 1
> 
> Should be addressed in r310864.
> Thanks,
> -Ngie
> Email had 1 attachment:
> + signature.asc
>   1k (application/pgp-signature)


-- 

Thanks,

Josh Paetzel

From owner-freebsd-current@freebsd.org  Sat Dec 31 03:52:19 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 035E1C9863A
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 03:52:19 +0000 (UTC) (envelope-from kaduk@mit.edu)
Received: from dmz-mailsec-scanner-7.mit.edu (dmz-mailsec-scanner-7.mit.edu
 [18.7.68.36])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id AB5D51996
 for <freebsd-current@freebsd.org>; Sat, 31 Dec 2016 03:52:18 +0000 (UTC)
 (envelope-from kaduk@mit.edu)
X-AuditID: 12074424-bb7ff70000005087-07-58672a377893
Received: from mailhub-auth-3.mit.edu ( [18.9.21.43])
 (using TLS with cipher DHE-RSA-AES256-SHA (256/256 bits))
 (Client did not present a certificate)
 by  (Symantec Messaging Gateway) with SMTP id B3.18.20615.73A27685;
 Fri, 30 Dec 2016 22:47:03 -0500 (EST)
Received: from outgoing.mit.edu (outgoing-auth-1.mit.edu [18.9.28.11])
 by mailhub-auth-3.mit.edu (8.13.8/8.9.2) with ESMTP id uBV3l3E3003257;
 Fri, 30 Dec 2016 22:47:03 -0500
Received: from kduck.kaduk.org (24-107-191-124.dhcp.stls.mo.charter.com
 [24.107.191.124]) (authenticated bits=56)
 (User authenticated as kaduk@ATHENA.MIT.EDU)
 by outgoing.mit.edu (8.13.8/8.12.4) with ESMTP id uBV3kx6T013858
 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT);
 Fri, 30 Dec 2016 22:47:02 -0500
Date: Fri, 30 Dec 2016 21:46:59 -0600
From: Benjamin Kaduk <kaduk@mit.edu>
To: "O. Hartmann" <ohartmann@walstatt.org>
Cc: blubee blubeeme <gurenchan@gmail.com>, freebsd-current@freebsd.org
Subject: Re: A question about updating src & ports
Message-ID: <20161231034659.GF8460@kduck.kaduk.org>
References: <CALM2mEm24Dx=HPfczjbhhVHo8Cok+rHAkRpihNbSEfJR_3P7vA@mail.gmail.com>
 <20161229114408.4dfdbb8e@thor.walstatt.dynvpn.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: <20161229114408.4dfdbb8e@thor.walstatt.dynvpn.de>
User-Agent: Mutt/1.6.1 (2016-04-27)
X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFvrEIsWRmVeSWpSXmKPExsUixCmqrWuulR5hsGmBmcWcNx+YLJbtW89k
 sf/eYXYHZo8Zn+azeOycdZfdY9670ywBzFFcNimpOZllqUX6dglcGV3fowpOc1QsuJPUwPia
 rYuRk0NCwETiUvtlxi5GLg4hgTYmiRt/ZjNBOBsZJfoX/GQEqRISuMok8feXJ4jNIqAqsev2
 bWYQm01ARaKh+zKQzcEhIqAlce6QA0iYWcBN4lXvVlYQW1jASOLQ069g5bwCxhKbpvSzQsxv
 AZq/+gZUQlDi5MwnLBDNWhI3/r1kApnJLCAtsfwfB0iYU8BO4vGl62AzRQWUJRpmPGCewCgw
 C0n3LCTdsxC6FzAyr2KUTcmt0s1NzMwpTk3WLU5OzMtLLdI118vNLNFLTSndxAgKWnYXlR2M
 3T3ehxgFOBiVeHgf3EiLEGJNLCuuzD3EKMnBpCTKa2mZGiHEl5SfUpmRWJwRX1Sak1p8iFGC
 g1lJhDdHIz1CiDclsbIqtSgfJiXNwaIkznsp0z1CSCA9sSQ1OzW1ILUIJivDwaEkwesB0ihY
 lJqeWpGWmVOCkGbi4AQZzgM0fDHY8OKCxNzizHSI/ClGRSlxXktNoIQASCKjNA+uF5RUJLL3
 17xiFAd6RZhXCKSKB5iQ4LpfAQ1mAhqslpMMMrgkESEl1cBY/c/+YPrcd56N72+eTH+bIcQQ
 v9Q4Kmt9+L7yOP0Q7ewW3XUc914kT9q7VvflnUSjNs3TuroL9FedmiA1JefXyjS90kMqSQuP
 /i2euTVkRRKnzm7XgHVifzOTpykefT3fmWvb+4LAj5Kdxv+V58+QvPcvQi1zy9SW7LajzuLu
 cyQ+ivwI2hWvxFKckWioxVxUnAgAU1okgwUDAAA=
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 03:52:19 -0000

On Thu, Dec 29, 2016 at 11:44:20AM +0100, O. Hartmann wrote:
> 
> from my own experience I left the path of "portsnap" and stay with svn alone. portsnap
> tends to "flood" the /var filesystem with a tremendous number of files over time. Each
> time you issue "portsnap fetch update", a file appears in /var/portsnap - it could be
> that the files appear in /var/db, I can't remember. Deleting them with "rm -rf *" leaves
> me then with an error from "rm": the argument line is to long due to the number of files.
> Therefore, I switched to svn.
> 
> Well, svn itself is pumping up /usr/ports/.svn where it keeps all logs. Depending on the
> frequency of updates it grows. I do the same for /usr/src and by the time of fetching
> almost every day several times a day updates, the folder .svn is as large
> as /usr/src itself in its pristine state when fetched initially. For
> long-haul/long-running systems I'm concerned about the flood of data coming in and

'svn cleanup .' will reduce the size of .svn/ by deleting old copies of pristine
files that are no longer needed.

-Ben

From owner-freebsd-current@freebsd.org  Sat Dec 31 11:41:58 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 942D7C99112;
 Sat, 31 Dec 2016 11:41:58 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 747871DD5;
 Sat, 31 Dec 2016 11:41:58 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 756E64EA;
 Sat, 31 Dec 2016 11:41:58 +0000 (UTC)
Date: Sat, 31 Dec 2016 11:41:57 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: mjg@FreeBSD.org, ngie@FreeBSD.org, kib@FreeBSD.org, hrs@FreeBSD.org, 
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <315735125.160.1483184518491.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4531 - Failure
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: FAILURE
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 11:41:58 -0000

FreeBSD_HEAD_i386 - Build #4531 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/cha=
nges
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4531/cons=
ole

Change summaries:

310931 by ngie:
Use strdup in snmp_parse_server(..) when possible instead of malloc+strcpy

This simplifies the code and mutes a Coverity warning about sc->cport being
improperly allocated

Reported by:=09Coverity
CID:=09=091018247
MFC after:=091 week

310925 by kib:
Remove unused declaration.

The setconf() implementation was removed by r52778 Nov 1 1999.

Sponsored by:=09The FreeBSD Foundation
MFC after:=091 week

310921 by hrs:
- Add static for symbols which need not to be exported.
- Clean up warnings to the WARNS=3D6 level.

310907 by mjg:
Use vrefact in vnode_pager_alloc.

310894 by ngie:
snmp_pdu_free the right object at the right time in snmptool_walk

r310892 was on the right track, but unfortunately it was resolving
the problem incorrectly and accidentally leaking memory in the
process.

- Call snmp_pdu_free on req before calling snmp_pdu_create on it
  at the bottom of the outer while loop
- Call snmp_pdu_free on resp after calling snmpwalk_nextpdu_create
  in the inner loop

MFC after:=0912 days
X-MFC with:=09r310729, r310892
Reported by:=09valgrind

310893 by hrs:
Remove extra NULL-check before free(3).

310892 by ngie:
Don't call snmp_pdu_free(..) until finished with the pdu and when ready to
allocate a new one via snmp_pdu_create(..)

This fixes bsnmpwalk, so it no longer crashes after r310729

X-MFC with:=09r310729
MFC after:=0912 days



The end of the build log:

[...truncated 57406 lines...]
--- bl.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/contrib/blackl=
ist/include -I/usr/src/contrib/blacklist/port  -D_REENTRANT -DHAVE_CONFIG_H=
 -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME -DHAVE_FGETLN -DHAVE_GE=
TPROGNAME  -DHAVE_STRLCAT -DHAVE_STRLCPY -DHAVE_STRUCT_SOCKADDR_SA_LEN   -M=
D  -MF.depend.bl.pico -MTbl.pico -std=3Dgnu99 -fstack-protector-strong -Wsy=
stem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstric=
t-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual=
 -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-s=
ubscripts -Winline -Wnested-externs -Wredundant-decls -Wold-style-definitio=
n -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-safety -Wno-em=
pty-body -Wno-string-plus-int -Wno-unused-const-variable  -Wno-thread-safet=
y-analysis -Qunused-arguments  -c /usr/src/contrib/blacklist/lib/bl.c -o bl=
.pico
--- all_subdir_lib/ncurses ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED =
-DENABLE_WIDEC -I. -I/usr/obj/usr/src/lib/ncurses/formw/../ncursesw -I/usr/=
src/lib/ncurses/formw/../ncursesw -I/usr/src/lib/ncurses/formw/../ncurses -=
I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/include -I/usr/src/lib=
/ncurses/formw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFI=
G_H -I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/form -I/usr/src/l=
ib/ncurses/formw/../../../contrib/ncurses/menu   -MD  -MF.depend.fty_num.pi=
co -MTfty_num.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -=
Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -=
Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -W=
no-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautolog=
ical-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-functi=
on -Wno-enum-conversion -Wno-unused-local-typedef  -Qunused-arguments  -c /=
usr/src/lib/ncurses/formw/../../../contrib/ncurses/form/fty_num.c -o fty_nu=
m.pico
--- all_subdir_lib/libblacklist ---
--- blacklist.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/contrib/blackl=
ist/include -I/usr/src/contrib/blacklist/port  -D_REENTRANT -DHAVE_CONFIG_H=
 -DHAVE_DB_H -DHAVE_LIBUTIL_H  -DHAVE_CLOCK_GETTIME -DHAVE_FGETLN -DHAVE_GE=
TPROGNAME  -DHAVE_STRLCAT -DHAVE_STRLCPY -DHAVE_STRUCT_SOCKADDR_SA_LEN   -M=
D  -MF.depend.blacklist.pico -MTblacklist.pico -std=3Dgnu99 -fstack-protect=
or-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-par=
ameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-ty=
pe -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-=
align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-s=
tyle-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-=
safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Wn=
o-thread-safety-analysis -Qunused-arguments  -c /usr/src/contrib/blacklist/=
lib/blacklist.c -o blacklist.pico
--- all_subdir_lib/libngatm ---
--- cc_sig.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libngatm/../../sys/contr=
ib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libngatm/../../cont=
rib/ngatm/libngatm   -MD  -MF.depend.cc_sig.o -MTcc_sig.o -std=3Dgnu99 -fst=
ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parame=
ter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-de=
cls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaration=
s -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-va=
riable  -Qunused-arguments  -c /usr/src/lib/libngatm/../../sys/contrib/ngat=
m/netnatm/api/cc_sig.c -o cc_sig.o
--- all_subdir_lib/ncurses ---
--- fty_regex.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -D_XOPEN_SOURCE_EXTENDED =
-DENABLE_WIDEC -I. -I/usr/obj/usr/src/lib/ncurses/formw/../ncursesw -I/usr/=
src/lib/ncurses/formw/../ncursesw -I/usr/src/lib/ncurses/formw/../ncurses -=
I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/include -I/usr/src/lib=
/ncurses/formw/../../../contrib/ncurses/ncurses -Wall -DNDEBUG -DHAVE_CONFI=
G_H -I/usr/src/lib/ncurses/formw/../../../contrib/ncurses/form -I/usr/src/l=
ib/ncurses/formw/../../../contrib/ncurses/menu   -MD  -MF.depend.fty_regex.=
pico -MTfty_regex.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-heade=
rs -Werror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototyp=
es -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sig=
n -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-taut=
ological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-fu=
nction -Wno-enum-conversion -Wno-unused-local-typedef  -Qunused-arguments  =
-c /usr/src/lib/ncurses/formw/../../../contrib/ncurses/form/fty_regex.c -o =
fty_regex.pico
--- all_subdir_lib/libbluetooth ---
=3D=3D=3D> lib/libbluetooth (all)
--- all_subdir_lib/libblacklist ---
--- libblacklist.a ---
building static blacklist library
ar -crD libblacklist.a `NM=3D'nm' NMFLAGS=3D''  lorder bl.o blacklist.o  | =
tsort -q`=20
ranlib -D libblacklist.a
--- libblacklist.so.0.full ---
building shared library libblacklist.so.0
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fat=
al-warnings -Wl,--warn-shared-textrel  -o libblacklist.so.0.full -Wl,-sonam=
e,libblacklist.so.0  `NM=3D'nm' NMFLAGS=3D'' lorder bl.pico blacklist.pico =
|  tsort -q`  -lpthread
--- all_subdir_lib/libbluetooth ---
--- bluetooth.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libbluetooth -I/usr/src/=
lib/libbluetooth/../../sys   -MD  -MF.depend.bluetooth.o -MTbluetooth.o -st=
d=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wno-form=
at-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plu=
s-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unused-valu=
e -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversion -Wno-=
unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-paramet=
er  -Qunused-arguments  -c /usr/src/lib/libbluetooth/bluetooth.c -o bluetoo=
th.o
--- all_subdir_lib/libblacklist ---
--- libblacklist.so.0.debug ---
objcopy --only-keep-debug libblacklist.so.0.full libblacklist.so.0.debug
--- libblacklist.so.0 ---
objcopy --strip-debug --add-gnu-debuglink=3Dlibblacklist.so.0.debug  libbla=
cklist.so.0.full libblacklist.so.0
--- all_subdir_lib/libbluetooth ---
--- dev.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libbluetooth -I/usr/src/=
lib/libbluetooth/../../sys   -MD  -MF.depend.dev.o -MTdev.o -std=3Dgnu99 -f=
stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-=
uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-u=
nused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-paren=
theses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local=
-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused=
-arguments  -c /usr/src/lib/libbluetooth/dev.c -o dev.o
--- all_subdir_lib/ncurses ---
--- libformw.a ---
building static formw library
ar -crD libformw.a `NM=3D'nm' NMFLAGS=3D''  lorder fld_arg.o fld_attr.o fld=
_current.o fld_def.o fld_dup.o fld_ftchoice.o fld_ftlink.o fld_info.o fld_j=
ust.o fld_link.o fld_max.o fld_move.o fld_newftyp.o fld_opts.o fld_pad.o fl=
d_page.o fld_stat.o fld_type.o fld_user.o frm_cursor.o frm_data.o frm_def.o=
 frm_driver.o frm_hook.o frm_opts.o frm_page.o frm_post.o frm_req_name.o fr=
m_scale.o frm_sub.o frm_user.o frm_win.o fty_alnum.o fty_alpha.o fty_enum.o=
 fty_int.o fty_ipv4.o fty_num.o fty_regex.o  | tsort -q`=20
--- all_subdir_lib/libngatm ---
--- cc_data.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libngatm/../../sys/contr=
ib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libngatm/../../cont=
rib/ngatm/libngatm   -MD  -MF.depend.cc_data.o -MTcc_data.o -std=3Dgnu99 -f=
stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W=
no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit=
h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para=
meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-=
decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati=
ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-=
variable  -Qunused-arguments  -c /usr/src/lib/libngatm/../../sys/contrib/ng=
atm/netnatm/api/cc_data.c -o cc_data.o
--- all_subdir_lib/ncurses ---
ranlib -D libformw.a
--- libformw.so.5.full ---
building shared library libformw.so.5
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fat=
al-warnings -Wl,--warn-shared-textrel  -o libformw.so.5.full -Wl,-soname,li=
bformw.so.5  `NM=3D'nm' NMFLAGS=3D'' lorder fld_arg.pico fld_attr.pico fld_=
current.pico fld_def.pico fld_dup.pico fld_ftchoice.pico fld_ftlink.pico fl=
d_info.pico fld_just.pico fld_link.pico fld_max.pico fld_move.pico fld_newf=
typ.pico fld_opts.pico fld_pad.pico fld_page.pico fld_stat.pico fld_type.pi=
co fld_user.pico frm_cursor.pico frm_data.pico frm_def.pico frm_driver.pico=
 frm_hook.pico frm_opts.pico frm_page.pico frm_post.pico frm_req_name.pico =
frm_scale.pico frm_sub.pico frm_user.pico frm_win.pico fty_alnum.pico fty_a=
lpha.pico fty_enum.pico fty_int.pico fty_ipv4.pico fty_num.pico fty_regex.p=
ico |  tsort -q`  -lncursesw
--- all_subdir_lib/libsdp ---
=3D=3D=3D> lib/libsdp (all)
--- all_subdir_lib/libbluetooth ---
--- hci.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libbluetooth -I/usr/src/=
lib/libbluetooth/../../sys   -MD  -MF.depend.hci.o -MThci.o -std=3Dgnu99 -f=
stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-=
uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-u=
nused-const-variable -Wno-tautological-compare -Wno-unused-value -Wno-paren=
theses-equality -Wno-unused-function -Wno-enum-conversion -Wno-unused-local=
-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused=
-arguments  -c /usr/src/lib/libbluetooth/hci.c -o hci.o
--- all_subdir_lib/libsdp ---
--- search.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libsdp   -MD  -MF.depend=
.search.o -MTsearch.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-header=
s -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-e=
mpty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological=
-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -=
Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum =
-Wno-knr-promoted-parameter  -Qunused-arguments  -c /usr/src/lib/libsdp/sea=
rch.c -o search.o
--- all_subdir_lib/ncurses ---
--- libformw.so.5.debug ---
objcopy --only-keep-debug libformw.so.5.full libformw.so.5.debug
--- libformw.so.5 ---
objcopy --strip-debug --add-gnu-debuglink=3Dlibformw.so.5.debug  libformw.s=
o.5.full libformw.so.5
--- all_subdir_lib/libbluetooth ---
--- bluetooth.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libbluetoo=
th -I/usr/src/lib/libbluetooth/../../sys   -MD  -MF.depend.bluetooth.pico -=
MTbluetooth.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We=
rror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-=
body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-comp=
are -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-e=
num-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-=
knr-promoted-parameter  -Qunused-arguments  -c /usr/src/lib/libbluetooth/bl=
uetooth.c -o bluetooth.pico
--- all_subdir_lib/libngatm ---
--- cc_port.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libngatm/../../sys/contr=
ib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libngatm/../../cont=
rib/ngatm/libngatm   -MD  -MF.depend.cc_port.o -MTcc_port.o -std=3Dgnu99 -f=
stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W=
no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit=
h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para=
meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-=
decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati=
ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-=
variable  -Qunused-arguments  -c /usr/src/lib/libngatm/../../sys/contrib/ng=
atm/netnatm/api/cc_port.c -o cc_port.o
--- all_subdir_lib/libsdp ---
--- service.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libsdp   -MD  -MF.depend=
.service.o -MTservice.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-head=
ers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno=
-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic=
al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function=
 -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu=
m -Wno-knr-promoted-parameter  -Qunused-arguments  -c /usr/src/lib/libsdp/s=
ervice.c -o service.o
--- session.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libsdp   -MD  -MF.depend=
.session.o -MTsession.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-head=
ers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno=
-empty-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautologic=
al-compare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function=
 -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enu=
m -Wno-knr-promoted-parameter  -Qunused-arguments  -c /usr/src/lib/libsdp/s=
ession.c -o session.o
--- all_subdir_lib/libbluetooth ---
--- dev.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libbluetoo=
th -I/usr/src/lib/libbluetooth/../../sys   -MD  -MF.depend.dev.pico -MTdev.=
pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-st=
ring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unu=
sed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversi=
on -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted=
-parameter  -Qunused-arguments  -c /usr/src/lib/libbluetooth/dev.c -o dev.p=
ico
--- all_subdir_lib/libngatm ---
--- unisap.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libngatm/../../sys/contr=
ib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libngatm/../../cont=
rib/ngatm/libngatm   -MD  -MF.depend.unisap.o -MTunisap.o -std=3Dgnu99 -fst=
ack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno=
-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith =
-Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parame=
ter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-de=
cls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declaration=
s -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-va=
riable  -Qunused-arguments  -c /usr/src/lib/libngatm/../../sys/contrib/ngat=
m/netnatm/api/unisap.c -o unisap.o
--- all_subdir_lib/libbluetooth ---
--- hci.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libbluetoo=
th -I/usr/src/lib/libbluetooth/../../sys   -MD  -MF.depend.hci.pico -MThci.=
pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty-body -Wno-st=
ring-plus-int -Wno-unused-const-variable -Wno-tautological-compare -Wno-unu=
sed-value -Wno-parentheses-equality -Wno-unused-function -Wno-enum-conversi=
on -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno-knr-promoted=
-parameter  -Qunused-arguments  -c /usr/src/lib/libbluetooth/hci.c -o hci.p=
ico
--- all_subdir_lib/libsdp ---
--- util.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libsdp   -MD  -MF.depend=
.util.o -MTutil.o -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -W=
error -Wall -Wno-format-y2k -Wno-uninitialized -Wno-pointer-sign -Wno-empty=
-body -Wno-string-plus-int -Wno-unused-const-variable -Wno-tautological-com=
pare -Wno-unused-value -Wno-parentheses-equality -Wno-unused-function -Wno-=
enum-conversion -Wno-unused-local-typedef -Wno-switch -Wno-switch-enum -Wno=
-knr-promoted-parameter  -Qunused-arguments  -c /usr/src/lib/libsdp/util.c =
-o util.o
--- all_subdir_lib/libbsnmp ---
=3D=3D=3D> lib/libbsnmp (all)
--- all_subdir_lib/libbsnmp/libbsnmp ---
=3D=3D=3D> lib/libbsnmp/libbsnmp (all)
--- .depend ---
echo libbsnmp.so.6.full: /usr/obj/usr/src/tmp/usr/lib/libcrypto.a >> .depen=
d
--- asn1.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libbsnmp/libbsnmp/../.=
./../contrib/bsnmp/lib -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAV=
E_STDINT_H -DHAVE_INTTYPES_H -DQUADFMT=3D'"llu"' -DQUADXFMT=3D'"llx"' -DHAV=
E_LIBCRYPTO -MD  -MF.depend.asn1.o -MTasn1.o -std=3Dgnu99 -fstack-protector=
-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-param=
eter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type=
 -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-al=
ign -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-sty=
le-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-sa=
fety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunu=
sed-arguments  -c /usr/src/lib/libbsnmp/libbsnmp/../../../contrib/bsnmp/lib=
/asn1.c -o asn1.o
--- all_subdir_lib/libngatm ---
--- cc_dump.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe -I/usr/src/lib/libngatm/../../sys/contr=
ib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libngatm/../../cont=
rib/ngatm/libngatm   -MD  -MF.depend.cc_dump.o -MTcc_dump.o -std=3Dgnu99 -f=
stack-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -W=
no-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arit=
h -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-para=
meter -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-=
decls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarati=
ons -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-=
variable  -Qunused-arguments  -c /usr/src/lib/libngatm/../../sys/contrib/ng=
atm/netnatm/api/cc_dump.c -o cc_dump.o
--- all_subdir_lib/libsdp ---
--- search.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libsdp   -=
MD  -MF.depend.search.pico -MTsearch.pico -std=3Dgnu99 -fstack-protector-st=
rong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno=
-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variab=
le -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -W=
no-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-swit=
ch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  -c /us=
r/src/lib/libsdp/search.c -o search.pico
--- all_subdir_lib/libbluetooth ---
--- libbluetooth.a ---
building static bluetooth library
ar -crD libbluetooth.a `NM=3D'nm' NMFLAGS=3D''  lorder bluetooth.o dev.o hc=
i.o  | tsort -q`=20
ranlib -D libbluetooth.a
--- libbluetooth.so.4.full ---
building shared library libbluetooth.so.4
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fat=
al-warnings -Wl,--warn-shared-textrel  -o libbluetooth.so.4.full -Wl,-sonam=
e,libbluetooth.so.4  `NM=3D'nm' NMFLAGS=3D'' lorder bluetooth.pico dev.pico=
 hci.pico |  tsort -q`=20
--- libbluetooth.so.4.debug ---
objcopy --only-keep-debug libbluetooth.so.4.full libbluetooth.so.4.debug
--- all_subdir_lib/libngatm ---
--- unimsg.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.unimsg.pico -MTunimsg.pi=
co -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn=
o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy=
pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh=
adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex=
terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-=
variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int =
-Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/lib/libngatm/..=
/../contrib/ngatm/libngatm/unimsg.c -o unimsg.pico
--- all_subdir_lib/libbluetooth ---
--- libbluetooth.so.4 ---
objcopy --strip-debug --add-gnu-debuglink=3Dlibbluetooth.so.4.debug  libblu=
etooth.so.4.full libbluetooth.so.4
--- all_subdir_lib/libngatm ---
--- unimsg_common.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.unimsg_common.pico -MTun=
imsg_common.pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -We=
rror -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wm=
issing-prototypes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings=
 -Wswitch -Wshadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winli=
ne -Wnested-externs -Wredundant-decls -Wold-style-definition -Wno-pointer-s=
ign -Wmissing-variable-declarations -Wthread-safety -Wno-empty-body -Wno-st=
ring-plus-int -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/l=
ib/libngatm/../../sys/contrib/ngatm/netnatm/misc/unimsg_common.c -o unimsg_=
common.pico
--- all_subdir_lib/libsdp ---
--- service.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libsdp   -=
MD  -MF.depend.service.pico -MTservice.pico -std=3Dgnu99 -fstack-protector-=
strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -W=
no-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-vari=
able -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality =
-Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-sw=
itch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  -c /=
usr/src/lib/libsdp/service.c -o service.pico
--- all_subdir_lib/libbsnmp ---
--- snmp.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libbsnmp/libbsnmp/../.=
./../contrib/bsnmp/lib -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAV=
E_STDINT_H -DHAVE_INTTYPES_H -DQUADFMT=3D'"llu"' -DQUADXFMT=3D'"llx"' -DHAV=
E_LIBCRYPTO -MD  -MF.depend.snmp.o -MTsnmp.o -std=3Dgnu99 -fstack-protector=
-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-unused-param=
eter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wreturn-type=
 -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter -Wcast-al=
ign -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls -Wold-sty=
le-definition -Wno-pointer-sign -Wmissing-variable-declarations -Wthread-sa=
fety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable  -Qunu=
sed-arguments  -c /usr/src/lib/libbsnmp/libbsnmp/../../../contrib/bsnmp/lib=
/snmp.c -o snmp.o
--- all_subdir_lib/libsdp ---
--- session.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libsdp   -=
MD  -MF.depend.session.pico -MTsession.pico -std=3Dgnu99 -fstack-protector-=
strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -W=
no-pointer-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-vari=
able -Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality =
-Wno-unused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-sw=
itch -Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  -c /=
usr/src/lib/libsdp/session.c -o session.pico
--- all_subdir_lib/libngatm ---
--- straddr.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.straddr.pico -MTstraddr.=
pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-proto=
types -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -W=
shadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-=
externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissin=
g-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-in=
t -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/lib/libngatm/=
../../sys/contrib/ngatm/netnatm/misc/straddr.c -o straddr.pico
--- all_subdir_lib/libcasper ---
=3D=3D=3D> lib/libcasper (all)
--- all_subdir_lib/libcasper/libcasper ---
=3D=3D=3D> lib/libcasper/libcasper (all)
--- all_subdir_lib/libsdp ---
--- util.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libsdp   -=
MD  -MF.depend.util.pico -MTutil.pico -std=3Dgnu99 -fstack-protector-strong=
 -Wsystem-headers -Werror -Wall -Wno-format-y2k -Wno-uninitialized -Wno-poi=
nter-sign -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-variable -=
Wno-tautological-compare -Wno-unused-value -Wno-parentheses-equality -Wno-u=
nused-function -Wno-enum-conversion -Wno-unused-local-typedef -Wno-switch -=
Wno-switch-enum -Wno-knr-promoted-parameter  -Qunused-arguments  -c /usr/sr=
c/lib/libsdp/util.c -o util.pico
--- all_subdir_lib/libcasper ---
--- all_subdir_lib/libcasper/services ---
=3D=3D=3D> lib/libcasper/services (all)
--- all_subdir_lib/libcasper/services/cap_dns ---
=3D=3D=3D> lib/libcasper/services/cap_dns (all)
--- all_subdir_lib/libcasper/services/cap_grp ---
=3D=3D=3D> lib/libcasper/services/cap_grp (all)
--- all_subdir_lib/libcasper/services/cap_pwd ---
=3D=3D=3D> lib/libcasper/services/cap_pwd (all)
--- all_subdir_lib/libngatm ---
--- traffic.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.traffic.pico -MTtraffic.=
pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-proto=
types -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -W=
shadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-=
externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissin=
g-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-in=
t -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/lib/libngatm/=
../../sys/contrib/ngatm/netnatm/msg/traffic.c -o traffic.pico
--- all_subdir_lib/libcasper ---
--- all_subdir_lib/libcasper/services/cap_random ---
=3D=3D=3D> lib/libcasper/services/cap_random (all)
--- all_subdir_lib/libcasper/services/cap_sysctl ---
=3D=3D=3D> lib/libcasper/services/cap_sysctl (all)
--- all_subdir_lib/libbsnmp ---
--- snmpagent.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libbsnmp/libbsnmp/../.=
./../contrib/bsnmp/lib -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAV=
E_STDINT_H -DHAVE_INTTYPES_H -DQUADFMT=3D'"llu"' -DQUADXFMT=3D'"llx"' -DHAV=
E_LIBCRYPTO -MD  -MF.depend.snmpagent.o -MTsnmpagent.o -std=3Dgnu99 -fstack=
-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-un=
used-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wr=
eturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-parameter=
 -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-decls=
 -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations -=
Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-varia=
ble  -Qunused-arguments  -c /usr/src/lib/libbsnmp/libbsnmp/../../../contrib=
/bsnmp/lib/snmpagent.c -o snmpagent.o
--- all_subdir_lib/libngatm ---
--- uni_ie.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.uni_ie.pico -MTuni_ie.pi=
co -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -Wn=
o-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototy=
pes -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wsh=
adow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-ex=
terns -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissing-=
variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-int =
-Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/lib/libngatm/..=
/../sys/contrib/ngatm/netnatm/msg/uni_ie.c -o uni_ie.pico
--- all_subdir_lib/libsdp ---
--- libsdp.a ---
building static sdp library
ar -crD libsdp.a `NM=3D'nm' NMFLAGS=3D''  lorder search.o service.o session=
.o util.o  | tsort -q`=20
ranlib -D libsdp.a
--- libsdp.so.4.full ---
building shared library libsdp.so.4
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -fstack-protector-strong -shared -Wl,-x -Wl,--fat=
al-warnings -Wl,--warn-shared-textrel  -o libsdp.so.4.full -Wl,-soname,libs=
dp.so.4  `NM=3D'nm' NMFLAGS=3D'' lorder search.pico service.pico session.pi=
co util.pico |  tsort -q`=20
--- all_subdir_lib/libngatm ---
--- uni_msg.pico ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin -fpic -DPIC -g -O2 -pipe -I/usr/src/lib/libngatm/.=
./../sys/contrib/ngatm -I/usr/obj/usr/src/lib/libngatm -I/usr/src/lib/libng=
atm/../../contrib/ngatm/libngatm   -MD  -MF.depend.uni_msg.pico -MTuni_msg.=
pico -std=3Dgnu99 -fstack-protector-strong -Wsystem-headers -Werror -Wall -=
Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-proto=
types -Wpointer-arith -Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -W=
shadow -Wunused-parameter -Wcast-align -Wchar-subscripts -Winline -Wnested-=
externs -Wredundant-decls -Wold-style-definition -Wno-pointer-sign -Wmissin=
g-variable-declarations -Wthread-safety -Wno-empty-body -Wno-string-plus-in=
t -Wno-unused-const-variable  -Qunused-arguments  -c /usr/src/lib/libngatm/=
../../sys/contrib/ngatm/netnatm/msg/uni_msg.c -o uni_msg.pico
--- all_subdir_lib/libsdp ---
--- libsdp.so.4.debug ---
objcopy --only-keep-debug libsdp.so.4.full libsdp.so.4.debug
--- libsdp.so.4 ---
objcopy --strip-debug --add-gnu-debuglink=3Dlibsdp.so.4.debug  libsdp.so.4.=
full libsdp.so.4
--- all_subdir_lib/libbsnmp ---
--- snmpclient.o ---
cc -target i386-unknown-freebsd12.0 --sysroot=3D/usr/obj/usr/src/tmp -B/usr=
/obj/usr/src/tmp/usr/bin  -O2 -pipe   -I/usr/src/lib/libbsnmp/libbsnmp/../.=
./../contrib/bsnmp/lib -DHAVE_ERR_H -DHAVE_GETADDRINFO -DHAVE_STRLCPY -DHAV=
E_STDINT_H -DHAVE_INTTYPES_H -DQUADFMT=3D'"llu"' -DQUADXFMT=3D'"llx"' -DHAV=
E_LIBCRYPTO -MD  -MF.depend.snmpclient.o -MTsnmpclient.o -std=3Dgnu99 -fsta=
ck-protector-strong -Wsystem-headers -Werror -Wall -Wno-format-y2k -W -Wno-=
unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -=
Wreturn-type -Wcast-qual -Wwrite-strings -Wswitch -Wshadow -Wunused-paramet=
er -Wcast-align -Wchar-subscripts -Winline -Wnested-externs -Wredundant-dec=
ls -Wold-style-definition -Wno-pointer-sign -Wmissing-variable-declarations=
 -Wthread-safety -Wno-empty-body -Wno-string-plus-int -Wno-unused-const-var=
iable  -Qunused-arguments  -c /usr/src/lib/libbsnmp/libbsnmp/../../../contr=
ib/bsnmp/lib/snmpclient.c -o snmpclient.o
/usr/src/lib/libbsnmp/libbsnmp/../../../contrib/bsnmp/lib/snmpclient.c:1948=
:27: error: incompatible integer to pointer conversion passing 'unsigned in=
t' to parameter of type 'const char *' [-Werror,-Wint-conversion]
                if ((sc->chost =3D strdup(strlen(s))) =3D=3D NULL) {
                                        ^~~~~~~~~
/usr/obj/usr/src/tmp/usr/include/string.h:85:26: note: passing argument to =
parameter here
char    *strdup(const char *) __malloc_like;
                            ^
1 error generated.
*** [snmpclient.o] Error code 1

bmake[6]: stopped in /usr/src/lib/libbsnmp/libbsnmp
1 error

bmake[6]: stopped in /usr/src/lib/libbsnmp/libbsnmp
*** [all_subdir_lib/libbsnmp/libbsnmp] Error code 2

bmake[5]: stopped in /usr/src/lib/libbsnmp
1 error

bmake[5]: stopped in /usr/src/lib/libbsnmp
*** [all_subdir_lib/libbsnmp] Error code 2

bmake[4]: stopped in /usr/src/lib
--- all_subdir_lib/libngatm ---
A failure has been detected in another branch of the parallel make

bmake[5]: stopped in /usr/src/lib/libngatm
*** [all_subdir_lib/libngatm] Error code 2

bmake[4]: stopped in /usr/src/lib
2 errors

bmake[4]: stopped in /usr/src/lib
*** [lib__L] Error code 2

bmake[3]: stopped in /usr/src
1 error

bmake[3]: stopped in /usr/src
*** [libraries] Error code 2

bmake[2]: stopped in /usr/src
1 error

bmake[2]: stopped in /usr/src
*** [_libraries] Error code 2

bmake[1]: stopped in /usr/src
1 error

bmake[1]: stopped in /usr/src
*** [buildworld] Error code 2

make: stopped in /usr/src
1 error

make: stopped in /usr/src
Build step 'Execute shell' marked build as failure
[PostBuildScript] - Execution post build scripts.
[FreeBSD_HEAD_i386] $ /bin/sh -xe /tmp/hudson6381962114784583494.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_HEAD_i386'
+ echo 'clean up jail FreeBSD_HEAD_i386'
clean up jail FreeBSD_HEAD_i386
+ sudo jail -r FreeBSD_HEAD_i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ sudo umount FreeBSD_HEAD_i386/usr/src
+ sudo umount FreeBSD_HEAD_i386/dev
+ sudo rm -fr FreeBSD_HEAD_i386
+ true
+ sudo chflags -R noschg FreeBSD_HEAD_i386
+ sudo rm -fr FreeBSD_HEAD_i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any

From owner-freebsd-current@freebsd.org  Sat Dec 31 12:19:22 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9EA2CC98620
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 12:19:22 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smarthost1.greenhost.nl (smarthost1.greenhost.nl
 [195.190.28.81])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 65ABB11B0
 for <freebsd-current@freebsd.org>; Sat, 31 Dec 2016 12:19:22 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smtp.greenhost.nl ([213.108.104.138])
 by smarthost1.greenhost.nl with esmtps
 (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2)
 (envelope-from <ronald-lists@klop.ws>) id 1cNId5-0006NM-2k
 for freebsd-current@freebsd.org; Sat, 31 Dec 2016 13:19:19 +0100
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes
To: freebsd-current@freebsd.org
Subject: Re: every command segmentation faults after installworld
References: <op.ytb350c5kndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
Date: Sat, 31 Dec 2016 13:19:18 +0100
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: "Ronald Klop" <ronald-lists@klop.ws>
Message-ID: <op.ytb4igexkndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
In-Reply-To: <op.ytb350c5kndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
User-Agent: Opera Mail/12.16 (FreeBSD)
X-Authenticated-As-Hash: 398f5522cb258ce43cb679602f8cfe8b62a256d1
X-Virus-Scanned: by clamav at smarthost1.samage.net
X-Spam-Level: /
X-Spam-Score: -0.2
X-Spam-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,
 BAYES_50 autolearn=disabled version=3.4.0
X-Scan-Signature: 74bd734068bee68206891dc8710ce62a
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 12:19:22 -0000

On Sat, 31 Dec 2016 13:11:50 +0100, Ronald Klop <ronald-lists@klop.ws>  
wrote:

> Hi,
>
> I just rebuild kernel+world (with NO_CLEAN=yes). Installworld failed:
> ===> libexec/rtld-elf (install)
> chflags -h noschg /usr/libexec/ld-elf.so.1
> install  -s -o root -g wheel -m 555  -C -b -fschg -S ld-elf.so.1  
> /libexec/ld-elf
> .so.1
> install  -o root -g wheel -m 444  ld-elf.so.1.debug  
> /usr/lib/debug/libexec/ld-el
> f.so.1.debug
> install  -o root -g wheel -m 444 rtld.1.gz  /usr/share/man/man1/
> rm -f /usr/share/man/man1/ld-elf.so.1.1  
> /usr/share/man/man1/ld-elf.so.1.1.gz;  i
> nstall -l h  /usr/share/man/man1/rtld.1.gz  
> /usr/share/man/man1/ld-elf.so.1.1.gz
> *** Signal 11
>
> Stop.
> make[5]: stopped in /usr/src/libexec/rtld-elf
> *** Error code 1
>
>
> No every command I run segmentation faults.
> Can I recover this?
>
> I run 12-CURRENT/amd64 and just svn upped an hour ago. I'll try to use  
> /rescue to copy ld-elf.so.1 from a snapshot.
>
> Regards,
> Ronald.

This worked. Pffff. :-)
# /rescue/cp /libexec/ld-elf.so.1 /var/tmp/

# /rescue/cp  
/.zfs/snapshot/auto-2016-12-30_20.00.hourly/libexec/ld-elf.so.1 /libexec/
cp: /libexec/ld-elf.so.1: Operation not permitted

# /rescue/chflags -h noschg /libexec/ld-elf.so.1

# /rescue/cp  
/.zfs/snapshot/auto-2016-12-30_20.00.hourly/libexec/ld-elf.so.1 /libexec/

I will try a clean build now. This will take hours and hours on my laptop  
compiling clang, so I'll see in the new year if others experience the same  
ld-elf problem before I installworld again.

Regards and happy new year,
Ronald.

From owner-freebsd-current@freebsd.org  Sat Dec 31 12:19:46 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 42475C986AB
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 12:19:46 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smarthost1.greenhost.nl (smarthost1.greenhost.nl
 [195.190.28.81])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 0B3E312EE
 for <freebsd-current@freebsd.org>; Sat, 31 Dec 2016 12:19:45 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smtp.greenhost.nl ([213.108.104.138])
 by smarthost1.greenhost.nl with esmtps
 (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2)
 (envelope-from <ronald-lists@klop.ws>) id 1cNIVq-0004z7-Vy
 for freebsd-current@freebsd.org; Sat, 31 Dec 2016 13:11:51 +0100
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes
To: freebsd-current@freebsd.org
Date: Sat, 31 Dec 2016 13:11:50 +0100
Subject: every command segmentation faults after installworld
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: "Ronald Klop" <ronald-lists@klop.ws>
Message-ID: <op.ytb350c5kndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
User-Agent: Opera Mail/12.16 (FreeBSD)
X-Authenticated-As-Hash: 398f5522cb258ce43cb679602f8cfe8b62a256d1
X-Virus-Scanned: by clamav at smarthost1.samage.net
X-Spam-Level: /
X-Spam-Score: -0.2
X-Spam-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,
 BAYES_50 autolearn=disabled version=3.4.0
X-Scan-Signature: 938925967a2432a0d8c7279c30be63be
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 12:19:46 -0000

Hi,

I just rebuild kernel+world (with NO_CLEAN=yes). Installworld failed:
===> libexec/rtld-elf (install)
chflags -h noschg /usr/libexec/ld-elf.so.1
install  -s -o root -g wheel -m 555  -C -b -fschg -S ld-elf.so.1  
/libexec/ld-elf
.so.1
install  -o root -g wheel -m 444  ld-elf.so.1.debug  
/usr/lib/debug/libexec/ld-el
f.so.1.debug
install  -o root -g wheel -m 444 rtld.1.gz  /usr/share/man/man1/
rm -f /usr/share/man/man1/ld-elf.so.1.1  
/usr/share/man/man1/ld-elf.so.1.1.gz;  i
nstall -l h  /usr/share/man/man1/rtld.1.gz  
/usr/share/man/man1/ld-elf.so.1.1.gz
*** Signal 11

Stop.
make[5]: stopped in /usr/src/libexec/rtld-elf
*** Error code 1


No every command I run segmentation faults.
Can I recover this?

I run 12-CURRENT/amd64 and just svn upped an hour ago. I'll try to use  
/rescue to copy ld-elf.so.1 from a snapshot.

Regards,
Ronald.

From owner-freebsd-current@freebsd.org  Sat Dec 31 13:37:37 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4B8F8C99B0C
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 13:37:37 +0000 (UTC)
 (envelope-from david@catwhisker.org)
Received: from albert.catwhisker.org (mx.catwhisker.org [198.144.209.73])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id 214BC1726
 for <freebsd-current@freebsd.org>; Sat, 31 Dec 2016 13:37:36 +0000 (UTC)
 (envelope-from david@catwhisker.org)
Received: from albert.catwhisker.org (localhost [127.0.0.1])
 by albert.catwhisker.org (8.15.2/8.15.2) with ESMTP id uBVDbZeF094567;
 Sat, 31 Dec 2016 13:37:35 GMT
 (envelope-from david@albert.catwhisker.org)
Received: (from david@localhost)
 by albert.catwhisker.org (8.15.2/8.15.2/Submit) id uBVDbYEn094566;
 Sat, 31 Dec 2016 05:37:34 -0800 (PST) (envelope-from david)
Date: Sat, 31 Dec 2016 05:37:34 -0800
From: David Wolfskill <david@catwhisker.org>
To: Ronald Klop <ronald-lists@klop.ws>
Cc: freebsd-current@freebsd.org
Subject: Re: every command segmentation faults after installworld
Message-ID: <20161231133734.GT1077@albert.catwhisker.org>
Mail-Followup-To: David Wolfskill <david@catwhisker.org>,
 Ronald Klop <ronald-lists@klop.ws>, freebsd-current@freebsd.org
MIME-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha512;
 protocol="application/pgp-signature"; boundary="vz7DGyTOmLPfSzD+"
Content-Disposition: inline
In-Reply-To: <op.ytb350c5kndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
 <op.ytb4igexkndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
User-Agent: Mutt/1.7.2 (2016-11-26)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 13:37:37 -0000


--vz7DGyTOmLPfSzD+
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

On Sat, Dec 31, 2016 at 01:11:50PM +0100, Ronald Klop wrote:
> Hi,
>=20
> I just rebuild kernel+world (with NO_CLEAN=3Dyes). Installworld failed:
> =3D=3D=3D> libexec/rtld-elf (install)
> chflags -h noschg /usr/libexec/ld-elf.so.1
> install  -s -o root -g wheel -m 555  -C -b -fschg -S ld-elf.so.1 =20
> /libexec/ld-elf
> .so.1
> install  -o root -g wheel -m 444  ld-elf.so.1.debug =20
> /usr/lib/debug/libexec/ld-el
> f.so.1.debug
> install  -o root -g wheel -m 444 rtld.1.gz  /usr/share/man/man1/
> rm -f /usr/share/man/man1/ld-elf.so.1.1 =20
> /usr/share/man/man1/ld-elf.so.1.1.gz;  i
> nstall -l h  /usr/share/man/man1/rtld.1.gz =20
> /usr/share/man/man1/ld-elf.so.1.1.gz
> *** Signal 11
>=20
> Stop.
> make[5]: stopped in /usr/src/libexec/rtld-elf
> *** Error code 1
>=20
>=20
> No every command I run segmentation faults.
> Can I recover this?
>=20
> I run 12-CURRENT/amd64 and just svn upped an hour ago. I'll try to use =
=20
> /rescue to copy ld-elf.so.1 from a snapshot.
> ....

My source-based, in-placed update from:

FreeBSD g1-252.catwhisker.org 12.0-CURRENT FreeBSD 12.0-CURRENT #210  r3108=
09M/310809:1200019: Fri Dec 30 04:46:14 PST 2016     root@g1-252.catwhisker=
=2Eorg:/common/S4/obj/usr/src/sys/CANARY  amd64

to

FreeBSD g1-252.catwhisker.org 12.0-CURRENT FreeBSD 12.0-CURRENT #211  r3109=
42M/310946:1200019: Sat Dec 31 04:54:03 PST 2016     root@g1-252.catwhisker=
=2Eorg:/common/S4/obj/usr/src/sys/CANARY  amd64

this morning was ... uneventful -- as was the one from:

FreeBSD g1-252.catwhisker.org 12.0-CURRENT FreeBSD 12.0-CURRENT #33  r31080=
9M/310809:1200019: Fri Dec 30 05:10:16 PST 2016     root@g1-252.catwhisker.=
org:/common/S3/obj/usr/src/sys/EARLY_AP_TEST  amd64

to=20

FreeBSD g1-252.catwhisker.org 12.0-CURRENT FreeBSD 12.0-CURRENT #34  r31094=
2M/310946:1200019: Sat Dec 31 05:17:59 PST 2016     root@g1-252.catwhisker.=
org:/common/S3/obj/usr/src/sys/EARLY_AP_TEST  amd64


Further details (for the "CANARY" kernel) may be found on the pages
linked from <http://www.catwhisker.org/~david/FreeBSD/history/> --
including verbose dmesg.boot.

The above report is for my laptop; the build machine is still busy
with its Saturday "catch up" poudriere run (in preparation for
tomorrow's updates).  If I see issues when I build head on it, I'll
follow up; otherwise, the pages (ref. above) will be updated to reflect
its status.

Peace,
david
--=20
David H. Wolfskill				david@catwhisker.org
Epistemology for post-truthers: How do we select parts of reality to ignore?

See http://www.catwhisker.org/~david/publickey.gpg for my public key.

--vz7DGyTOmLPfSzD+
Content-Type: application/pgp-signature; name="signature.asc"

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2

iQF8BAEBCgBmBQJYZ7SeXxSAAAAAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXRDQ0I3Q0VGOTE3QTgwMUY0MzA2NEQ3N0Ix
NTM5Q0M0MEEwNDlFRTE3AAoJEBU5zECgSe4X3xQH/jsks7ykpKfh6r/nHbP0qMuS
7qJ5kvQE4Wj2g3o2nPj02f0wuRxft7df3u7utbGNn47wpL4JGSWdCt1FyWkCc9e/
qHqXdamr6sycG8H2yrmHFxvuXZpedEJgRDwr2nQ4IHAkOhnxRkz/TIsHkCWdRSaH
hncklnzbVfl+sQFf5l8HdOPRZOZiqLKc2dbgPJb9kwSn0ibKO8ls8q4jqYyHX2ZG
G1+EXpg0C5mz5ZprPyvLfW4qJWFGVDD1X5y/5yxynVhN22yrifXkBUAfHaVgIGMg
3TmsrH9LrAdOCDYLEeM68hKY81PSszb3hRAqIKMNc3vaZEIXzxsWgrQeomSOkgs=
=kDaj
-----END PGP SIGNATURE-----

--vz7DGyTOmLPfSzD+--

From owner-freebsd-current@freebsd.org  Sat Dec 31 14:15:02 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7CBA8C9935F
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 14:15:02 +0000 (UTC)
 (envelope-from imb@protected-networks.net)
Received: from mail.protected-networks.net (mail.protected-networks.net
 [IPv6:2001:470:8d59:1::8])
 (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
 (Client CN "mail.protected-networks.net",
 Issuer "Protected Networks CA" (not verified))
 by mx1.freebsd.org (Postfix) with ESMTPS id 502E21987;
 Sat, 31 Dec 2016 14:15:02 +0000 (UTC)
 (envelope-from imb@protected-networks.net)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=
 protected-networks.net; h=content-transfer-encoding:content-type
 :content-type:mime-version:user-agent:date:date:message-id
 :subject:subject:from:from; s=201508; t=1483193692; bh=npIZf9n9B
 ercANUOThnb5Xn+JJi/BZVXONN0ucswc6Y=; b=kuqWR8YXzzI/UKTOMsfIHhX9u
 LyVaa1/jFzf64W145EzQrh6Ojx/ebQRVfId6SKeaiyLEGNgPiTIMnj4nNJZBlms7
 XNczmVbGC554xN+R+UlxJwQFv29DoWa0URFFLMO8nNidU3ioaUNi0M8m1FkH6nJi
 gEvdIRyBNHSZCcWN9Y=
Received: from toshi.auburn.protected-networks.net
 (toshi.auburn.protected-networks.net [192.168.1.10])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 (Authenticated sender: imb@mail.protected-networks.net)
 by mail.protected-networks.net (Postfix) with ESMTPSA id E4496EFE2;
 Sat, 31 Dec 2016 09:14:52 -0500 (EST)
To: ngie@freebsd.org, freebsd-current <freebsd-current@freebsd.org>
From: Michael Butler <imb@protected-networks.net>
Subject: SVN r310931 Bad code
Openpgp: id=6F63E6399DCC8E3E94D60F0642FF6BAE0442D492
Message-ID: <742de824-6f35-8c91-8603-c5a766e313b4@protected-networks.net>
Date: Sat, 31 Dec 2016 09:14:52 -0500
User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101
 Thunderbird/45.5.1
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 14:15:02 -0000

At line 1949 of head/contrib/bsnmp/lib/snmpclient.c, you changed ..

-		if ((sc->chost = malloc(strlen(s) + 1)) == NULL) {
+		if ((sc->chost = strdup(strlen(s))) == NULL) {

This can't work as intended since strlen returns the length of the
string not a pointer to it.

I expect this should be ..

		if ((sc->chost = strdup(s)) == NULL) {

	Michael


From owner-freebsd-current@freebsd.org  Sat Dec 31 14:35:40 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5F1A3C997A9;
 Sat, 31 Dec 2016 14:35:40 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 51DC3124D;
 Sat, 31 Dec 2016 14:35:40 +0000 (UTC)
 (envelope-from jenkins-admin@FreeBSD.org)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 2EF17586;
 Sat, 31 Dec 2016 14:35:40 +0000 (UTC)
Date: Sat, 31 Dec 2016 14:35:36 +0000 (GMT)
From: jenkins-admin@FreeBSD.org
To: jmcneill@FreeBSD.org, ngie@FreeBSD.org, avos@FreeBSD.org, bapt@FreeBSD.org,
 jenkins-admin@FreeBSD.org, freebsd-current@FreeBSD.org, 
 freebsd-i386@FreeBSD.org
Message-ID: <1179799006.1.1483194940328.JavaMail.jenkins@jenkins-9.freebsd.org>
In-Reply-To: <315735125.160.1483184518491.JavaMail.jenkins@jenkins-9.freebsd.org>
References: <315735125.160.1483184518491.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: FreeBSD_HEAD_i386 - Build #4532 - Fixed
MIME-Version: 1.0
X-Jenkins-Job: FreeBSD_HEAD_i386
X-Jenkins-Result: SUCCESS
Precedence: bulk
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
X-Content-Filtered-By: Mailman/MimeDel 2.1.23
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 14:35:40 -0000

FreeBSD_HEAD_i386 - Build #4532 - Fixed:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_HEAD_i386/4532/console

Change summaries:

310972 by jmcneill:
Fix a typo in the third address of the reg property for the usbphy node.

MFC after:	1 week

310963 by bapt:
Bump copyright year.

Happy New Year 2017!

310961 by avos:
sysctl(8): fix typename for uint32_t.

MFC after:	5 days.

310960 by ngie:
Similar to r310954, set .len to 0 on malloc failure and to `len` only
on success

MFC after:	1 week

310958 by ngie:
Initialize ret to SNMPD_INPUT_OK at the top of snmp_input_start(..) to
avoid returning an uninitialized value

There are some really complicated, snakey if-statements combined with
switch statements that could result in an invalid value being returned
as `ret`

MFC after:	1 week
Reported by:	Coverity
CID:		1006551

310957 by ngie:
Use strlcpy when copying `com` to pdu->community to avoid potential
buffer overruns

MFC after:	1 week
Reported by:	Coverity
CID:		1006823, 1006824

310954 by ngie:
Set value->v.octetstring.len to a correct value on malloc success/failure

The previous code always set value->v.octetstring.len to len, regardless
of the result from the malloc call. This misleads the caller on malloc
failure. Set .len to len on success and 0 on failure.

MFC after:	1 week
Reported by:	Coverity
CID:		1007590

310952 by ngie:
MIB-II: use strlcpy instead of strcpy when copying {descr,name}

This is of course to avoid buffer overruns

The remaining strcpy instance in the module needs to be audited for
correctness

MFC after:	1 week
Reported by:	Coverity
CID:		1006827, 1006828

310950 by ngie:
MIB-II: use strlcpy when copying interface names to .ifr_name

.ifra_name is assumed to be NUL terminated; using strlcpy(3)
ensures that it's indeed NUL terminated whereas strncpy does
not.

Tested and verified as follows with a combination of ifconfig,
snmpget, and snmpset:

  % ifconfig create lo1 127.0.0.2/8
  % SNMPARGS="-v 3 -n '' -u bsnmp -A bsnmptest -l authPriv -a sha -x des -X bsnmptest localhost"
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)
  % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 2
  IF-MIB::ifAdminStatus.4 = INTEGER: down(2)
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: down(2)
  % snmpset $SNMPARGS IF-MIB::ifAdminStatus.4 i 1
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)
  % snmpget $SNMPARGS IF-MIB::ifAdminStatus.4
  IF-MIB::ifAdminStatus.4 = INTEGER: up(1)

MFC after:	2 weeks
Reported by:	Coverity
CID:		1009652-1009656, 1349850

310942 by ngie:
Unbreak the build by passing the string to strdup, not its length

MFC after:	1 week
X-MFC with:	r310931
Pointyhat to:	ngie


From owner-freebsd-current@freebsd.org  Sat Dec 31 18:43:41 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id E46A4C99405
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 18:43:41 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smarthost1.greenhost.nl (smarthost1.greenhost.nl
 [195.190.28.81])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client did not present a certificate)
 by mx1.freebsd.org (Postfix) with ESMTPS id ACCC61543
 for <freebsd-current@freebsd.org>; Sat, 31 Dec 2016 18:43:41 +0000 (UTC)
 (envelope-from ronald-lists@klop.ws)
Received: from smtp.greenhost.nl ([213.108.104.138])
 by smarthost1.greenhost.nl with esmtps
 (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2)
 (envelope-from <ronald-lists@klop.ws>) id 1cNOd0-0007Fh-Q5
 for freebsd-current@freebsd.org; Sat, 31 Dec 2016 19:43:39 +0100
Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes
To: "FreeBSD Current" <freebsd-current@freebsd.org>
Subject: Re: every command segmentation faults after installworld
References: <op.ytb350c5kndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
 <op.ytb4igexkndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
Date: Sat, 31 Dec 2016 19:43:38 +0100
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: "Ronald Klop" <ronald-lists@klop.ws>
Message-ID: <op.ytcma00mkndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
In-Reply-To: <op.ytb4igexkndu52@53556c9c.cm-6-6b.dynamic.ziggo.nl>
User-Agent: Opera Mail/12.16 (FreeBSD)
X-Authenticated-As-Hash: 398f5522cb258ce43cb679602f8cfe8b62a256d1
X-Virus-Scanned: by clamav at smarthost1.samage.net
X-Spam-Level: /
X-Spam-Score: -0.2
X-Spam-Status: No, score=-0.2 required=5.0 tests=ALL_TRUSTED,
 BAYES_50 autolearn=disabled version=3.4.0
X-Scan-Signature: 448baf4759cd3283a5930955cc61e1db
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 18:43:42 -0000

On Sat, 31 Dec 2016 13:19:18 +0100, Ronald Klop <ronald-lists@klop.ws>  
wrote:

> On Sat, 31 Dec 2016 13:11:50 +0100, Ronald Klop <ronald-lists@klop.ws>  
> wrote:
>
>> Hi,
>>
>> I just rebuild kernel+world (with NO_CLEAN=yes). Installworld failed:
>> ===> libexec/rtld-elf (install)
>> chflags -h noschg /usr/libexec/ld-elf.so.1
>> install  -s -o root -g wheel -m 555  -C -b -fschg -S ld-elf.so.1  
>> /libexec/ld-elf
>> .so.1
>> install  -o root -g wheel -m 444  ld-elf.so.1.debug  
>> /usr/lib/debug/libexec/ld-el
>> f.so.1.debug
>> install  -o root -g wheel -m 444 rtld.1.gz  /usr/share/man/man1/
>> rm -f /usr/share/man/man1/ld-elf.so.1.1  
>> /usr/share/man/man1/ld-elf.so.1.1.gz;  i
>> nstall -l h  /usr/share/man/man1/rtld.1.gz  
>> /usr/share/man/man1/ld-elf.so.1.1.gz
>> *** Signal 11
>>
>> Stop.
>> make[5]: stopped in /usr/src/libexec/rtld-elf
>> *** Error code 1
>>
>>
>> No every command I run segmentation faults.
>> Can I recover this?
>>
>> I run 12-CURRENT/amd64 and just svn upped an hour ago. I'll try to use  
>> /rescue to copy ld-elf.so.1 from a snapshot.
>>
>> Regards,
>> Ronald.
>
> This worked. Pffff. :-)
> # /rescue/cp /libexec/ld-elf.so.1 /var/tmp/
>
> # /rescue/cp  
> /.zfs/snapshot/auto-2016-12-30_20.00.hourly/libexec/ld-elf.so.1 /libexec/
> cp: /libexec/ld-elf.so.1: Operation not permitted
>
> # /rescue/chflags -h noschg /libexec/ld-elf.so.1
>
> # /rescue/cp  
> /.zfs/snapshot/auto-2016-12-30_20.00.hourly/libexec/ld-elf.so.1 /libexec/
>
> I will try a clean build now. This will take hours and hours on my  
> laptop compiling clang, so I'll see in the new year if others experience  
> the same ld-elf problem before I installworld again.
>
> Regards and happy new year,
> Ronald.

A clean build installed properly. Time for champagne.

Regards,
Ronald.

From owner-freebsd-current@freebsd.org  Sat Dec 31 20:55:11 2016
Return-Path: <owner-freebsd-current@freebsd.org>
Delivered-To: freebsd-current@mailman.ysv.freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org
 [IPv6:2001:1900:2254:206a::19:1])
 by mailman.ysv.freebsd.org (Postfix) with ESMTP id 769BAC99D22
 for <freebsd-current@mailman.ysv.freebsd.org>;
 Sat, 31 Dec 2016 20:55:11 +0000 (UTC)
 (envelope-from yaneurabeya@gmail.com)
Received: from mail-pg0-x242.google.com (mail-pg0-x242.google.com
 [IPv6:2607:f8b0:400e:c05::242])
 (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits))
 (Client CN "smtp.gmail.com",
 Issuer "Google Internet Authority G2" (verified OK))
 by mx1.freebsd.org (Postfix) with ESMTPS id 4427B177F;
 Sat, 31 Dec 2016 20:55:11 +0000 (UTC)
 (envelope-from yaneurabeya@gmail.com)
Received: by mail-pg0-x242.google.com with SMTP id b1so25964159pgc.1;
 Sat, 31 Dec 2016 12:55:10 -0800 (PST)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;
 h=subject:mime-version:from:in-reply-to:date:cc:message-id:references
 :to; bh=eVRo2T1Guc6SR+21zUuttjOKOh91kk/qb0YpA4eQFKY=;
 b=rBr8swlYBt6ybS4bDbcl6ZsmuWpn/4JBREF2am1G2z2tuFCweyqAx7fPNC997lPcwy
 Xi/FEAI4y6jkG7LQxYCv74MU++VlS94sKhawS3Wf9CUKKz3UPUt5dswubKWwjKCEQ2nZ
 NCwtHHFufaTdoqpbjbM0hEMVXcsn/Sxw0/gumT1nXzu4wFMw//+9t9fIofh97zPaRRop
 8WjNe6dnuCezo6d34+/JEx8kQnVLuX0IbU3yHJfQchPDhUUOW6h8VBcA58effoNtFmTZ
 3GkUiCB0JGERdTC23r/VV4yW98+7EvKXFxUjfyvnRchUR76Op+ODNc+/fdbk2kUPdvik
 uopQ==
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
 d=1e100.net; s=20161025;
 h=x-gm-message-state:subject:mime-version:from:in-reply-to:date:cc
 :message-id:references:to;
 bh=eVRo2T1Guc6SR+21zUuttjOKOh91kk/qb0YpA4eQFKY=;
 b=L4rCaeh0KkdJU3ix9i9oP0IxDm/xQfnW3TtUrwrdr3H/h+lmKhHuow39HE2WcuSbkc
 CSYonYfnRYMB/6/eCs/a4vKzMR4rbjL1MQt3e4uNnEcocG6AF+ZYZ1rEBGhE83Jpk54W
 kaqr+HT+Mx2WP5bcP2Qvm9go9EIj2/GWD3cavKeFFQZYtylE7sba3n8PjBUME/xVCayu
 3OQFopTlgHlB7Go+WummBJUNiwAOvqdfaUIpA8zD4KIL69xyKmQRv4MdOhjSH+q+946Z
 LbawtdL+O5gVB5GwwEBRVmpIVSGrnS6B0uSmgBbPSIxsWgfwmnkG0prcva5pfkVx0jOV
 0rsA==
X-Gm-Message-State: AIkVDXKNCHkXHb4kApVY0FQD7FAjIKk50JVuTAZM9lujaaF6CSx7p9lAiEJ/pejeb4xUXA==
X-Received: by 10.84.192.131 with SMTP id c3mr112430138pld.149.1483217710486; 
 Sat, 31 Dec 2016 12:55:10 -0800 (PST)
Received: from [192.168.20.12] (c-73-19-52-228.hsd1.wa.comcast.net.
 [73.19.52.228])
 by smtp.gmail.com with ESMTPSA id g28sm57686490pgn.13.2016.12.31.12.55.09
 (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
 Sat, 31 Dec 2016 12:55:09 -0800 (PST)
Subject: Re: SVN r310931 Bad code
Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\))
Content-Type: multipart/signed;
 boundary="Apple-Mail=_FC3E292F-A20B-463B-8576-CACF50C97BD8";
 protocol="application/pgp-signature"; micalg=pgp-sha512
X-Pgp-Agent: GPGMail
From: "Ngie Cooper (yaneurabeya)" <yaneurabeya@gmail.com>
In-Reply-To: <742de824-6f35-8c91-8603-c5a766e313b4@protected-networks.net>
Date: Sat, 31 Dec 2016 12:55:08 -0800
Cc: ngie@freebsd.org,
 freebsd-current <freebsd-current@freebsd.org>
Message-Id: <69688AC6-02E3-4C71-8214-22F2951F8C62@gmail.com>
References: <742de824-6f35-8c91-8603-c5a766e313b4@protected-networks.net>
To: Michael Butler <imb@protected-networks.net>
X-Mailer: Apple Mail (2.3124)
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.23
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <https://lists.freebsd.org/mailman/options/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=unsubscribe>
List-Archive: <http://lists.freebsd.org/pipermail/freebsd-current/>
List-Post: <mailto:freebsd-current@freebsd.org>
List-Help: <mailto:freebsd-current-request@freebsd.org?subject=help>
List-Subscribe: <https://lists.freebsd.org/mailman/listinfo/freebsd-current>, 
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Sat, 31 Dec 2016 20:55:11 -0000


--Apple-Mail=_FC3E292F-A20B-463B-8576-CACF50C97BD8
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain;
	charset=utf-8


> On Dec 31, 2016, at 06:14, Michael Butler <imb@protected-networks.net> =
wrote:
>=20
> At line 1949 of head/contrib/bsnmp/lib/snmpclient.c, you changed ..
>=20
> -		if ((sc->chost =3D malloc(strlen(s) + 1)) =3D=3D NULL) {
> +		if ((sc->chost =3D strdup(strlen(s))) =3D=3D NULL) {
>=20
> This can't work as intended since strlen returns the length of the
> string not a pointer to it.
>=20
> I expect this should be ..
>=20
> 		if ((sc->chost =3D strdup(s)) =3D=3D NULL) {

	Yeah=E2=80=A6 egg on my face... I fixed it in r310942.
Sorry for the breakage :/=E2=80=A6
-Ngie

--Apple-Mail=_FC3E292F-A20B-463B-8576-CACF50C97BD8
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment;
	filename=signature.asc
Content-Type: application/pgp-signature;
	name=signature.asc
Content-Description: Message signed with OpenPGP using GPGMail

-----BEGIN PGP SIGNATURE-----
Comment: GPGTools - https://gpgtools.org

iQIcBAEBCgAGBQJYaBstAAoJEPWDqSZpMIYVbwsP/j+O0na1i9wrGmR28kkDIfYq
vQDaj5/vUctFjjgOUMYd0LwlDmNkPsYD92Hq2YE2RivCxQ2liZ+b2wwSZCuVPCtp
EQWtj5S+21ujGYQj/gFyG6Vx+1VbaJfmxG4eguS7KbaYIWmCD2KHI5wAhOmAwPYH
VBb3fjbhcogiBVsGzJ5qAroBTvvreBtzdGS38sZXoS0uF52Hjz2iRl6zGojRyjqf
R9EKRSXhB7WiG1ZMuCps0vtxnm4ZMYTShEOw9xuHmAsCeHBBx1jb4iO9C9Jkp38E
L59c25vdgD8pbqMAehWZHeo4aZIwI74EJjnNR9FAfn+CYEuQT8tEi7MNq1ro52HH
QGI3FvPSiGdEWssBIUgZI8wONoxt8yKM5hDqr/IUZY62d0TXxMHrp84nim2bgq47
kcBRAt1+35HiwE98Hus1VPnwwj+jbIRxd/oC2FmsMsW5OLJCoDp61gJk2rt8PpbU
etZ4FABpQOQjFWiSnRXHPM6XXp2HPsAu56mAiaE9BUzBZGWloFVpOiBGcL9YUofP
WruBkB/1nlbHouzRJmfwTp3dlNlLKY4f5U2bxCW27x/xyrWD0pMOir+6Bvo7yzFx
TxGxugYmYFtYgk6Ip8M6K/gq68jPLRwAKy8X29MAemmAtpNunDF9H8ezn9WMrQcO
UYLJEaUtIrTFiMk+mjZX
=HnpP
-----END PGP SIGNATURE-----

--Apple-Mail=_FC3E292F-A20B-463B-8576-CACF50C97BD8--