Re: Maximum memory for various freebsd releases

2016-09-19 Thread Muhammad Moinur Rahman
10/amd64 supports 4TB. Not sure about 8. Moreover if you are running 32 bit
don't forget to recompile the kernel with PAE support. So far I remember
early FreeBSD didn't come with PAE in default kernel. And if you are still
running 8 you should plan on moving forward to 9 or 10.

On Tue, Sep 20, 2016 at 3:39 AM, Julian Elischer  wrote:

> Looking through the various release notes I see that one thing thing that
> is rarely mentioned is the amount of physical memory supported, or any
> tuning that may be required to run more than some amoutn (should it be
> necessary to change some table sizes etc.).
>
> If anyone has that information I'm looking to know if it is possible to
> run 768GM of ram on an 8.0 machine and a 10.0 machine, and if not in the
> default configuration, whether there are any changes to the configuration
> that would allow this.
>
> Julian
>
>
> ___
> freebsd-current@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"
>
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Maximum memory for various freebsd releases

2016-09-19 Thread Julian Elischer
Looking through the various release notes I see that one thing thing 
that is rarely mentioned is the amount of physical memory supported, 
or any tuning that may be required to run more than some amoutn 
(should it be necessary to change some table sizes etc.).


If anyone has that information I'm looking to know if it is possible 
to run 768GM of ram on an 8.0 machine and a 10.0 machine, and if not 
in the default configuration, whether there are any changes to the 
configuration that would allow this.


Julian


___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: urtwn(4) / rtwn(4) drivers are merged - call for review / testing

2016-09-19 Thread Andriy Voskoboinyk

hi,

I'll try it out tonight! Is the rtwn repo still "ok" to try as a
standalone thing?



Yes, sys/{dev/rtwn,modules} subtree is the same.


The usbdevs patch is fine standalone - would you like to just commit
this in advance?



Done in r305991.





-adrian


On 19 September 2016 at 06:26, Andriy Voskoboinyk   
wrote:

Thu, 01 Sep 2016 19:29:03 +0300 було написано Andriy Voskoboinyk
:

Now it resides on https://github.com/s3erios/freebsd-rtwn (integrated
into src tree, so it can be built with 'make buildkernel' / 'make
buildworld').

This the last stage; once all reported issues will be resolved, I'm
going to merge it into HEAD.


Hi everyone,

rtwn(4), urtwn(4) and urtwm (from previous emails) drivers were merged
into a
single rtwn driver (plus rtwn_usb / rtwn_pci device glue); the code is
available on https://github.com/s3erios/rtwn repository. Among  
bugfixes /

code deduplication, there some new features too:

1) multi-vap support (one any wireless interface + one STA interface +
any number of monitor mode interfaces).
2) few new sysctls:
  * dev.rtwn.#.crypto - controls how to use hardware crypto  
acceleration

  * dev.rtwn.#.ratectl_selected
  * dev.rtwn.#.ratectl - selects current 'rate control' algorithm
(currently only 'none' and 'net80211' are supported; RTL8192CE needs
testing
with the last).
3) (incomplete) power management support for RTL8188EU (requires
firmware).
4) Short Guard Interval support.

It's known to work with RTL8188CUS, RTL8188EU and RTL8821AU; however,
it was never tested with RTL8192CE or RTL8812AU.

How-to-build:
1) download / checkout the repository.
2) apply 'patch-usbdevs.diff' against '/usr/src'
3) build and install rtwn module:
cd $repository/sys/modules/rtwn && make && make install
4) build and install rtwn_usb/rtwn_pci:
cd ../rtwn_usb && make && make install
cd ../rtwn_pci && make && make install
5) unload previous && load current drivers:
kldunload if_urtwn if_rtwn
kldload /boot/modules/if_rtwn.ko /boot/modules/if_rtwn_usb.ko
/boot/modules/if_rtwn_pci.ko
6) Use.


___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to  
"freebsd-current-unsubscr...@freebsd.org"

___
freebsd-wirel...@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to  
"freebsd-wireless-unsubscr...@freebsd.org"

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Re: urtwn(4) / rtwn(4) drivers are merged - call for review / testing

2016-09-19 Thread Andriy Voskoboinyk
Mon, 19 Sep 2016 20:51:16 +0300 було написано Hans Petter Selasky  
:



