Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 21 Mar 2014 10:40:16 -0600 (MDT)
From:      Warren Block <wblock@wonkity.com>
To:        =?ISO-8859-15?Q?Dag-Erling_Sm=F8rgrav?= <des@des.no>
Cc:        jilles@freebsd.org, freebsd-current@freebsd.org, Mariusz Zaborski <oshogbo@freebsd.org>, freebsd-arch@freebsd.org
Subject:   Re: Hello fdclose
Message-ID:  <alpine.BSF.2.00.1403211030450.14887@wonkity.com>
In-Reply-To: <86fvmbzlbn.fsf@nine.des.no>
References:  <CAGOYWV80vTTQbvSjvNa6XBzBiKy%2BjnGantkUH_RO=8prxoHmyQ@mail.gmail.com> <201403181404.52197.jhb@freebsd.org> <alpine.BSF.2.00.1403182230140.45496@wonkity.com> <201403191523.33275.jhb@freebsd.org> <alpine.BSF.2.00.1403191407240.52822@wonkity.com> <86zjkkr5ma.fsf@nine.des.no> <alpine.BSF.2.00.1403210740240.13682@wonkity.com> <86fvmbzlbn.fsf@nine.des.no>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, 21 Mar 2014, Dag-Erling Smørgrav wrote:

> Warren Block <wblock@wonkity.com> writes:
>> Dag-Erling Smørgrav <des@des.no> writes:
>>> We always use [The .Nm foo utility or The .Fn foo function] instead
>>> of just .Nm or .Fn at the start of a sentence, but never (or rarely)
>>> within a sentence.
>> By "we", do you mean the FreeBSD project or your local organization?
>> Is there a specific reason the redundant wording, or is it just
>> customary?
>
> I mean the FreeBSD project, and the reason is as John stated: all
> sentences must start with a capital letter.  I've gotten so used to this
> over the past 15 years that I even do it in email and other non-FreeBSD
> written material.
>
> DES

"Because it's been that way for 15 years" is not always a justification 
(consider BIND in base, for example :).

