Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 5 Oct 2015 10:15:39 +0000 (GMT)
From:      jenkins-admin@FreeBSD.org
To:        mav@FreeBSD.org, bapt@FreeBSD.org, jenkins-admin@FreeBSD.org,  freebsd-stable@FreeBSD.org, freebsd-i386@FreeBSD.org
Subject:   FreeBSD_STABLE_10-i386 - Build #524 - Failure
Message-ID:  <478778636.163.1444040142838.JavaMail.jenkins@jenkins-9.freebsd.org>

next in thread | raw e-mail | index | archive | help
FreeBSD_STABLE_10-i386 - Build #524 - Failure:

Build information: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/5=
24/
Full change log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/524=
/changes
Full build log: https://jenkins.FreeBSD.org/job/FreeBSD_STABLE_10-i386/524/=
console

Change summaries:

288765 by mav:
MFC r287912: Report proper medium error code for VERIFY commands.

288764 by mav:
MFC r287875: Fix reading after end of file for file-backed LUNs.

If backing file is smaller then the LUN size, we have to explicitly clear
the rest of the buffer to not leak some random data from previous I/Os.

288763 by mav:
MFC r287868: Make COMPARE AND WRITE report offset of difference.

288762 by mav:
MFC r287860: Frontends don't need to set errors themselves.

288761 by mav:
MFC r287855: Don't flap the HA link if sysctl is reset to the same value.

288760 by mav:
MFC r287823: Add ctl-lun config option for consistency in HA setups.

288759 by mav:
MFC r287818: Fix completion/error status reporting.

288758 by mav:
MFC r287816: Close potential race between datamove and HA failover.

288757 by mav:
MFC r287784: Implement data/status aggregation for secondary HA node.

For short read requests this reduces latency by 30%, reporting command
completion after two interlink roundtrips instead of full three.

288756 by mav:
MFC r287783: Implement data/status aggregation for camsim backend.

This is almost pointless for primary HA node, but useful for secondary,
where between fe_datamove and fe_done calls goes another link roundtrip.

288755 by mav:
MFC r287778: Remove CTL_PRIV_LBA_LEN from HA messages.

Previously it was used for statistics, but now just a 16 extra bytes.

288754 by mav:
MFC r287774: Implement QUERY TASK, QUERY TASK SET and QUERY ASYNC EVENT.

Now we support most of SAM-5 task management.

288753 by mav:
MFC r287766: Add negotiation of iSCSIProtocolLevel to 2 (RFC7144).

We may need to pass negotiated value to kernel level, but so far it is
not necessary, since it does not use any new features without request.

288752 by mav:
MFC r287765: Map CLEAR TASK SET and I_T NEXUS RESET for iSCSI.

The last should not be called without iSCSIProtocolLevel negotiation.

288751 by mav:
MFC r287764: Implement iSCSI TARGET COLD RESET task management function.

Implement it as CTL_TASK_TARGET_RESET plus termination of all sessions.

288750 by mav:
MFC r287760: Improve read-only support.

288749 by mav:
MFC r287758: Reannounce port to HA peer if LUN map changed after online.

288748 by mav:
MFC r287757: When updating port, apply only change of LUN map, not whole.

288747 by mav:
MFC r287756:
Report INQUIRY DATA HAS CHANGED for related LUNs on port on-/offline.

288746 by mav:
MFC r287754: Report CTL_UA_LUN_CHANGE on LUN map change.

288745 by mav:
MFC r287748: Make TARGET RESET respect LUN mapping.

288744 by mav:
MFC r287724: Check for obsolete NUL bin in CSCD descriptor.

288743 by mav:
MFC r287721: Add HA support for CTL_TASK_I_T_NEXUS_RESET.

288742 by mav:
MFC r287720: Fix false CTL_UA_RES_RELEASE on secondary HA node.

288741 by mav:
MFC r287718: Decode WRITE ATOMIC(16) command.

288740 by mav:
MFC r287715: Improve XCOPY error reporting.

288739 by mav:
MFC r287714: Report that we have no limit on POPULATE TOKEN segment size.

288738 by mav:
MFC r287712: Correct RTPG bitmask.

288737 by mav:
MFC r287711: Some HA polishing.

288736 by mav:
MFC r287707: CTL documentation update, mostly for HA.

288735 by mav:
MFC r287671:
Make ctld restart on primary HA node less invasive for secondary.