On 09/19/16 19:43, Adrian Chadd wrote:

hi,

I'll try it out tonight! Is the rtwn repo still "ok" to try as a
standalone thing?

The usbdevs patch is fine standalone - would you like to just commit
this in advance?



Possibly you should also rebuild /etc/devd/usb.conf to automatically  
load the correct .ko . You changed the .ko name - right?


Yes; now it's called if_rtwn_usb.ko (depends on if_rtwn.ko v2).
The usb.conf file was regenerated in
https://github.com/s3erios/freebsd-rtwn/commit/9360db6bf80520aa9775d51884e212f3892e4667



--HPS
___
freebsd-wirel...@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-wireless
To unsubscribe, send any mail to  
"freebsd-wireless-unsubscr...@freebsd.org"

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Re: urtwn(4) / rtwn(4) drivers are merged - call for review / testing

2016-09-19 Thread Hans Petter Selasky

On 09/19/16 19:43, Adrian Chadd wrote:

hi,

I'll try it out tonight! Is the rtwn repo still "ok" to try as a
standalone thing?

The usbdevs patch is fine standalone - would you like to just commit
this in advance?



Possibly you should also rebuild /etc/devd/usb.conf to automatically 
load the correct .ko . You changed the .ko name - right?


--HPS
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Re: urtwn(4) / rtwn(4) drivers are merged - call for review / testing

2016-09-19 Thread Adrian Chadd
hi,

I'll try it out tonight! Is the rtwn repo still "ok" to try as a
standalone thing?

The usbdevs patch is fine standalone - would you like to just commit
this in advance?




-adrian


On 19 September 2016 at 06:26, Andriy Voskoboinyk  wrote:
> Thu, 01 Sep 2016 19:29:03 +0300 було написано Andriy Voskoboinyk
> :
>
> Now it resides on https://github.com/s3erios/freebsd-rtwn (integrated
> into src tree, so it can be built with 'make buildkernel' / 'make
> buildworld').
>
> This the last stage; once all reported issues will be resolved, I'm
> going to merge it into HEAD.
>
>> Hi everyone,
>>
>> rtwn(4), urtwn(4) and urtwm (from previous emails) drivers were merged
>> into a
>> single rtwn driver (plus rtwn_usb / rtwn_pci device glue); the code is
>> available on https://github.com/s3erios/rtwn repository. Among bugfixes /
>> code deduplication, there some new features too:
>>
>> 1) multi-vap support (one any wireless interface + one STA interface +
>> any number of monitor mode interfaces).
>> 2) few new sysctls:
>>   * dev.rtwn.#.crypto - controls how to use hardware crypto acceleration
>>   * dev.rtwn.#.ratectl_selected
>>   * dev.rtwn.#.ratectl - selects current 'rate control' algorithm
>> (currently only 'none' and 'net80211' are supported; RTL8192CE needs
>> testing
>> with the last).
>> 3) (incomplete) power management support for RTL8188EU (requires
>> firmware).
>> 4) Short Guard Interval support.
>>
>> It's known to work with RTL8188CUS, RTL8188EU and RTL8821AU; however,
>> it was never tested with RTL8192CE or RTL8812AU.
>>
>> How-to-build:
>> 1) download / checkout the repository.
>> 2) apply 'patch-usbdevs.diff' against '/usr/src'
>> 3) build and install rtwn module:
>> cd $repository/sys/modules/rtwn && make && make install
>> 4) build and install rtwn_usb/rtwn_pci:
>> cd ../rtwn_usb && make && make install
>> cd ../rtwn_pci && make && make install
>> 5) unload previous && load current drivers:
>> kldunload if_urtwn if_rtwn
>> kldload /boot/modules/if_rtwn.ko /boot/modules/if_rtwn_usb.ko
>> /boot/modules/if_rtwn_pci.ko
>> 6) Use.
>
> ___
> freebsd-current@freebsd.org mailing list
> https://lists.freebsd.org/mailman/listinfo/freebsd-current
> To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"
___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Re: urtwn(4) / rtwn(4) drivers are merged - call for review / testing

2016-09-19 Thread Andriy Voskoboinyk
Thu, 01 Sep 2016 19:29:03 +0300 було написано Andriy Voskoboinyk  
:


Now it resides on https://github.com/s3erios/freebsd-rtwn (integrated
into src tree, so it can be built with 'make buildkernel' / 'make  
buildworld').


This the last stage; once all reported issues will be resolved, I'm
going to merge it into HEAD.


Hi everyone,

rtwn(4), urtwn(4) and urtwm (from previous emails) drivers were merged  
into a

single rtwn driver (plus rtwn_usb / rtwn_pci device glue); the code is
available on https://github.com/s3erios/rtwn repository. Among bugfixes /
code deduplication, there some new features too:

1) multi-vap support (one any wireless interface + one STA interface +
any number of monitor mode interfaces).
2) few new sysctls:
  * dev.rtwn.#.crypto - controls how to use hardware crypto acceleration
  * dev.rtwn.#.ratectl_selected
  * dev.rtwn.#.ratectl - selects current 'rate control' algorithm
(currently only 'none' and 'net80211' are supported; RTL8192CE needs  
testing

with the last).
3) (incomplete) power management support for RTL8188EU (requires  
firmware).

4) Short Guard Interval support.

It's known to work with RTL8188CUS, RTL8188EU and RTL8821AU; however,
it was never tested with RTL8192CE or RTL8812AU.

How-to-build:
1) download / checkout the repository.
2) apply 'patch-usbdevs.diff' against '/usr/src'
3) build and install rtwn module:
cd $repository/sys/modules/rtwn && make && make install
4) build and install rtwn_usb/rtwn_pci:
cd ../rtwn_usb && make && make install
cd ../rtwn_pci && make && make install
5) unload previous && load current drivers:
kldunload if_urtwn if_rtwn
kldload /boot/modules/if_rtwn.ko /boot/modules/if_rtwn_usb.ko  
/boot/modules/if_rtwn_pci.ko

6) Use.

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"

Jenkins build is back to normal : FreeBSD_HEAD_sparc64 #306

2016-09-19 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #3968 - Fixed

2016-09-19 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #3968 - Fixed:

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

Change summaries:

305970 by ngie:
Remove change accidentally committed via r305963 for upcoming tests/sys/fs/...
work

MFC after:  3 days
Sponsored by:   Dell EMC Isilon

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


Jenkins build is back to stable : FreeBSD_HEAD #683

2016-09-19 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"


FreeBSD_HEAD_i386 - Build #3967 - Still Failing

2016-09-19 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #3967 - Still Failing:

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

Change summaries:

305969 by trasz:
Make autofs use the "noatime" flag for msdosfs, ntfs, and ufs
filesystems mounted on /media.

MFC after:  1 month

305968 by trasz:
Make autofs use the "async" flag for msdosfs and ufs filesystems mounted
on /media.

MFC after:  1 month

305967 by sephe:
hyperv/hn: Allow RSS capability flipping upon attach/reinit.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7927

305966 by sephe:
hyperv/hn: Stringent RSS sysctl checks

- Don't change RNDIS RSS configuration for RSS key sysctl, if the
  interface is not capable of RSS yet.
- Don't change RSS indirect table (both cached one and RNDIS RSS
  configuration), if the interface is not capable of RSS yet.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7924

305965 by sephe:
hyperv/hn: Don't allow MTU change, if it is not supported by the NVS.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7923

305964 by sephe:
hyperv/hn: Save capabilities for later use.

And don't allow capability changes during reinitialization, which
breaks too much static configuration.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7922



The end of the build log:

[...truncated 10537 lines...]
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/etcupdate/tests ---
===> usr.sbin/etcupdate/tests (obj)
--- obj_subdir_tests ---
--- obj ---
/usr/obj/usr/src/tests/sys/pjdfstest/tests/truncate created for 
/usr/src/tests/sys/pjdfstest/tests/truncate
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/locale ---
===> usr.bin/locale (obj)
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_tests ---
--- obj_subdir_tests/sys/pjdfstest/tests/unlink ---
===> tests/sys/pjdfstest/tests/unlink (obj)
--- obj_subdir_lib ---
/usr/obj/usr/src/lib/atf/libatf-c/tests/detail created for 
/usr/src/lib/atf/libatf-c/tests/detail
--- obj ---
--- obj ---
--- obj_subdir_lib/atf/libatf-c++ ---
===> lib/atf/libatf-c++ (obj)
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_tests ---
/usr/obj/usr/src/tests/sys/pjdfstest/tests/unlink created for 
/usr/src/tests/sys/pjdfstest/tests/unlink
--- obj_subdir_usr.sbin ---
/usr/obj/usr/src/usr.sbin/etcupdate/tests created for 
/usr/src/usr.sbin/etcupdate/tests
--- obj_subdir_usr.bin ---
--- obj ---
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_usr.bin ---
/usr/obj/usr/src/usr.bin/locale created for /usr/src/usr.bin/locale
--- obj_subdir_usr.bin/localedef ---
===> usr.bin/localedef (obj)
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/extattr ---
===> usr.sbin/extattr (obj)
--- obj_subdir_tests ---
--- obj_subdir_tests/sys/acl ---
===> tests/sys/acl (obj)
--- obj_subdir_lib ---
--- obj_subdir_lib/atf/libatf-c++/tests ---
===> lib/atf/libatf-c++/tests (obj)
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj ---
/usr/obj/usr/src/usr.bin/localedef created for /usr/src/usr.bin/localedef
--- obj_subdir_tests ---
/usr/obj/usr/src/tests/sys/acl created for /usr/src/tests/sys/acl
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/lock ---
===> usr.bin/lock (obj)
--- obj_subdir_tests ---
--- obj_subdir_tests/sys/aio ---
===> tests/sys/aio (obj)
--- obj_subdir_lib ---
--- obj_subdir_lib/atf/libatf-c++/tests/detail ---
===> lib/atf/libatf-c++/tests/detail (obj)
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/extattr/tests ---
===> usr.sbin/extattr/tests (obj)
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj ---
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_tests ---
/usr/obj/usr/src/tests/sys/aio created for /usr/src/tests/sys/aio
--- obj_subdir_usr.bin ---
/usr/obj/usr/src/usr.bin/lock created for /usr/src/usr.bin/lock
--- obj_subdir_tests ---
--- obj_subdir_tests/sys/fifo ---
===> tests/sys/fifo (obj)
--- obj_subdir_lib ---
/usr/obj/usr/src/lib/atf/libatf-c++/tests/detail created for 
/usr/src/lib/atf/libatf-c++/tests/detail
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/lockf ---
===> usr.bin/lockf (obj)
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_usr.sbin ---
/usr/obj/usr/src/usr.sbin/extattr/tests created for 
/usr/src/usr.sbin/extattr/tests
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_lib ---
--- obj_subdir_lib/atf/tests ---
===> lib/atf/tests (obj)
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/extattrctl ---
===> usr.sbin/extattrctl (obj)
--- obj_subdir_tests ---
--- obj ---
--- 

FreeBSD_HEAD_i386 - Build #3966 - Failure

2016-09-19 Thread jenkins-admin
FreeBSD_HEAD_i386 - Build #3966 - Failure:

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

Change summaries:

305963 by ngie:
Reindent TESTSDIR definition for consistency/readability

MFC after:  3 days
Sponsored by:   Dell EMC Isilon

305962 by sephe:
hyperv/hn: Don't allow NVS and NDIS version change upon reinitailization

NVS and NDIS version change would break too much assumption and static
configuration.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7919

305961 by ngie:
Re-add PACKAGE=> tests to lib/libc/tests/net/getaddrinfo/Makefile and add
it to lib/libc/tests/sys/Makefile [*]

Even though make -VPACKAGE and make -n install seem to do the right thing,
the effects are a bit different, depending on the build host.

MFC after:  1 week
Obtained from:  HardenedBSD (af602f0db) [*]
Reported by:Oliver Pinter  [*]
Sponsored by:   Dell EMC Isilon

305960 by sephe:
hyperv/hn: Apply RSS indirect table fixup before configure RNDIS RSS.

MFC after:  1 week
Sponsored by:   Microsoft
Differential Revision:  https://reviews.freebsd.org/D7916

305959 by bapt:
Revert capsicum support

In some corner case VFS lookup is not working and I do not have time to debug
it for now.

305958 by ngie:
Remove expected failure for :basic (effectively reverting r305007, r305031)

This no longer fails as of r305952

PR: 212193
Sponsored by:   Dell EMC Isilon



The end of the build log:

[...truncated 10255 lines...]
/usr/obj/usr/src/usr.bin/id created for /usr/src/usr.bin/id
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/dconschat ---
===> usr.sbin/dconschat (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/ident ---
===> usr.bin/ident (obj)
--- obj_subdir_tests ---
--- obj ---
/usr/obj/usr/src/tests/sys/pjdfstest/tests/symlink created for 
/usr/src/tests/sys/pjdfstest/tests/symlink
--- obj_subdir_tests/sys/pjdfstest/tests/truncate ---
===> tests/sys/pjdfstest/tests/truncate (obj)
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_lib ---
/usr/obj/usr/src/lib/clang/libclangstaticanalyzercore created for 
/usr/src/lib/clang/libclangstaticanalyzercore
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/ident/tests ---
===> usr.bin/ident/tests (obj)
--- obj_subdir_usr.sbin ---
/usr/obj/usr/src/usr.sbin/dconschat created for /usr/src/usr.sbin/dconschat
--- obj_subdir_lib ---
--- obj_subdir_lib/clang/libclangstaticanalyzerfrontend ---
===> lib/clang/libclangstaticanalyzerfrontend (obj)
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/devctl ---
===> usr.sbin/devctl (obj)
--- obj_subdir_tests ---
--- obj ---
/usr/obj/usr/src/tests/sys/pjdfstest/tests/truncate created for 
/usr/src/tests/sys/pjdfstest/tests/truncate
--- obj_subdir_tests/sys/pjdfstest/tests/unlink ---
===> tests/sys/pjdfstest/tests/unlink (obj)
--- obj_subdir_usr.bin ---
--- obj ---
/usr/obj/usr/src/usr.bin/ident/tests created for /usr/src/usr.bin/ident/tests
--- obj_subdir_usr.sbin ---
--- obj ---
--- obj_subdir_usr.bin ---
--- obj ---
--- obj_subdir_usr.sbin ---
/usr/obj/usr/src/usr.sbin/devctl created for /usr/src/usr.sbin/devctl
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/devinfo ---
===> usr.sbin/devinfo (obj)
--- obj_subdir_usr.bin ---
--- obj_subdir_usr.bin/ipcrm ---
===> usr.bin/ipcrm (obj)
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_lib ---
/usr/obj/usr/src/lib/clang/libclangstaticanalyzerfrontend created for 
/usr/src/lib/clang/libclangstaticanalyzerfrontend
--- obj_subdir_tests ---
/usr/obj/usr/src/tests/sys/pjdfstest/tests/unlink created for 
/usr/src/tests/sys/pjdfstest/tests/unlink
--- obj_subdir_lib ---
--- obj_subdir_lib/clang/libllvmanalysis ---
===> lib/clang/libllvmanalysis (obj)
--- obj_subdir_tests ---
--- obj ---
--- obj_subdir_tests/sys/acl ---
===> tests/sys/acl (obj)
--- obj_subdir_usr.bin ---
--- obj ---
/usr/obj/usr/src/usr.bin/ipcrm created for /usr/src/usr.bin/ipcrm
--- obj_subdir_usr.bin/ipcs ---
===> usr.bin/ipcs (obj)
--- obj_subdir_usr.sbin ---
--- obj ---
/usr/obj/usr/src/usr.sbin/devinfo created for /usr/src/usr.sbin/devinfo
--- obj_subdir_tests ---
--- obj ---
/usr/obj/usr/src/tests/sys/acl created for /usr/src/tests/sys/acl
--- obj_subdir_usr.sbin ---
--- obj_subdir_usr.sbin/digictl ---
===> usr.sbin/digictl (obj)
--- obj_subdir_tests ---
--- obj_subdir_tests/sys/aio ---
===> tests/sys/aio (obj)
--- obj_subdir_usr.bin ---
--- obj ---
--- obj_subdir_lib ---
--- obj ---
--- obj_subdir_usr.bin ---
/usr/obj/usr/src/usr.bin/ipcs created for /usr/src/usr.bin/ipcs
--- obj_subdir_lib ---
/usr/obj/usr/src/lib/clang/libllvmanalysis created for 
/usr/src/lib/clang/libllvmanalysis
--- 

Jenkins build is unstable: FreeBSD_HEAD #682

2016-09-19 Thread jenkins-admin
See 

___
freebsd-current@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to "freebsd-current-unsubscr...@freebsd.org"