I'll let this drop for now, but still find it interesting that it is not 
mentioned in the FDP Primer, and those style guide rules date back at 
least 15 years.  It may be that the original doc project members felt 
that capitalizing the first word of a sentence was so obvious that it 
did not need to be stated.  Or possibly, that it was a rule that could 
be usefully broken at times.
From owner-freebsd-current@FreeBSD.ORG  Fri Mar 21 16:53:46 2014
Return-Path: <owner-freebsd-current@FreeBSD.ORG>
Delivered-To: freebsd-current@freebsd.org
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
 (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by hub.freebsd.org (Postfix) with ESMTPS id A1BF02C2;
 Fri, 21 Mar 2014 16:53:46 +0000 (UTC)
Received: from jenkins-9.freebsd.org (jenkins-9.freebsd.org [8.8.178.209])
 by mx1.freebsd.org (Postfix) with ESMTP id 71A65365;
 Fri, 21 Mar 2014 16:53:46 +0000 (UTC)
Received: from jenkins-9.freebsd.org (localhost [127.0.0.1])
 by jenkins-9.freebsd.org (Postfix) with ESMTP id 74509A8E;
 Fri, 21 Mar 2014 16:53:44 +0000 (UTC)
Date: Fri, 21 Mar 2014 16:53:40 +0000 (GMT)
From: jenkins-admin@freebsd.org
To: jenkins-admin@FreeBSD.org, freebsd-current@freebsd.org, kib@FreeBSD.org
Message-ID: <135208969.8.1395420822857.JavaMail.jenkins@jenkins-9.freebsd.org>
Subject: Build failed in Jenkins: FreeBSD_HEAD #324
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: quoted-printable
X-Jenkins-Job: FreeBSD_HEAD
X-Jenkins-Result: FAILURE
X-BeenThere: freebsd-current@freebsd.org
X-Mailman-Version: 2.1.17
Precedence: list
List-Id: Discussions about the use of FreeBSD-current
 <freebsd-current.freebsd.org>
List-Unsubscribe: <http://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: <http://lists.freebsd.org/mailman/listinfo/freebsd-current>,
 <mailto:freebsd-current-request@freebsd.org?subject=subscribe>
X-List-Received-Date: Fri, 21 Mar 2014 16:53:46 -0000

See <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/324/changes>;

Changes:

[kib] Fix two issues with /dev/mem access on amd64, both causing kernel pag=
e
faults.

First, for accesses to direct map region should check for the limit by
which direct map is instantiated.

Second, for accesses to the kernel map, success returned from the
kernacc(9) does not guarantee that consequent attempt to read or write
to the checked address succeed, since other thread might invalidate
the address meantime.  Add a new thread private flag TDP_DEVMEMIO,
which instructs vm_fault() to return error when fault happens on the
MAP_ENTRY_NOFAULT entry, instead of panicing.  The trap handler would
then see a page fault from access, and recover in normal way, making
/dev/mem access safer.

Remove GIANT_REQUIRED from the amd64 memrw(), since it is not needed
and having Giant locked does not solve issues for amd64.

Note that at least the second issue exists on other architectures, and
requires similar patching for md code.

Reported and tested by:=09clusteradm (gjb, sbruno)
Sponsored by:=09The FreeBSD Foundation
MFC after:=091 week

[kib] Initialize vm_map_entry member wiring_thread on the map entry creatio=
n.
This was missed in r253190.

Reported by:=09hps, peter
Tested by:=09hps
Sponsored by:=09The FreeBSD Foundation
MFC after:=093 days

------------------------------------------
[...truncated 219602 lines...]
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_inter=
rupts.c>
--- mac_socket.o ---
ctfconvert -L VERSION -g mac_socket.o
--- modules-all ---
--- ar9287_olc.o ---
ctfconvert -L VERSION -g ar9287_olc.o
--- sg_pager.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/sg_pager.c>
--- modules-all ---
--- ar9300_radar.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_radar=
.c>
--- phys_pager.o ---
ctfconvert -L VERSION -g phys_pager.o
--- uma_core.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/uma_core.c>
--- sg_pager.o ---
ctfconvert -L VERSION -g sg_pager.o
--- uma_dbg.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/uma_dbg.c>
ctfconvert -L VERSION -g uma_dbg.o
--- vm_glue.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_glue.c>
--- modules-all ---
--- ar9300_interrupts.o ---
ctfconvert -L VERSION -g ar9300_interrupts.o
--- ar9300_radar.o ---
ctfconvert -L VERSION -g ar9300_radar.o
--- ar9300_ani.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_ani.c=
>
--- ar9300_keycache.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_keyca=
che.c>
--- vm_glue.o ---
ctfconvert -L VERSION -g vm_glue.o
--- vm_init.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_init.c>
ctfconvert -L VERSION -g vm_init.o
--- vm_kern.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_kern.c>
--- modules-all ---
ctfconvert -L VERSION -g ar9300_keycache.o
--- ar9300_radio.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_radio=
.c>
--- ar9300_ani.o ---
ctfconvert -L VERSION -g ar9300_ani.o
--- ar9300_xmit.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_xmit.=
c>
--- vm_kern.o ---
ctfconvert -L VERSION -g vm_kern.o
--- vm_meter.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_meter.c>
--- uma_core.o ---
ctfconvert -L VERSION -g uma_core.o
--- vm_phys.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_phys.c>
--- modules-all ---
--- ar9300_radio.o ---
ctfconvert -L VERSION -g ar9300_radio.o
--- vm_meter.o ---
ctfconvert -L VERSION -g vm_meter.o
--- vm_radix.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_radix.c>
--- modules-all ---
--- ar9300_attach.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_attac=
h.c>
--- ar9300_xmit.o ---
ctfconvert -L VERSION -g ar9300_xmit.o
--- vm_phys.o ---
ctfconvert -L VERSION -g vm_phys.o
--- vm_reserv.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_reserv.c>
--- vm_radix.o ---
ctfconvert -L VERSION -g vm_radix.o
--- vm_unix.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_unix.c>
--- modules-all ---
--- ar9300_mci.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_mci.c=
>
--- vm_unix.o ---
ctfconvert -L VERSION -g vm_unix.o
--- vm_zeroidle.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/vm_zeroidle.c>
--- vm_reserv.o ---
ctfconvert -L VERSION -g vm_reserv.o
--- features.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xen/features.c>
--- vm_zeroidle.o ---
ctfconvert -L VERSION -g vm_zeroidle.o
--- xdr.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr.c>
--- features.o ---
ctfconvert -L VERSION -g features.o
--- xdr_array.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr_array.c>
ctfconvert -L VERSION -g xdr_array.o
--- xdr_mbuf.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr_mbuf.c>
--- xdr.o ---
ctfconvert -L VERSION -g xdr.o
--- xdr_mem.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr_mem.c>
--- xdr_mbuf.o ---
ctfconvert -L VERSION -g xdr_mbuf.o
--- xdr_reference.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr_reference.c>
--- xdr_mem.o ---
ctfconvert -L VERSION -g xdr_mem.o
--- xdr_sizeof.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/xdr/xdr_sizeof.c>
--- modules-all ---
--- ar9300_attach.o ---
ctfconvert -L VERSION -g ar9300_attach.o
--- xdr_reference.o ---
ctfconvert -L VERSION -g xdr_reference.o
--- modules-all ---
--- ar9300_stub.o ---
--- hpt27xx_lib.o ---
--- xdr_sizeof.o ---
ctfconvert -L VERSION -g xdr_sizeof.o
--- modules-all ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_stub.=
c>
--- hpt27xx_lib.o ---
uudecode < <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/dev=
/hpt27xx/amd64-elf.hpt27xx_lib.o.uu>
--- hptmvraid.o ---
uudecode < <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/dev=
/hptmv/amd64-elf.raid.o.uu>
--- modules-all ---
--- ar9300_mci.o ---
ctfconvert -L VERSION -g ar9300_mci.o
--- ar9300_xmit_ds.o ---
--- hptmvraid.o ---
ctfconvert -L VERSION -g hptmvraid.o
--- modules-all ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_xmit_=
ds.c>
--- hptnr_lib.o ---
uudecode < <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/dev=
/hptnr/amd64-elf.hptnr_lib.o.uu>
ctfconvert -L VERSION -g hptnr_lib.o
--- hpt27xx_lib.o ---
ctfconvert -L VERSION -g hpt27xx_lib.o
--- hptrr_lib.o ---
uudecode < <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/dev=
/hptrr/amd64-elf.hptrr_lib.o.uu>
--- amd64_mem.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/amd64_me=
m.c>
--- modules-all ---
--- ar9300_stub.o ---
ctfconvert -L VERSION -g ar9300_stub.o
--- hptrr_lib.o ---
ctfconvert -L VERSION -g hptrr_lib.o
--- atomic.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/atomic.c=
>
--- bios.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/bios.c>
ctfconvert -L VERSION -g bios.o
--- db_disasm.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/db_disas=
m.c>
--- atomic.o ---
ctfconvert -L VERSION -g atomic.o
--- db_interface.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/db_inter=
face.c>
--- amd64_mem.o ---
ctfconvert -L VERSION -g amd64_mem.o
--- db_trace.o ---
--- modules-all ---
--- ar9300_xmit_ds.o ---
ctfconvert -L VERSION -g ar9300_xmit_ds.o
--- db_trace.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/db_trace=
.c>
--- db_interface.o ---
ctfconvert -L VERSION -g db_interface.o
--- modules-all ---
--- ar9300_beacon.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/modul=
es/ath/../../dev/ath> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HE=
AD/ws/sys/modules/ath/../../dev/ath/ath_hal> -I. -I<https://jenkins.freebsd=
.org/jenkins/job/FreeBSD_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_=
hal/> -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj<https://jenkins.freebs=
d.org/jenkins/job/FreeBSD_HEAD/ws/sys/GENERIC/opt_global.h> -I. -I@ -I@/con=
trib/altq -fno-common -gdwarf-2 -fno-omit-frame-pointer -mno-omit-leaf-fram=
e-pointer -I/usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/GENERIC>  -mno-aes -mno-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx =
-mno-sse -msoft-float  -fno-asynchronous-unwind-tables -ffreestanding -fsta=
ck-protector -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wal=
l -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototy=
pes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fforma=
t-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-=
tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equality=
 -Wno-unused-function    -c <https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/modules/ath/../../contrib/dev/ath/ath_hal/ar9300/ar9300_beaco=
n.c>
--- gdb_machdep.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/gdb_mach=
dep.c>
--- db_disasm.o ---
ctfconvert -L VERSION -g db_disasm.o
--- in_cksum.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/in_cksum=
.c>
--- gdb_machdep.o ---
ctfconvert -L VERSION -g gdb_machdep.o
--- initcpu.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/initcpu.=
c>
--- in_cksum.o ---
ctfconvert -L VERSION -g in_cksum.o
--- io.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/io.c>
--- initcpu.o ---
ctfconvert -L VERSION -g initcpu.o
--- mem.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/mem.c>
--- db_trace.o ---
ctfconvert -L VERSION -g db_trace.o
--- minidump_machdep.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/minidump=
_machdep.c>
--- modules-all ---
ctfconvert -L VERSION -g ar9300_beacon.o
--- io.o ---
ctfconvert -L VERSION -g io.o
--- ptrace_machdep.o ---
cc  -c -O2 -pipe -fno-strict-aliasing  -std=3Dc99 -gdwarf-2 -Wall -Wredunda=
nt-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoint=
er-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extension=
s  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologica=
l-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-unuse=
d-function   -nostdinc  -I. -I<https://jenkins.freebsd.org/jenkins/job/Free=
BSD_HEAD/ws/sys> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws=
/sys/contrib/altq> -I<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/=
ws/sys/contrib/libfdt> -D_KERNEL -DHAVE_KERNEL_OPTION_HEADERS -include opt_=
global.h  -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer -mno-aes -mn=
o-avx -mcmodel=3Dkernel -mno-red-zone -mno-mmx -mno-sse -msoft-float  -fno-=
asynchronous-unwind-tables -ffreestanding -fstack-protector -Werror  <https=
://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/ptrace_m=
achdep.c>
--- mem.o ---
<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/me=
m.c>:105:32: error: use of undeclared identifier 'dmaplimit'; did you mean =
'pmap_init'?
                            (v > DMAP_MIN_ADDRESS + dmaplimit &&
                                                    ^~~~~~~~~
                                                    pmap_init
<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/vm/pmap.h>:121=
:8: note: 'pmap_init' declared here
void             pmap_init(void);
                 ^
<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/me=
m.c>:105:30: error: arithmetic on a pointer to the function type 'void (voi=
d)' is a GNU extension [-Werror,-Wpointer-arith]
                            (v > DMAP_MIN_ADDRESS + dmaplimit &&
                                                  ^ ~~~~~~~~~
<https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/sys/amd64/amd64/me=
m.c>:105:11: error: ordered comparison between pointer and integer ('u_long=
' (aka 'unsigned long') and 'void (*)(void)') [-Werror]
                            (v > DMAP_MIN_ADDRESS + dmaplimit &&
                             ~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
3 errors generated.
*** [mem.o] Error code 1

make[2]: stopped in /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/GENERIC>
--- modules-all ---
A failure has been detected in another branch of the parallel make

make[4]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/modules/ath>
*** [all] Error code 2

make[3]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/modules>
1 error

make[3]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/sys/modules>
*** [modules-all] Error code 2

make[2]: stopped in /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/GENERIC>
--- ptrace_machdep.o ---
ctfconvert -L VERSION -g ptrace_machdep.o
--- minidump_machdep.o ---
ctfconvert -L VERSION -g minidump_machdep.o
2 errors

make[2]: stopped in /usr/obj<https://jenkins.freebsd.org/jenkins/job/FreeBS=
D_HEAD/ws/sys/GENERIC>
*** [buildkernel] Error code 2

make[1]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/>
1 error

make[1]: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/w=
s/>
*** [buildkernel] Error code 2

make: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/>;
1 error

make: stopped in <https://jenkins.freebsd.org/jenkins/job/FreeBSD_HEAD/ws/>;
Build step 'Execute shell' marked build as failure



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?alpine.BSF.2.00.1403211030450.14887>