288734 by mav:
MFC r287670: Close races between device close and request processing.

All requests arriving for processing after OFFLINE flag set are rejected
with BUSY status.  Races around OFFLINE flag setting are closed by calling
taskqueue_drain_all().

288733 by mav:
MFC r287664: Reference/release devices on every I/O, rather on open/close.

While this may be slower, it allows device destruction to complete,
rather then block waiting for indefinitely long time.

288732 by mav:
MFC r287621: Reimplement CTL High Availability.

CTL HA functionality was originally implemented by Copan many years ago,
but large part of the sources was never published.  This change includes
clean room implementation of the missing code and fixes for many bugs.

This code supports dual-node HA with ALUA in four modes:
 - Active/Unavailable without interlink between nodes;
 - Active/Standby with second node handling only basic LUN discovery and
reservation, synchronizing with the first node through the interlink;
 - Active/Active with both nodes processing commands and accessing the
backing storage, synchronizing with the first node through the interlink;
 - Active/Active with second node working as proxy, transfering all
commands to the first node for execution through the interlink.

Unlike original Copan's implementation, depending on specific hardware,
this code uses simple custom TCP-based protocol for interlink.  It has
no authentication, so it should never be enabled on public interfaces.

The code may still need some polishing, but generally it is functional.

Relnotes:       yes
Sponsored by:   iXsystems, Inc.

288731 by mav:
MFC r287620: Remove unused target and initiator IDs.

288730 by mav:
MFC r287618: Disable CTL_IO_DELAY feature.

It is too developer-oriented to be enabled by default.

288729 by mav:
MFC r287534: Add two new portal group options "tag" and "foreign".

They are going to be useful in clustered setups.

288728 by mav:
MFC r287500: Allow LUN options modification via CTL_LUNREQ_MODIFY.

Not all changes take effect, but that is a different question.

288727 by mav:
MFC r287499: Move setting of media parameters inside open routines.

This is preparation for possibility to open/close media several times
per LUN life cycle.  While there, rename variables to reduce confusion.
As additional bonus this allows to open read-only media, such as ZFS
snapshots.

288726 by mav:
MFC r287455, r287458, r287459: Remove some dead code.

288725 by mav:
MFC r287433: Small UA cleanup.

288724 by mav:
MFC r287372:
Make most of port methods optional and remove bunch of dummies.

288723 by mav:
MFC r287293: Remove 600 bytes of port_priv from struct ctl_io_hdr.

This field used only for camtgt frontend, and once it any way preallocates
all requests, let it preallocate this memory too, not bothering core code.

288722 by mav:
MFC r287221: Fix type bug introduced at r286811.

288721 by mav:
MFC r286811: Polish sizes processing.

288720 by mav:
MFC r286807: Move "ioctl" CAM frontend into separate file.

It has nothing to share with too huge ctl.c other then device descriptor,
but even that may be counted as design error that may be fixed later.
At some point we may even want to have several ioctl ports.

288719 by mav:
MFC r286806: Drop "internal" CTL frontend.

Its idea was to be a simple initiator and execute several commands from
kernel level, but FreeBSD never had consumer for that functionality,
while its implementation polluted many unrelated places.

288718 by mav:
MFC r286406, r286414:
Wrap some unused functions with notyet, it is necessary to be able to
build the modules/ctl directly.
Remove a dead MALLOC_DEFINE.

288717 by mav:
MFC r285600: MULTI_ID supported does not mean it is used.

288716 by mav:
MFC r285510:
Switch initiator IDs in target mode to the same address space as target
IDs in initiator mode -- index in port database instead of handlers.

This makes initiator IDs persist across role changes and firmware resets,
when handlers previously assigned by firmware are lost and reused.

288715 by mav:
MFC r285481: Make role sysctl handling from r284727 less strict.

288714 by mav:
MFC r285459: Unify port database use for target and initiator roles.

Aside from cleaner and more consistent code, this allows ports to be both
target and initiator same time, and easily switch from any role to any.

288713 by mav:
MFC r285155:
Make first step toward supporting target and initiator roles same time.

To avoid conflicts between target and initiator devices in CAM, make
CTL use target ID reported by HBA as its initiator_id in XPT_PATH_INQ.
That target ID is known to never be used for initiator role, so it won't
conflict.  For Fibre Channel and FireWire HBAs this specific ID choice
is irrelevant since all target IDs there are virtual. Same time for SPI
HBAs it seems could be even requirement to use same target ID for both
initiator and target roles.

While there are some more things to polish in isp(4) driver, first tests
of using both roles same time on the same port appeared successfull:

# camcontrol devlist -v
scbus0 on isp0 bus 0:
<FREEBSD CTLDISK 0001>             at scbus0 target 1 lun 0 (da20,pass21)
<>                                 at scbus0 target 256 lun 0 (ctl0)
<>                                 at scbus0 target -1 lun ffffffff (ctl1)

288712 by mav:
MFC r285154: Remove extra level of target ID indirection (isp_dev_map).

FreeBSD never had limitation on number of target IDs, and there is no
any other requirement to allocate them densely.  Since slots of port
database already populated just sequentially, there is no much need
for another indirection to allocate sequentially too.

288711 by mav:
MFC r285147: Change comment added in r284540.

This appeared to be not card's issue, but driver's, though solution is
the same so far.

288710 by bapt:
MFC 287473,287485,287493,287494

Add a new sesutil(8) utility

This is an utility for managing SCSI Enclosure Services (SES) device.

For now only one command is supported "locate" which will change the test o=
f the
external LED associated to a given disk.

Usage if the following:
sesutil locate disk [on|off]

Disk can be a device name: "da12" or a special keyword: "all".

Reviewed by:=09mav
Relnotes:=09yes
Sponsored by:=09gandi.net

288709 by mav:
MFC r285146: Drop discovered targets when initiator role is disabled.

288708 by mav:
MFC r273051 (by imp):
Use the C99 flexible array construct to denote a variable amount of
data rather than the old-school [1] construct. We have required c99
compilers for some time.

288707 by mav:
MFC r271731 (by will): Fix a kernel panic when unloading isp(4).

In the current implementation, the isp_kthread() threads never exit.

The target threads do have an exit mode from isp_attach(), but it is
not invoked from isp_detach().

Ensure isp_detach() notifies threads started for each channel, such
that they exit before their parent device softc detaches, and thus
before the module does.  Otherwise, a page fault panic occurs later in:

sysctl_kern_proc
  sysctl_out_proc
    kern_proc_out
      fill_kinfo_proc
        fill_kinfo_thread
          strlcpy(kp->ki_wmesg, td->td_wmesg, sizeof(kp->ki_wmesg));

For isp_kthread() (and isp(4) target threads), td->td_wmesg references
now-unmapped memory after the module has been unloaded.  These threads
are typically msleep()ing at the time of unload, but they could also
attempt to execute now-unmapped code segments.

288706 by mav:
MFC r285030: Fix couple panics on forced unmount of backing file.

288704 by mav:
MFC r281532 (by delphij): Eliminate unused headers.

288702 by mav:
MFC r281531 (by asomers):
Initialize async_arg_ptr in xpt_async when called with async_code
AC_ADVINFO_CHANGED.

Without this change, newly inserted hard disks won't always have their
physical path device nodes created.  The problem reproduces most readily
when attaching a large number of disks at once.

288701 by mav:
MFC r280845 (by eadler):
Add some additional quirks for various Western Digital Caviar MHDDs



The end of the build log:

[...truncated 162539 lines...]
--- cxgb_mv88e1xxx.o ---
ctfconvert -L VERSION -g cxgb_mv88e1xxx.o
--- cxgb_xgmac.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/common/cxgb_xgmac.c -o cxgb_xgmac.o
--- all_subdir_ath ---
--- if_ath_beacon.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_beacon.c -o if_ath_beacon.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_mp_ring.o
--- t4_netmap.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe -DHAVE_KERNEL_O=
PTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I@ -I=
@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  -mno-aes -mno=
-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwar=
f-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wall -Wredun=
dant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoi=
nter-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensi=
ons  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologi=
cal-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-err=
or-unused-function    -c /usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/c=
xgbe/t4_netmap.c -o t4_netmap.o
ctfconvert -L VERSION -g t4_netmap.o
--- t4_hw.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe -DHAVE_KERNEL_O=
PTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I@ -I=
@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  -mno-aes -mno=
-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwar=
f-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wall -Wredun=
dant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoi=
nter-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensi=
ons  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologi=
cal-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-err=
or-unused-function    -c /usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/c=
xgbe/common/t4_hw.c -o t4_hw.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g if_ath_beacon.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_xgmac.o
--- cxgb_vsc7323.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/common/cxgb_vsc7323.c -o cxgb_vsc7323.o
--- all_subdir_ath ---
--- if_ath_rx_edma.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_rx_edma.c -o if_ath_rx_edma.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_vsc7323.o
--- cxgb_t3_hw.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/common/cxgb_t3_hw.c -o cxgb_t3_hw.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g if_ath_rx_edma.o
--- if_ath_tx_edma.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_tx_edma.c -o if_ath_tx_edma.o
ctfconvert -L VERSION -g if_ath_tx_edma.o
--- if_ath_spectral.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_spectral.c -o if_ath_spectral.o
--- all_subdir_ctl ---
--- ctl.o ---
ctfconvert -L VERSION -g ctl.o
--- ctl_backend_ramdisk.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_backend_ramdisk.c -o ctl_backend_ramdisk.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g if_ath_spectral.o
--- if_ath_btcoex.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_btcoex.c -o if_ath_btcoex.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_backend_ramdisk.o
--- ctl_cmd_table.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_cmd_table.c -o ctl_cmd_table.o
ctfconvert -L VERSION -g ctl_cmd_table.o
--- ctl_frontend.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_frontend.c -o ctl_frontend.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g if_ath_btcoex.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend.o
--- ctl_frontend_ioctl.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_frontend_ioctl.c -o ctl_frontend_ioctl.o
--- all_subdir_ath ---
--- if_ath_lna_div.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/if_ath_lna_div.c -o if_ath_lna_div.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_hw.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend_ioctl.o
--- ctl_frontend_iscsi.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_frontend_iscsi.c -o ctl_frontend_iscsi.o
--- all_subdir_cxgbe ---
--- t4_l2t.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe -DHAVE_KERNEL_O=
PTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I@ -I=
@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  -mno-aes -mno=
-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwar=
f-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wall -Wredun=
dant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoi=
nter-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensi=
ons  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologi=
cal-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-err=
or-unused-function    -c /usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/c=
xgbe/t4_l2t.c -o t4_l2t.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g if_ath_lna_div.o
--- all_subdir_cxgbe ---
ctfconvert -L VERSION -g t4_l2t.o
--- t4_main.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I/usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/cxgbe -DHAVE_KERNEL_O=
PTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global.h -I. -I@ -I=
@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  -mno-aes -mno=
-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-protector -gdwar=
f-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector -Wall -Wredun=
dant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-prototypes -Wpoi=
nter-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -fformat-extensi=
ons  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-error-tautologi=
cal-compare -Wno-error-empty-body  -Wno-error-parentheses-equality -Wno-err=
or-unused-function    -c /usr/src/sys/modules/cxgbe/if_cxgbe/../../../dev/c=
xgbe/t4_main.c -o t4_main.o
--- all_subdir_ath ---
--- ah_osdep.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/ah_osdep.c -o ah_osdep.o
ctfconvert -L VERSION -g ah_osdep.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_t3_hw.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_frontend_iscsi.o
--- all_subdir_ath ---
--- sample.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/ath_rate/sample/sample.c -o sample.o
--- all_subdir_ctl ---
--- ctl_ha.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_ha.c -o ctl_ha.o
--- all_subdir_cxgb ---
--- cxgb_main.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/cxgb_main.c -o cxgb_main.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_ha.o
--- ctl_scsi_all.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_scsi_all.c -o ctl_scsi_all.o
ctfconvert -L VERSION -g ctl_scsi_all.o
--- ctl_tpc.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_tpc.c -o ctl_tpc.o
--- all_subdir_ath ---
ctfconvert -L VERSION -g sample.o
--- dfs_null.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c  -I. -I/usr/src/sys/modules/ath/../../dev/ath -I/usr/src/sys/modules/ath/=
../../dev/ath/ath_hal -I. -I/usr/src/sys/modules/ath/../../contrib/dev/ath/=
ath_hal/ -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC=
/opt_global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sy=
s/GENERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding =
-fstack-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack=
-protector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -W=
missing-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-point=
er-sign -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-opti=
on  -Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-paren=
theses-equality -Wno-error-unused-function    -c /usr/src/sys/modules/ath/.=
./../dev/ath/ath_dfs/null/dfs_null.c -o dfs_null.o
ctfconvert -L VERSION -g dfs_null.o
--- if_ath.kld ---
ld  -d -warn-common -r -d -o if_ath.kld if_ath.o if_ath_alq.o if_ath_debug.=
o if_ath_keycache.o if_ath_sysctl.o if_ath_tx.o if_ath_tx_ht.o if_ath_led.o=
 if_ath_rx.o if_ath_tdma.o if_ath_beacon.o if_ath_rx_edma.o if_ath_tx_edma.=
o if_ath_spectral.o if_ath_btcoex.o if_ath_lna_div.o ah_osdep.o ah.o ah_reg=
domain.o ah_eeprom_v3.o ah_eeprom_v1.o ar5210_attach.o ar5210_beacon.o ar52=
10_interrupts.o ar5210_keycache.o ar5210_misc.o ar5210_phy.o ar5210_power.o=
 ar5210_recv.o ar5210_reset.o ar5210_xmit.o ar5211_attach.o ar5211_beacon.o=
 ar5211_interrupts.o ar5211_keycache.o ar5211_misc.o ar5211_phy.o ar5211_po=
wer.o ar5211_recv.o ar5211_reset.o ar5211_xmit.o ar5212_ani.o ar5212_attach=
.o ar5212_beacon.o ar5212_eeprom.o ar5212_gpio.o ar5212_interrupts.o ar5212=
_keycache.o ar5212_misc.o ar5212_phy.o ar5212_power.o ar5212_recv.o ar5212_=
reset.o ar5212_rfgain.o ar5212_xmit.o ar5111.o ar5112.o ar2413.o ar2425.o a=
r5413.o ah_eeprom_v14.o ah_eeprom_v4k.o ar5416_ani.o ar5416_attach.o ar5416=
_beacon.o ar5416_btcoex.o ar5416_cal.o ar5416_cal_iq.o ar5416_cal_adcgain.o=
 ar5416_cal_adcdc.o ar5416_eeprom.o ar5416_gpio.o ar5416_interrupts.o ar541=
6_keycache.o ar5416_misc.o ar5416_phy.o ar5416_power.o ar5416_radar.o ar541=
6_spectral.o ar5416_recv.o ar5416_reset.o ar5416_xmit.o ar2133.o ar9160_att=
ach.o ar9130_attach.o ar9130_eeprom.o ar9130_phy.o ar9280.o ar9280_attach.o=
 ar9280_olc.o ar9285.o ar9285_reset.o ar9285_attach.o ar9285_cal.o ar9285_p=
hy.o ar9285_diversity.o ar9285_btcoex.o ah_eeprom_9287.o ar9287.o ar9287_re=
set.o ar9287_attach.o ar9287_cal.o ar9287_olc.o ar9300_interrupts.o ar9300_=
radar.o ar9300_ani.o ar9300_keycache.o ar9300_radio.o ar9300_xmit.o ar9300_=
attach.o ar9300_mci.o ar9300_stub.o ar9300_xmit_ds.o ar9300_beacon.o ar9300=
_misc.o ar9300_recv.o ar9300_stub_funcs.o ar9300_eeprom.o ar9300_paprd.o ar=
9300_recv_ds.o ar9300_freebsd.o ar9300_phy.o ar9300_reset.o ar9300_gpio.o a=
r9300_power.o ar9300_timer.o sample.o dfs_null.o
ctfmerge -L VERSION -g -o if_ath.kld if_ath.o if_ath_alq.o if_ath_debug.o i=
f_ath_keycache.o if_ath_sysctl.o if_ath_tx.o if_ath_tx_ht.o if_ath_led.o if=
_ath_rx.o if_ath_tdma.o if_ath_beacon.o if_ath_rx_edma.o if_ath_tx_edma.o i=
f_ath_spectral.o if_ath_btcoex.o if_ath_lna_div.o ah_osdep.o ah.o ah_regdom=
ain.o ah_eeprom_v3.o ah_eeprom_v1.o ar5210_attach.o ar5210_beacon.o ar5210_=
interrupts.o ar5210_keycache.o ar5210_misc.o ar5210_phy.o ar5210_power.o ar=
5210_recv.o ar5210_reset.o ar5210_xmit.o ar5211_attach.o ar5211_beacon.o ar=
5211_interrupts.o ar5211_keycache.o ar5211_misc.o ar5211_phy.o ar5211_power=
.o ar5211_recv.o ar5211_reset.o ar5211_xmit.o ar5212_ani.o ar5212_attach.o =
ar5212_beacon.o ar5212_eeprom.o ar5212_gpio.o ar5212_interrupts.o ar5212_ke=
ycache.o ar5212_misc.o ar5212_phy.o ar5212_power.o ar5212_recv.o ar5212_res=
et.o ar5212_rfgain.o ar5212_xmit.o ar5111.o ar5112.o ar2413.o ar2425.o ar54=
13.o ah_eeprom_v14.o ah_eeprom_v4k.o ar5416_ani.o ar5416_attach.o ar5416_be=
acon.o ar5416_btcoex.o ar5416_cal.o ar5416_cal_iq.o ar5416_cal_adcgain.o ar=
5416_cal_adcdc.o ar5416_eeprom.o ar5416_gpio.o ar5416_interrupts.o ar5416_k=
eycache.o ar5416_misc.o ar5416_phy.o ar5416_power.o ar5416_radar.o ar5416_s=
pectral.o ar5416_recv.o ar5416_reset.o ar5416_xmit.o ar2133.o ar9160_attach=
.o ar9130_attach.o ar9130_eeprom.o ar9130_phy.o ar9280.o ar9280_attach.o ar=
9280_olc.o ar9285.o ar9285_reset.o ar9285_attach.o ar9285_cal.o ar9285_phy.=
o ar9285_diversity.o ar9285_btcoex.o ah_eeprom_9287.o ar9287.o ar9287_reset=
.o ar9287_attach.o ar9287_cal.o ar9287_olc.o ar9300_interrupts.o ar9300_rad=
ar.o ar9300_ani.o ar9300_keycache.o ar9300_radio.o ar9300_xmit.o ar9300_att=
ach.o ar9300_mci.o ar9300_stub.o ar9300_xmit_ds.o ar9300_beacon.o ar9300_mi=
sc.o ar9300_recv.o ar9300_stub_funcs.o ar9300_eeprom.o ar9300_paprd.o ar930=
0_recv_ds.o ar9300_freebsd.o ar9300_phy.o ar9300_reset.o ar9300_gpio.o ar93=
00_power.o ar9300_timer.o sample.o dfs_null.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_tpc.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_main.o
--- all_subdir_ctl ---
--- ctl_tpc_local.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_tpc_local.c -o ctl_tpc_local.o
--- all_subdir_cxgb ---
--- cxgb_aq100x.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/common/cxgb_aq100x.c -o cxgb_aq100x.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_tpc_local.o
--- ctl_error.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_error.c -o ctl_error.o
--- all_subdir_cxgb ---
ctfconvert -L VERSION -g cxgb_aq100x.o
--- cxgb_sge.o ---
cc  -O2 -pipe  -g -DDEFAULT_JUMBO -fno-strict-aliasing -Werror -D_KERNEL -D=
KLD_MODULE -nostdinc  -I/usr/src/sys/modules/cxgb/cxgb/../../../dev/cxgb -D=
HAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_global=
.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GENERIC  =
-mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fstack-pro=
tector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-protector =
-Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissing-pro=
totypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-sign -ff=
ormat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -Wno-er=
ror-tautological-compare -Wno-error-empty-body  -Wno-error-parentheses-equa=
lity -Wno-error-unused-function   -c /usr/src/sys/modules/cxgb/cxgb/../../.=
./dev/cxgb/cxgb_sge.c -o cxgb_sge.o
--- all_subdir_ctl ---
ctfconvert -L VERSION -g ctl_error.o
--- ctl_util.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_util.c -o ctl_util.o
ctfconvert -L VERSION -g ctl_util.o
--- ctl_backend_block.o ---
cc  -O2 -pipe  -fno-strict-aliasing -Werror -D_KERNEL -DKLD_MODULE -nostdin=
c   -DHAVE_KERNEL_OPTION_HEADERS -include /usr/obj/usr/src/sys/GENERIC/opt_=
global.h -I. -I@ -I@/contrib/altq -fno-common -g -I/usr/obj/usr/src/sys/GEN=
ERIC  -mno-aes -mno-avx -mno-mmx -mno-sse -msoft-float -ffreestanding -fsta=
ck-protector -gdwarf-2 -std=3Diso9899:1999 -Qunused-arguments  -fstack-prot=
ector -Wall -Wredundant-decls -Wnested-externs -Wstrict-prototypes  -Wmissi=
ng-prototypes -Wpointer-arith -Winline -Wcast-qual  -Wundef -Wno-pointer-si=
gn -fformat-extensions  -Wmissing-include-dirs -fdiagnostics-show-option  -=
Wno-error-tautological-compare -Wno-error-empty-body  -Wno-error-parenthese=
s-equality -Wno-error-unused-function   -c /usr/src/sys/modules/ctl/../../c=
am/ctl/ctl_backend_block.c -o ctl_backend_block.o
--- all_subdir_ath ---
:> export_syms
awk -f /usr/src/sys/conf/kmod_syms.awk if_ath.kld  export_syms | xargs -J% =
objcopy % if_ath.kld
--- all_subdir_ctl ---
/usr/src/sys/modules/ctl/../../cam/ctl/ctl_backend_block.c:2213:4: error: i=
mplicit declaration of function 'asprintf' is invalid in C99 [-Werror,-Wimp=
licit-function-declaration]
                        asprintf(&dev_name, M_CTLBLK, "/dev/%s",
                        ^
1 error generated.
*** [ctl_backend_block.o] Error code 1

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

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

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

make[4]: stopped in /usr/src/sys/modules/ath
*** [all_subdir_ath] Error code 2

make[3]: stopped in /usr/src/sys/modules
--- all_subdir_cxgbe ---
A failure has been detected in another branch of the parallel make

make[5]: stopped in /usr/src/sys/modules/cxgbe/if_cxgbe
*** [_sub.all] Error code 2

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

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

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

make[5]: stopped in /usr/src/sys/modules/cxgb/cxgb
*** [_sub.all] Error code 2

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

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

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

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

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

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

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

make[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
[WARNINGS] Skipping publisher since build result is FAILURE
[PostBuildScript] - Execution post build scripts.
[FreeBSD_STABLE_10-i386] $ /bin/sh -xe /tmp/hudson7773966590849783569.sh
+ export 'PATH=3D/sbin:/bin:/usr/sbin:/usr/bin:/usr/local/sbin:/usr/local/b=
in'
+ export 'jname=3DFreeBSD_STABLE_10-i386'
+ echo 'clean up jail FreeBSD_STABLE_10-i386'
clean up jail FreeBSD_STABLE_10-i386
+ sudo jail -r FreeBSD_STABLE_10-i386
+ sudo ifconfig igb0 inet6 2610:1c1:1:607c::101:1 -alias
+ sudo umount FreeBSD_STABLE_10-i386/usr/src
+ sudo umount FreeBSD_STABLE_10-i386/dev
+ sudo rm -fr FreeBSD_STABLE_10-i386
rm: FreeBSD_STABLE_10-i386/libexec/ld-elf.so.1: Operation not permitted
rm: FreeBSD_STABLE_10-i386/libexec: Directory not empty
rm: FreeBSD_STABLE_10-i386/sbin/init: Operation not permitted
rm: FreeBSD_STABLE_10-i386/sbin: Directory not empty
rm: FreeBSD_STABLE_10-i386/usr/bin/crontab: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/ypchpass: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/passwd: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/ypchfn: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/chsh: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/ypchsh: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/chfn: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/login: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/su: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/chpass: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/opieinfo: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/opiepasswd: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin/yppasswd: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/bin: Directory not empty
rm: FreeBSD_STABLE_10-i386/usr/lib/librt.so.1: Operation not permitted
rm: FreeBSD_STABLE_10-i386/usr/lib: Directory not empty
rm: FreeBSD_STABLE_10-i386/usr: Directory not empty
rm: FreeBSD_STABLE_10-i386/lib/libcrypt.so.5: Operation not permitted
rm: FreeBSD_STABLE_10-i386/lib/libthr.so.3: Operation not permitted
rm: FreeBSD_STABLE_10-i386/lib/libc.so.7: Operation not permitted
rm: FreeBSD_STABLE_10-i386/lib: Directory not empty
rm: FreeBSD_STABLE_10-i386: Directory not empty
+ true
+ sudo chflags -R noschg FreeBSD_STABLE_10-i386
+ sudo rm -fr FreeBSD_STABLE_10-i386
Email was triggered for: Failure - Any
Sending email for trigger: Failure - Any



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?478778636.163.1444040142838.JavaMail.jenkins>