svn commit: r288833 - head/lib/libc/net

2015-10-05 Thread Jason Helfman
Author: jgh (doc,ports committer)
Date: Mon Oct  5 18:09:43 2015
New Revision: 288833
URL: https://svnweb.freebsd.org/changeset/base/288833

Log:
  - address grammar
  
  PR:   203440 (based on)
  Submitted by: cer...@rpi.edu
  Approved by:  wblock@ (mentor)
  MFC after:1 week
  Differential Revision:https://reviews.freebsd.org/D3813

Modified:
  head/lib/libc/net/getaddrinfo.3

Modified: head/lib/libc/net/getaddrinfo.3
==
--- head/lib/libc/net/getaddrinfo.3 Mon Oct  5 18:08:35 2015
(r288832)
+++ head/lib/libc/net/getaddrinfo.3 Mon Oct  5 18:09:43 2015
(r288833)
@@ -18,7 +18,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd September 20, 2015
+.Dd October 5, 2015
 .Dt GETADDRINFO 3
 .Os
 .Sh NAME
@@ -243,15 +243,14 @@ The list can be traversed by following t
 pointer in each
 .Li addrinfo
 structure until a null pointer is encountered.
-The three members
+Each returned
+.Li addrinfo
+structure contains three members that are suitable for a call to
+.Xr socket 2 :
 .Fa ai_family ,
 .Fa ai_socktype ,
 and
-.Fa ai_protocol
-in each returned
-.Li addrinfo
-structure are suitable for a call to
-.Xr socket 2 .
+.Fa ai_protocol .
 For each
 .Li addrinfo
 structure in the list, the
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288834 - head/usr.bin/truss

2015-10-05 Thread Bryan Drewery
Author: bdrewery
Date: Mon Oct  5 18:11:30 2015
New Revision: 288834
URL: https://svnweb.freebsd.org/changeset/base/288834

Log:
  Add decoding for modfind(2)

Modified:
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/syscalls.c
==
--- head/usr.bin/truss/syscalls.c   Mon Oct  5 18:09:43 2015
(r288833)
+++ head/usr.bin/truss/syscalls.c   Mon Oct  5 18:11:30 2015
(r288834)
@@ -253,6 +253,8 @@ static struct syscall decoded_syscalls[]
  .args = { { Int, 0 }, { Ptr, 1 } } },
{ .name = "kldfirstmod", .ret_type = 1, .nargs = 1,
  .args = { { Int, 0 } } },
+   { .name = "modfind", .ret_type = 1, .nargs = 1,
+ .args = { { Name | IN, 0 } } },
{ .name = "nanosleep", .ret_type = 1, .nargs = 1,
  .args = { { Timespec, 0 } } },
{ .name = "select", .ret_type = 1, .nargs = 5,
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288829 - head

2015-10-05 Thread Ian Lepore
Author: ian
Date: Mon Oct  5 17:45:13 2015
New Revision: 288829
URL: https://svnweb.freebsd.org/changeset/base/288829

Log:
  The latest version of lex requires the latest m4 to build, add a dependency
  when running the build-tools stage.
  
  The requirement is due to the -P flag used when running m4 from usr.bin/lex
  Makefile to generate skel.c.  With the old m4 that fails and the failure is
  ignored, resulting in an empty(-ish) skel.c, which leads to later build
  failures when the misconfigured new lex tool is run.
  
  This enables building -current (and 10-stable after MFC) on a stable-8
  system again.
  
  MFC after:3 days

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==
--- head/Makefile.inc1  Mon Oct  5 17:21:17 2015(r288828)
+++ head/Makefile.inc1  Mon Oct  5 17:45:13 2015(r288829)
@@ -1322,6 +1322,8 @@ _cat= bin/cat
 
 .if ${BOOTSTRAPPING} < 133
 _lex=  usr.bin/lex
+
+${_bt}-usr.bin/lex: ${_bt}-usr.bin/m4
 .endif
 
 # r277259 crunchide: Correct 64-bit section header offset
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288832 - head/usr.bin/truss

2015-10-05 Thread Bryan Drewery
Author: bdrewery
Date: Mon Oct  5 18:08:35 2015
New Revision: 288832
URL: https://svnweb.freebsd.org/changeset/base/288832

Log:
  Fix tracking of unknown syscalls for 'truss -c'.
  
  This is done by changing get_syscall() to either lookup the known syscall
  or add it into the list with the default handlers for printing.
  
  This also simplifies some code to not have to check if the syscall variable
  is set or NULL.
  
  Reviewed by:  jhb
  Relnotes: yes
  Differential Revision:https://reviews.freebsd.org/D3792

Modified:
  head/usr.bin/truss/main.c
  head/usr.bin/truss/setup.c
  head/usr.bin/truss/syscall.h
  head/usr.bin/truss/syscalls.c

Modified: head/usr.bin/truss/main.c
==
--- head/usr.bin/truss/main.c   Mon Oct  5 17:54:54 2015(r288831)
+++ head/usr.bin/truss/main.c   Mon Oct  5 18:08:35 2015(r288832)
@@ -94,6 +94,7 @@ main(int ac, char **av)
trussinfo->strsize = 32;
trussinfo->curthread = NULL;
LIST_INIT(>proclist);
+   init_syscalls();
while ((c = getopt(ac, av, "p:o:facedDs:S")) != -1) {
switch (c) {
case 'p':   /* specified pid */

Modified: head/usr.bin/truss/setup.c
==
--- head/usr.bin/truss/setup.c  Mon Oct  5 17:54:54 2015(r288831)
+++ head/usr.bin/truss/setup.c  Mon Oct  5 18:08:35 2015(r288832)
@@ -341,17 +341,9 @@ enter_syscall(struct trussinfo *info, st
fprintf(info->outfile, "-- UNKNOWN %s SYSCALL %d --\n",
t->proc->abi->type, t->cs.number);
 
-   sc = get_syscall(t->cs.name);
-   if (sc) {
-   t->cs.nargs = sc->nargs;
-   assert(sc->nargs <= nitems(t->cs.s_args));
-   } else {
-#if DEBUG
-   fprintf(stderr, "unknown syscall %s -- setting "
-   "args to %d\n", t->cs.name, t->cs.nargs);
-#endif
-   t->cs.nargs = narg;
-   }
+   sc = get_syscall(t->cs.name, narg);
+   t->cs.nargs = sc->nargs;
+   assert(sc->nargs <= nitems(t->cs.s_args));
 
t->cs.sc = sc;
 
@@ -372,7 +364,7 @@ enter_syscall(struct trussinfo *info, st
t->cs.args[sc->args[i].offset] : t->cs.args[i],
i < (t->cs.nargs - 1) ? "," : "");
 #endif
-   if (sc && !(sc->args[i].type & OUT)) {
+   if (!(sc->args[i].type & OUT)) {
t->cs.s_args[i] = print_arg(>args[i],
t->cs.args, 0, info);
}
@@ -407,31 +399,26 @@ exit_syscall(struct trussinfo *info, str
}
 
sc = t->cs.sc;
-   if (sc == NULL) {
-   for (i = 0; i < t->cs.nargs; i++)
-   asprintf(>cs.s_args[i], "0x%lx", t->cs.args[i]);
-   } else {
-   /*
-* Here, we only look for arguments that have OUT masked in --
-* otherwise, they were handled in enter_syscall().
-*/
-   for (i = 0; i < sc->nargs; i++) {
-   char *temp;
-
-   if (sc->args[i].type & OUT) {
-   /*
-* If an error occurred, then don't bother
-* getting the data; it may not be valid.
-*/
-   if (errorp) {
-   asprintf(, "0x%lx",
-   t->cs.args[sc->args[i].offset]);
-   } else {
-   temp = print_arg(>args[i],
-   t->cs.args, retval, info);
-   }
-   t->cs.s_args[i] = temp;
+   /*
+* Here, we only look for arguments that have OUT masked in --
+* otherwise, they were handled in enter_syscall().
+*/
+   for (i = 0; i < sc->nargs; i++) {
+   char *temp;
+
+   if (sc->args[i].type & OUT) {
+   /*
+* If an error occurred, then don't bother
+* getting the data; it may not be valid.
+*/
+   if (errorp) {
+   asprintf(, "0x%lx",
+   t->cs.args[sc->args[i].offset]);
+   } else {
+   temp = print_arg(>args[i],
+   t->cs.args, retval, info);
}
+   t->cs.s_args[i] = temp;
}
}
 

Modified: head/usr.bin/truss/syscall.h
==
--- head/usr.bin/truss/syscall.h

svn commit: r288912 - head/sys/vm

2015-10-05 Thread Alan Cox
Author: alc
Date: Tue Oct  6 05:49:00 2015
New Revision: 288912
URL: https://svnweb.freebsd.org/changeset/base/288912

Log:
  Exploit r288122 to address a cosmetic issue.  Pages belonging to either
  the kernel or kmem object can't be paged out.  Since they can't be paged
  out, they are never enqueued in a paging queue.  Nonetheless, passing
  PQ_INACTIVE to vm_page_unwire() in kmem_unback() creates the appearance
  that these pages are being enqueued in the inactive queue.  As of r288122,
  we can avoid giving this false impression by passing PQ_NONE.
  
  Submitted by: kmacy
  Differential Revision:https://reviews.freebsd.org/D1674

Modified:
  head/sys/vm/vm_kern.c

Modified: head/sys/vm/vm_kern.c
==
--- head/sys/vm/vm_kern.c   Tue Oct  6 04:18:48 2015(r288911)
+++ head/sys/vm/vm_kern.c   Tue Oct  6 05:49:00 2015(r288912)
@@ -386,7 +386,7 @@ kmem_unback(vm_object_t object, vm_offse
VM_OBJECT_WLOCK(object);
for (i = 0; i < size; i += PAGE_SIZE) {
m = vm_page_lookup(object, OFF_TO_IDX(offset + i));
-   vm_page_unwire(m, PQ_INACTIVE);
+   vm_page_unwire(m, PQ_NONE);
vm_page_free(m);
}
VM_OBJECT_WUNLOCK(object);
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288864 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:58 2015
New Revision: 288864
URL: https://svnweb.freebsd.org/changeset/base/288864

Log:
  Document r286591, uart(4) PPS runtime-tunable.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:56 2015(r288863)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:58 2015(r288864)
@@ -1000,6 +1000,10 @@
   A new ,
hw.model, has been added, which displays
CPU model information.
+
+  The  driver has been
+   updated to allow tuning packets per second captured during
+   runtime.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288856 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:40 2015
New Revision: 288856
URL: https://svnweb.freebsd.org/changeset/base/288856

Log:
  Fix a revision tag.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:37 2015(r288855)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:40 2015(r288856)
@@ -548,7 +548,7 @@
updated to properly skip a sparse file entry in a 
file, which would previously produce errors.
 
-  The  subsystem has been
+  The  subsystem has been
updated to version 20150818.
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288851 - in head/release/doc: en_US.ISO8859-1/relnotes share/xml

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:27 2015
New Revision: 288851
URL: https://svnweb.freebsd.org/changeset/base/288851

Log:
  Document r285772, patch(1) '-V none' addition.
  Add EMC/Isilon Storage Division to sponsors.ent.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml
  head/release/doc/share/xml/sponsor.ent

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:25 2015(r288850)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:27 2015(r288851)
@@ -416,6 +416,12 @@
   The  framework has been
updated to allow mounting  and
 within a jail.
+
+  The  utility has been
+   updated to include a new option to the -V
+   flag, none, which disables backup file
+   creation when applying a patch.
 
 
 

Modified: head/release/doc/share/xml/sponsor.ent
==
--- head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:12:25 2015
(r288850)
+++ head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:12:27 2015
(r288851)
@@ -21,6 +21,8 @@
 
 
 
+
+
 
 https://www.FreeBSDFoundation.org/;>
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288869 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:10 2015
New Revision: 288869
URL: https://svnweb.freebsd.org/changeset/base/288869

Log:
  Document r287099, account for ashift when gathering buffers to
  be written to l2arc device
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:07 2015(r288868)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:10 2015(r288869)
@@ -1460,6 +1460,12 @@
 has been removed, and replaced with the
kstat.zfs.misc.arcstats.arc_meta_used
.
+
+  The  l2arc
+   code has been updated to take ashift into
+   account when gathering buffers to be written to the
+   l2arc device.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288860 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:49 2015
New Revision: 288860
URL: https://svnweb.freebsd.org/changeset/base/288860

Log:
  Document r286289, xargs(1) '-P 0' mode.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:46 2015(r288859)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:49 2015(r288860)
@@ -427,6 +427,13 @@
 utility now enables deterministic mode
(-D) by default.  This behavior can be
disabled by specifying the -U flag.
+
+  The  utility has been
+   updated to allow specifying 0 as an
+   argument to the -P (parallel mode) flag,
+   which allows creating as many concurrent processes as
+   possible.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288861 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:51 2015
New Revision: 288861
URL: https://svnweb.freebsd.org/changeset/base/288861

Log:
  Document r286441, iwm(4) addition.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:49 2015(r288860)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:51 2015(r288861)
@@ -1161,6 +1161,10 @@
 
   The  driver has been updated
to include support for the RTL8153 chipset.
+
+  The  driver has been imported
+   from OpenBSD, providing support for  3160/7260/7265
+   wireless chipsets.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288883 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:44 2015
New Revision: 23
URL: https://svnweb.freebsd.org/changeset/base/23

Log:
  Document r287886, fix kqueue write events for files > 2GB
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:42 2015(r22)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:44 2015(r23)
@@ -855,6 +855,11 @@
   Support for
 has been added for the
Book-E.
+
+  The  system call has been
+   updated to handle write events to files larger than 2
+   gigabytes.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288850 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:25 2015
New Revision: 288850
URL: https://svnweb.freebsd.org/changeset/base/288850

Log:
  Document r285685, allow mounting linprocfs(5) and linsysfs(5)
  within a jail.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:22 2015(r288849)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:25 2015(r288850)
@@ -412,6 +412,10 @@
   The  utility has been updated
to display the full IPv6 remote address of the host from which
a user is connected.
+
+  The  framework has been
+   updated to allow mounting  and
+within a jail.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288871 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:15 2015
New Revision: 288871
URL: https://svnweb.freebsd.org/changeset/base/288871

Log:
  Document r287222, pf(4) support for 'scrub fragment crop|drop-ovl'
  removed.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:12 2015(r288870)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:15 2015(r288871)
@@ -1196,6 +1196,13 @@
   The  driver has been updated
to allow disabling CRC stripping.
+
+  The  implementation has been
+   updated to remove support for the scrub fragment
+ crop|drop-ovl filtering rule.  Systems with this
+   rule in  will implicitly be converted to the
+   scrub fragment reassemble filtering rule,
+   without necessary intervention.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288858 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:44 2015
New Revision: 288858
URL: https://svnweb.freebsd.org/changeset/base/288858

Log:
  Document r286062, xen(4) blkif indirect segment I/O support.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:42 2015(r288857)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:44 2015(r288858)
@@ -1292,6 +1292,10 @@
   The
 driver has been updated to support checksum
offloading and TSO.
+
+  The  driver has been updated
+   to include support for blkif indirect
+   segment I/O.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288863 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:56 2015
New Revision: 288863
URL: https://svnweb.freebsd.org/changeset/base/288863

Log:
  Document r286503, r286505, r286506, r286510:
  apr-1.5.2
  serf-1.3.8
  svnlite-1.8.14
  sqlite3-3.8.11.1
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:53 2015(r288862)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:56 2015(r288863)
@@ -562,6 +562,21 @@
 
   The  subsystem has been
updated to version 20150818.
+
+  The apr
+   library used by  has been updated to version
+   1.5.2.
+
+  The serf
+   library used by  has been updated to version
+   1.3.8.
+
+  The  utility has been
+   updated to version 1.8.14.
+
+  The sqlite3
+   library used by  and  has been
+   updated to version 3.8.11.1.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288881 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:39 2015
New Revision: 21
URL: https://svnweb.freebsd.org/changeset/base/21

Log:
  Document r287798, IPv6 On-Link redirect handling fix.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:37 2015(r20)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:39 2015(r21)
@@ -1686,6 +1686,10 @@
updated to include support for AES modes on
both software-only and hardware-backed ()
systems.
+
+  The
+   network stack has been updated to fix handling of
+   IPv6 On-Link redirects.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288884 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:47 2015
New Revision: 24
URL: https://svnweb.freebsd.org/changeset/base/24

Log:
  Document r287917, unbound 1.5.4.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:44 2015(r23)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:47 2015(r24)
@@ -525,9 +525,6 @@
 utilities have been updated to version
2.4.
 
-  The  utility has been
-   updated to version 1.5.3.
-
   The
 utility has been updated to version
3.7.0.
@@ -590,6 +587,9 @@
   The  subsystem has been
updated to version 20150818.
 
+  The  utility has been
+   updated to version 1.5.4.
+
has been updated to
version 4.0.2.
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288880 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:37 2015
New Revision: 20
URL: https://svnweb.freebsd.org/changeset/base/20

Log:
  Document r287621, CTL HA reimplementation.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:35 2015(r288879)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:37 2015(r20)
@@ -1131,6 +1131,10 @@
sponsor="">The  driver has been added,
providing support for the PSE (Platform
Storage Extension).
+
+  The
+   CTL High Availability implementation has
+   been rewritten.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288866 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:03 2015
New Revision: 288866
URL: https://svnweb.freebsd.org/changeset/base/288866

Log:
  Document r286795, patch(1) automatic checkout feature removed.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:01 2015(r288865)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:03 2015(r288866)
@@ -434,6 +434,9 @@
argument to the -P (parallel mode) flag,
which allows creating as many concurrent processes as
possible.
+
+  The  utility has been
+   updated to remove the automatic checkout feature.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288875 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:25 2015
New Revision: 288875
URL: https://svnweb.freebsd.org/changeset/base/288875

Log:
  Document r288143, file(1) updated to 5.25.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:22 2015(r288874)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:25 2015(r288875)
@@ -520,9 +520,6 @@
   The  utility has been updated
to the OpenBSD 5.7 version.
 
-  The  utility has been
-   updated to version 5.23.
-
   bmake has
been updated to version 20150606.
 
@@ -580,6 +577,9 @@
 
has been updated to
version 4.0.2.
+
+  The  utility has been
+   updated to version 5.25.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288882 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:42 2015
New Revision: 22
URL: https://svnweb.freebsd.org/changeset/base/22

Log:
  Document r287842, ifconfig(8) exit on error if ioctl(2) fails.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:39 2015(r21)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:42 2015(r22)
@@ -447,6 +447,11 @@
  role="package">misc/pciids package, if present,
falling back to the PCI ID database in the  base
system.
+
+  The  utility has been
+   updated to always exit with an error code if an important
+fails.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288876 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:27 2015
New Revision: 288876
URL: https://svnweb.freebsd.org/changeset/base/288876

Log:
  Document r287469, em(4) update to support I219 chipset.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:25 2015(r288875)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:27 2015(r288876)
@@ -1207,6 +1207,10 @@
rule in  will implicitly be converted to the
scrub fragment reassemble filtering rule,
without necessary intervention.
+
+  The  driver has been updated
+   to support the Skylake I219 chipset.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288868 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:07 2015
New Revision: 288868
URL: https://svnweb.freebsd.org/changeset/base/288868

Log:
  Document r288090, jemalloc update to 4.0.2.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:05 2015(r288867)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:07 2015(r288868)
@@ -449,9 +449,6 @@
has been updated to
version 20140101.
 
-   has been updated to
-   version 3.5.0.
-
   libc++ has
been updated to version 3.4.
 
@@ -580,6 +577,9 @@
 
   The  subsystem has been
updated to version 20150818.
+
+   has been updated to
+   version 4.0.2.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288873 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:20 2015
New Revision: 288873
URL: https://svnweb.freebsd.org/changeset/base/288873

Log:
  Document r287306, CUBIEBOARD2 kernel configuration renamed to A20.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:17 2015(r288872)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:20 2015(r288873)
@@ -951,6 +951,10 @@
   The  driver has been added
to the GENERIC kernel configuration for
supported architectures.
+
+  The
+   CUBIEBOARD2 kernel configuration has been
+   renamed to A20.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288872 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:17 2015
New Revision: 288872
URL: https://svnweb.freebsd.org/changeset/base/288872

Log:
  Document r287225, 1-Wire implementation.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:15 2015(r288871)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:17 2015(r288872)
@@ -1401,6 +1401,11 @@
sponsor="">Initial
ACPI support has been added for
/.
+
+  Support for 1-Wire devices has been
+   added, providing support for 1-Wire hardware through
+   .  See , , and
+for more information.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288878 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:32 2015
New Revision: 288878
URL: https://svnweb.freebsd.org/changeset/base/288878

Log:
  Document r287522, pciconf(8) prefer pciids from ports database,
  if present.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:30 2015(r288877)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:32 2015(r288878)
@@ -441,6 +441,12 @@
   A
new utility, , has been added, which is used
to manage  devices.
+
+  The  utility has been
+   updated to use the PCI ID database from the misc/pciids package, if present,
+   falling back to the PCI ID database in the  base
+   system.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288865 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:01 2015
New Revision: 288865
URL: https://svnweb.freebsd.org/changeset/base/288865

Log:
  Document r286750, zoneinfo update to 2015f.
  While here, move a few misordered entries.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:58 2015(r288864)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:01 2015(r288865)
@@ -526,9 +526,6 @@
   bmake has
been updated to version 20150606.
 
-  Timezone data files have been updated to
-   version 2015e.
-
   sendmail has
been updated to 8.15.2.  Starting with 11.0 and
sendmail 8.15, sendmail uses uncompressed IPv6 addresses by
@@ -560,9 +557,6 @@
updated to properly skip a sparse file entry in a 
file, which would previously produce errors.
 
-  The  subsystem has been
-   updated to version 20150818.
-
   The apr
library used by  has been updated to version
1.5.2.
@@ -577,6 +571,12 @@
   The sqlite3
library used by  and  has been
updated to version 3.8.11.1.
+
+  Timezone data files have been updated to
+   version 2015f.
+
+  The  subsystem has been
+   updated to version 20150818.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288879 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:35 2015
New Revision: 288879
URL: https://svnweb.freebsd.org/changeset/base/288879

Log:
  Document r287576, service(8) updated to respect /etc/rc.conf.d/.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:32 2015(r288878)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:35 2015(r288879)
@@ -664,6 +664,12 @@
iovctl, has been added, which allows
automatically starting the  utility at
boot.
+
+  The  utility has been
+   updated to honor entries within /etc/rc.conf.d/.
+
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288877 - in head/release/doc: en_US.ISO8859-1/relnotes share/xml

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:30 2015
New Revision: 288877
URL: https://svnweb.freebsd.org/changeset/base/288877

Log:
  Document r287473, sesutil(8) addition.
  Add Gandi.net to sponsor.ent.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml
  head/release/doc/share/xml/sponsor.ent

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:27 2015(r288876)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:30 2015(r288877)
@@ -437,6 +437,10 @@
 
   The  utility has been
updated to remove the automatic checkout feature.
+
+  A
+   new utility, , has been added, which is used
+   to manage  devices.
 
 
 

Modified: head/release/doc/share/xml/sponsor.ent
==
--- head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:13:27 2015
(r288876)
+++ head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:13:30 2015
(r288877)
@@ -27,6 +27,7 @@
 
 https://www.FreeBSDFoundation.org/;>
 
+
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288857 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:42 2015
New Revision: 288857
URL: https://svnweb.freebsd.org/changeset/base/288857

Log:
  Document r286010, ar(1) '-D' option enabled by default.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:40 2015(r288856)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:42 2015(r288857)
@@ -422,6 +422,11 @@
updated to include a new option to the -V
flag, none, which disables backup file
creation when applying a patch.
+
+  The
+utility now enables deterministic mode
+   (-D) by default.  This behavior can be
+   disabled by specifying the -U flag.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288853 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:32 2015
New Revision: 288853
URL: https://svnweb.freebsd.org/changeset/base/288853

Log:
  Document r285876, cyapa(4) addition.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:30 2015(r288852)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:32 2015(r288853)
@@ -1015,6 +1015,9 @@
   Support for the Freescale
PCI Root Complex device has been
added.
+
+  The  driver has been added,
+   supporting the Cypress APA I2C trackpad.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288870 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:12 2015
New Revision: 288870
URL: https://svnweb.freebsd.org/changeset/base/288870

Log:
  Document r287117, ioat(4) driver addition.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:10 2015(r288869)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:12 2015(r288870)
@@ -1106,6 +1106,11 @@
providing support for the PMC Sierra line of
SAS/SATA host bus
adapters.
+
+  The  driver has been added,
+   providing support for the PSE (Platform
+   Storage Extension).
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288854 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:35 2015
New Revision: 288854
URL: https://svnweb.freebsd.org/changeset/base/288854

Log:
  Document r285883, isl(4) addition.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:32 2015(r288853)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:35 2015(r288854)
@@ -1018,6 +1018,10 @@
 
   The  driver has been added,
supporting the Cypress APA I2C trackpad.
+
+  The  driver has been added,
+   supporting the Intersil I2C ISL29018 digital ambient light
+   sensor.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288849 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:22 2015
New Revision: 288849
URL: https://svnweb.freebsd.org/changeset/base/288849

Log:
  Document r285662, pms(4) addition.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:20 2015(r288848)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:22 2015(r288849)
@@ -1042,6 +1042,11 @@
 
   The  driver has been
updated to version 1.1.1.
+
+  The  driver has been added,
+   providing support for the PMC Sierra line of
+   SAS/SATA host bus
+   adapters.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288859 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:46 2015
New Revision: 288859
URL: https://svnweb.freebsd.org/changeset/base/288859

Log:
  Document r286231, pms(4) added to GENERIC.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:44 2015(r288858)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:46 2015(r288859)
@@ -922,6 +922,10 @@
affinity and policy configuration has been added.  See
, and , for usage
details.
+
+  The  driver has been added
+   to the GENERIC kernel configuration for
+   supported architectures.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288847 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:18 2015
New Revision: 288847
URL: https://svnweb.freebsd.org/changeset/base/288847

Log:
  Document r285524, hw.model sysctl.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:15 2015(r288846)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:18 2015(r288847)
@@ -951,6 +951,10 @@
been added, which when set to 1 during
runtime will flush all
net.inet.tcp.hostcache entries.
+
+  A new ,
+   hw.model, has been added, which displays
+   CPU model information.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288862 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:53 2015
New Revision: 288862
URL: https://svnweb.freebsd.org/changeset/base/288862

Log:
  Document r286444, BIO_DELETE passthru support in GELI.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:51 2015(r288861)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:53 2015(r288862)
@@ -1396,6 +1396,13 @@
 map, -noauto, which
handles  entries set to
noauto.
+
+  The GELI class has
+   been updated to support the BIO_DELETE
+bio_cmd field, providing
+   TRIM/UNMAP support on
+   GELI-backed SSD storage
+   providers.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288867 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:05 2015
New Revision: 288867
URL: https://svnweb.freebsd.org/changeset/base/288867

Log:
  Document r286829, ability to disable em(4) CRC stripping.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:03 2015(r288866)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:05 2015(r288867)
@@ -1187,6 +1187,10 @@
   The  driver has been imported
from OpenBSD, providing support for  3160/7260/7265
wireless chipsets.
+
+  The  driver has been updated
+   to allow disabling CRC stripping.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288874 - in head/release/doc: en_US.ISO8859-1/relnotes share/xml

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:22 2015
New Revision: 288874
URL: https://svnweb.freebsd.org/changeset/base/288874

Log:
  Document r287371, support for HiSilicon HI6220 SoC.
  Add ABT Systems, Ltd. to sponsor.ent.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml
  head/release/doc/share/xml/sponsor.ent

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:20 2015(r288873)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:22 2015(r288874)
@@ -1410,6 +1410,10 @@
added, providing support for 1-Wire hardware through
.  See , , and
 for more information.
+
+  Support for the HiSilicon HI6220 SoC has been
+   added.
 
   
 

Modified: head/release/doc/share/xml/sponsor.ent
==
--- head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:13:20 2015
(r288873)
+++ head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:13:22 2015
(r288874)
@@ -8,6 +8,7 @@
 
 -->
 
+
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288843 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:08 2015
New Revision: 288843
URL: https://svnweb.freebsd.org/changeset/base/288843

Log:
  Document r285316, FreeBSD/aarch64 SMP support.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:05 2015(r288842)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:08 2015(r288843)
@@ -1155,6 +1155,10 @@
 
   The  driver has been updated to support
AMT devices on newer systems.
+
+  Initial SMP support has been
+   added to the / port.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288841 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:03 2015
New Revision: 288841
URL: https://svnweb.freebsd.org/changeset/base/288841

Log:
  Document r285275, tcpdump(1) updated to version 4.7.4.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:00 2015(r288840)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:03 2015(r288841)
@@ -520,6 +520,9 @@
confUSE_COMPRESSED_IPV6_ADDRESSES or the cf
option UseCompressedIPv6Addresses.
 
+  The  utility has been
+   updated to version 4.7.4.
+
   OpenSSL has
been updated to version 1.0.1p.
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288846 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:15 2015
New Revision: 288846
URL: https://svnweb.freebsd.org/changeset/base/288846

Log:
  Document r285420, jail(8) -l flag and default shell execution when
  no commands are specified.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:12 2015(r288845)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:15 2015(r288846)
@@ -403,6 +403,12 @@
   The  utility has been
updated to include support for IPv6.
 
+  The  utility has been
+   updated to include a new flag, -l, which
+   ensures a clean environment in the target jail when used.
+   Additionally,  will run a shell within the target
+   jail when run no commands are specified.
+
   The  utility has been updated
to display the full IPv6 remote address of the host from which
a user is connected.
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288838 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:11:56 2015
New Revision: 288838
URL: https://svnweb.freebsd.org/changeset/base/288838

Log:
  Document r285142, IPSEC enabled in GENERIC by default.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:53 2015(r288837)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:56 2015(r288838)
@@ -872,6 +872,11 @@
Multi-queue support in the  driver is not
  officially supported by .
   
+
+  The GENERIC kernel
+   configuration has been updated to include the
+   IPSEC option by default.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288848 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:20 2015
New Revision: 288848
URL: https://svnweb.freebsd.org/changeset/base/288848

Log:
  Document r285594, 'lenovofix' gpart(8) attribute.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:18 2015(r288847)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:20 2015(r288848)
@@ -1390,6 +1390,13 @@
apple-boot, apple-hfs,
and apple-ufs MBR
partitioning schemes have been added to .
+
+  The  utility has been
+   updated to include a new attribute for GPT
+   partitions, lenovofix, which when set,
+   which works around BIOS compatibility
+   issues reported on several Lenovo laptops.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288837 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:11:53 2015
New Revision: 288837
URL: https://svnweb.freebsd.org/changeset/base/288837

Log:
  Document r284883, NTFS support in mkimg(1).
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:08:11 2015(r288836)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:53 2015(r288837)
@@ -392,6 +392,11 @@
updated to be able to detect  and 
filesystems.
 
+  The  utility has been
+   updated to include support for NTFS
+   filesystems in both MBR and
+   GPT partitioning schemes.
+
   The  utility has been updated
to display the full IPv6 remote address of the host from which
a user is connected.
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288855 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:37 2015
New Revision: 288855
URL: https://svnweb.freebsd.org/changeset/base/288855

Log:
  Document r285972, libarchive(3) bugfix for sparse files in tar(1)
  archives.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:35 2015(r288854)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:37 2015(r288855)
@@ -544,6 +544,10 @@
canonicalization before locating the host in
known_hosts.
 
+  The  library has been
+   updated to properly skip a sparse file entry in a 
+   file, which would previously produce errors.
+
   The  subsystem has been
updated to version 20150818.
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288852 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:30 2015
New Revision: 288852
URL: https://svnweb.freebsd.org/changeset/base/288852

Log:
  Document r287168, ACPICA version 20150818.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:27 2015(r288851)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:30 2015(r288852)
@@ -508,9 +508,6 @@
   The  utility has been updated
to the OpenBSD 5.7 version.
 
-  The  subsystem has been
-   updated to version 20150515.
-
   The  utility has been
updated to version 5.23.
 
@@ -546,6 +543,9 @@
 utility has been updated to re-implement hostname
canonicalization before locating the host in
known_hosts.
+
+  The  subsystem has been
+   updated to version 20150818.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288844 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:10 2015
New Revision: 288844
URL: https://svnweb.freebsd.org/changeset/base/288844

Log:
  Document r285336, AES mode support in IPSEC.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:08 2015(r288843)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:10 2015(r288844)
@@ -1519,6 +1519,12 @@
6864) has been added.  Support for this feature can be toggled
with the net.inet.ip.rfc6864
, which is enabled by default.
+
+  The IPSEC has been
+   updated to include support for AES modes on
+   both software-only and hardware-backed ()
+   systems.
 
   
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288845 - in head/release/doc: en_US.ISO8859-1/relnotes share/xml

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:12 2015
New Revision: 288845
URL: https://svnweb.freebsd.org/changeset/base/288845

Log:
  Document r285387, NUMA affinity/policy configuration.
  Add Norse Corporation to sponsors.ent.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml
  head/release/doc/share/xml/sponsor.ent

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:10 2015(r288844)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:12 2015(r288845)
@@ -891,6 +891,12 @@
sponsor="">The GENERIC kernel
configuration has been updated to include the
IPSEC option by default.
+
+  Initial NUMA
+   affinity and policy configuration has been added.  See
+   , and , for usage
+   details.
 
 
 

Modified: head/release/doc/share/xml/sponsor.ent
==
--- head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:12:10 2015
(r288844)
+++ head/release/doc/share/xml/sponsor.ent  Mon Oct  5 20:12:12 2015
(r288845)
@@ -41,6 +41,7 @@
 
 
 
+
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288839 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:11:58 2015
New Revision: 288839
URL: https://svnweb.freebsd.org/changeset/base/288839

Log:
  Document r285169, ntp-4.2.8p3.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:56 2015(r288838)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:58 2015(r288839)
@@ -173,6 +173,9 @@
 
   The MK_ARM_EABI
 option has been removed.
+
+  The ntp suite
+   has been updated to version 4.2.8p3.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288842 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:05 2015
New Revision: 288842
URL: https://svnweb.freebsd.org/changeset/base/288842

Log:
  Document r285277, execl(3) and execlp(3) update to use the gcc
  __sentinel attribute.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:03 2015(r288841)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:05 2015(r288842)
@@ -709,6 +709,11 @@
   The Blowfish  library
has been updated to support 2y hashes.
+
+  The  and 
+   library functions have been updated to use the
+   __sentinel gcc
+   attribute.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288885 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:49 2015
New Revision: 25
URL: https://svnweb.freebsd.org/changeset/base/25

Log:
  Document r288176, kernel symbols now installed to /usr/lib/debug/.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:47 2015(r24)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:49 2015(r25)
@@ -981,6 +981,13 @@
   The
CUBIEBOARD2 kernel configuration has been
renamed to A20.
+
+  Kernel
+   debugging symbols are now installed to /usr/lib/debug/boot/kernel/.
+   To retain the previous behavior, add
+   KERN_DEBUGDIR="" to
+   .
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288887 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:14:22 2015
New Revision: 27
URL: https://svnweb.freebsd.org/changeset/base/27

Log:
  Document r288310, ctl(4) updated to support CD-ROMs and other
  removable devices.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:51 2015(r26)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:14:22 2015(r27)
@@ -1152,6 +1152,9 @@
   The
CTL High Availability implementation has
been rewritten.
+
+  The  driver has been updated
+   to support CD-ROM and removable devices.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288703 - head/sys/dev/random

2015-10-05 Thread Mark Murray
Author: markm
Date: Mon Oct  5 07:41:12 2015
New Revision: 288703
URL: https://svnweb.freebsd.org/changeset/base/288703

Log:
  It appears that under some circumstances, like virtualisiation, the
  'rdrand' instruction may occasionally not return random numbers, in
  spite of looping attempts to do so. The reusult is a KASSERT/panic.
  
  Reluctantly accept this state-of-affairs, but make a noise about it.
  if this 'noise' spams the console, it may be time to discontinue
  using that source.
  
  This is written in a general way to account for /any/ source that
  might not supply random numbers when required.
  
  Submitted by: jkh (report and slightly different fix)
  Approved by:  so (/dev/random blanket)

Modified:
  head/sys/dev/random/random_harvestq.c

Modified: head/sys/dev/random/random_harvestq.c
==
--- head/sys/dev/random/random_harvestq.c   Mon Oct  5 07:40:18 2015
(r288702)
+++ head/sys/dev/random/random_harvestq.c   Mon Oct  5 07:41:12 2015
(r288703)
@@ -211,7 +211,16 @@ random_sources_feed(void)
LIST_FOREACH(rrs, _list, rrs_entries) {
for (i = 0; i < 
p_random_alg_context->ra_poolcount*(local_read_rate + 1); i++) {
n = rrs->rrs_source->rs_read(entropy, sizeof(entropy));
-   KASSERT((n > 0 && n <= sizeof(entropy)), ("very bad 
return from rs_read (= %d) in %s", n, __func__));
+   KASSERT((n <= sizeof(entropy)), ("%s: rs_read returned 
too much data (%d > %d) in %s", __func__, n, sizeof(entropy)));
+   /* It would appear that in some circumstances (e.g. 
virtualisation),
+* the underlying hardware entropy source might not 
always return
+* random numbers. Accept this but make a noise. If too 
much happens,
+* can that source be trusted?
+*/
+   if (n == 0) {
+   printf("%s: rs_read for hardware device '%s' 
returned no entropy.\n", __func__, rrs->rrs_source->rs_ident);
+   continue;
+   }
random_harvest_direct(entropy, n, (n*8)/2, 
rrs->rrs_source->rs_source);
}
}
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288906 - head/bin/ls/tests

2015-10-05 Thread Garrett Cooper
Author: ngie
Date: Tue Oct  6 00:55:31 2015
New Revision: 288906
URL: https://svnweb.freebsd.org/changeset/base/288906

Log:
  Explicitly set BLOCKSIZE to 512 in the environment

Modified:
  head/bin/ls/tests/ls_tests.sh

Modified: head/bin/ls/tests/ls_tests.sh
==
--- head/bin/ls/tests/ls_tests.sh   Tue Oct  6 00:23:50 2015
(r288905)
+++ head/bin/ls/tests/ls_tests.sh   Tue Oct  6 00:55:31 2015
(r288906)
@@ -928,6 +928,7 @@ atf_test_case 1_flag
 
 atf_init_test_cases()
 {
+   export BLOCKSIZE=512
 
atf_add_test_case A_flag
atf_add_test_case A_flag_implied_when_root
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288907 - head/bin/ls/tests

2015-10-05 Thread Garrett Cooper
Author: ngie
Date: Tue Oct  6 01:00:12 2015
New Revision: 288907
URL: https://svnweb.freebsd.org/changeset/base/288907

Log:
  Call sync consistently using atf_check
  
  Remove superfluous sync's

Modified:
  head/bin/ls/tests/ls_tests.sh

Modified: head/bin/ls/tests/ls_tests.sh
==
--- head/bin/ls/tests/ls_tests.sh   Tue Oct  6 00:55:31 2015
(r288906)
+++ head/bin/ls/tests/ls_tests.sh   Tue Oct  6 01:00:12 2015
(r288907)
@@ -814,14 +814,16 @@ t_flag_body()
 
atf_check -e empty -o empty -s exit:0 touch a.file
atf_check -e empty -o empty -s exit:0 touch b.file
-   sync
+
+   atf_check -e empty -s exit:0 sync
 
atf_check -e empty -o match:'a\.file' -s exit:0 sh -c 'ls -lt | tail -n 
1'
atf_check -e empty -o match:'b\.file.*a\.file' -s exit:0 ls -Ct
 
atf_check -e empty -o empty -s exit:0 rm a.file
atf_check -e empty -o empty -s exit:0 sh -c 'echo "i am a" > a.file'
-   sync
+
+   atf_check -e empty -s exit:0 sync
 
atf_check -e empty -o match:'b\.file' -s exit:0 sh -c 'ls -lt | tail -n 
1'
atf_check -e empty -o match:'a\.file.*b\.file' -s exit:0 ls -Ct
@@ -838,17 +840,15 @@ u_flag_body()
create_test_dir
 
atf_check -e empty -o empty -s exit:0 touch a.file
-   sync
atf_check -e empty -o empty -s exit:0 touch b.file
-   sync
+   atf_check -e empty -s exit:0 sync
 
atf_check -e empty -o match:'b\.file' -s exit:0 sh -c 'ls -lu | tail -n 
1'
atf_check -e empty -o match:'a\.file.*b\.file' -s exit:0 ls -Cu
 
atf_check -e empty -o empty -s exit:0 sh -c 'echo "i am a" > a.file'
-   sync
atf_check -e empty -o match:'i am a' -s exit:0 cat a.file
-   sync
+   atf_check -e empty -s exit:0 sync
 
atf_check -e empty -o match:'b\.file' -s exit:0 sh -c 'ls -lu | tail -n 
1'
atf_check -e empty -o match:'a\.file.*b\.file' -s exit:0 ls -Cu
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288908 - head/release/arm

2015-10-05 Thread Glen Barber
Author: gjb
Date: Tue Oct  6 01:05:07 2015
New Revision: 288908
URL: https://svnweb.freebsd.org/changeset/base/288908

Log:
  Use UBOOT_FILES in the dd(1) input file, as intended.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/arm/BANANAPI.conf
  head/release/arm/CUBIEBOARD.conf
  head/release/arm/CUBIEBOARD2.conf

Modified: head/release/arm/BANANAPI.conf
==
--- head/release/arm/BANANAPI.conf  Tue Oct  6 01:00:12 2015
(r288907)
+++ head/release/arm/BANANAPI.conf  Tue Oct  6 01:05:07 2015
(r288908)
@@ -19,10 +19,10 @@ export BOARDNAME="BANANAPI"
 
 arm_install_uboot() {
UBOOT_DIR="/usr/local/share/u-boot/u-boot-bananapi"
-   UBOOT_FILES="u-boot.img"
+   UBOOT_FILES="u-boot-sunxi-with-spl.bin"
FATMOUNT="${DESTDIR%${KERNEL}}/fat"
UFSMOUNT="${DESTDIR%${KERNEL}}/ufs"
-   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/u-boot-sunxi-with-spl.bin \
+   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
of=/dev/${mddev} bs=1k seek=8 conv=sync
chroot ${CHROOTDIR} mkdir -p "${FATMOUNT}" "${UFSMOUNT}"
chroot ${CHROOTDIR} mount_msdosfs /dev/${mddev}s1 ${FATMOUNT}

Modified: head/release/arm/CUBIEBOARD.conf
==
--- head/release/arm/CUBIEBOARD.confTue Oct  6 01:00:12 2015
(r288907)
+++ head/release/arm/CUBIEBOARD.confTue Oct  6 01:05:07 2015
(r288908)
@@ -18,10 +18,10 @@ NODOC=1
 
 arm_install_uboot() {
UBOOT_DIR="/usr/local/share/u-boot/u-boot-cubieboard"
-   UBOOT_FILES="u-boot.img"
+   UBOOT_FILES="u-boot-sunxi-with-spl.bin"
FATMOUNT="${DESTDIR%${KERNEL}}/fat"
UFSMOUNT="${DESTDIR%${KERNEL}}/ufs"
-   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/u-boot-sunxi-with-spl.bin \
+   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
of=/dev/${mddev} bs=1k seek=8 conv=sync
chroot ${CHROOTDIR} mkdir -p "${FATMOUNT}" "${UFSMOUNT}"
chroot ${CHROOTDIR} mount_msdosfs /dev/${mddev}s1 ${FATMOUNT}

Modified: head/release/arm/CUBIEBOARD2.conf
==
--- head/release/arm/CUBIEBOARD2.conf   Tue Oct  6 01:00:12 2015
(r288907)
+++ head/release/arm/CUBIEBOARD2.conf   Tue Oct  6 01:05:07 2015
(r288908)
@@ -19,10 +19,10 @@ export BOARDNAME="CUBIEBOARD2"
 
 arm_install_uboot() {
UBOOT_DIR="/usr/local/share/u-boot/u-boot-cubieboard2"
-   UBOOT_FILES="u-boot.img"
+   UBOOT_FILES="u-boot-sunxi-with-spl.bin"
FATMOUNT="${DESTDIR%${KERNEL}}/fat"
UFSMOUNT="${DESTDIR%${KERNEL}}/ufs"
-   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/u-boot-sunxi-with-spl.bin \
+   chroot ${CHROOTDIR} dd if=${UBOOT_DIR}/${UBOOT_FILES} \
of=/dev/${mddev} bs=1k seek=8 conv=sync
chroot ${CHROOTDIR} mkdir -p "${FATMOUNT}" "${UFSMOUNT}"
chroot ${CHROOTDIR} mount_msdosfs /dev/${mddev}s1 ${FATMOUNT}
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288909 - head/sys/powerpc/powerpc

2015-10-05 Thread Justin Hibbits
Author: jhibbits
Date: Tue Oct  6 01:24:46 2015
New Revision: 288909
URL: https://svnweb.freebsd.org/changeset/base/288909

Log:
  Save the link register in savectx().
  
  Pointed out by:   jhb

Modified:
  head/sys/powerpc/powerpc/swtch32.S
  head/sys/powerpc/powerpc/swtch64.S

Modified: head/sys/powerpc/powerpc/swtch32.S
==
--- head/sys/powerpc/powerpc/swtch32.S  Tue Oct  6 01:05:07 2015
(r288908)
+++ head/sys/powerpc/powerpc/swtch32.S  Tue Oct  6 01:24:46 2015
(r288909)
@@ -187,6 +187,8 @@ ENTRY(savectx)
stmw%r12,PCB_CONTEXT(%r3)   /* Save the non-volatile GP regs */
mfcr%r4 /* Save the condition register */
stw %r4,PCB_CR(%r3)
+   mflr%r4 /* Save the link register */
+   stw %r4,PCB_LR(%r3)
blr
 
 /*

Modified: head/sys/powerpc/powerpc/swtch64.S
==
--- head/sys/powerpc/powerpc/swtch64.S  Tue Oct  6 01:05:07 2015
(r288908)
+++ head/sys/powerpc/powerpc/swtch64.S  Tue Oct  6 01:24:46 2015
(r288909)
@@ -255,6 +255,8 @@ ENTRY(savectx)
mfcr%r4 /* Save the condition register */
std %r4,PCB_CR(%r3)
std %r2,PCB_TOC(%r3)/* Save the TOC pointer */
+   mflr%r4 /* Save the link register */
+   std %r4,PCB_LR(%r3)
blr
 
 /*
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288901 - head/sys/vm

2015-10-05 Thread Warner Losh
Author: imp
Date: Mon Oct  5 21:29:17 2015
New Revision: 288901
URL: https://svnweb.freebsd.org/changeset/base/288901

Log:
  Mark swap_pager_putpages static at its definition. It was already
  static at its declaration. Remove needless swapdev_strategy forward
  declaration.
  
  MFC After: 3 days

Modified:
  head/sys/vm/swap_pager.c

Modified: head/sys/vm/swap_pager.c
==
--- head/sys/vm/swap_pager.cMon Oct  5 21:18:41 2015(r288900)
+++ head/sys/vm/swap_pager.cMon Oct  5 21:29:17 2015(r288901)
@@ -313,8 +313,6 @@ swap_release_by_cred(vm_ooffset_t decr, 
racct_sub_cred(cred, RACCT_SWAP, decr);
 }
 
-static void swapdev_strategy(struct buf *, struct swdevt *sw);
-
 #define SWM_FREE   0x02/* free, period */
 #define SWM_POP0x04/* pop out  */
 
@@ -1308,7 +1306,7 @@ swap_pager_getpages_async(vm_object_t ob
  * those whos rtvals[] entry is not set to VM_PAGER_PEND on return.
  * We need to unbusy the rest on I/O completion.
  */
-void
+static void
 swap_pager_putpages(vm_object_t object, vm_page_t *m, int count,
 int flags, int *rtvals)
 {
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288903 - head/usr.bin/truss

2015-10-05 Thread Bryan Drewery
Author: bdrewery
Date: Mon Oct  5 21:39:07 2015
New Revision: 288903
URL: https://svnweb.freebsd.org/changeset/base/288903

Log:
  Fix crash if a process sends itself a SIGTRAP.  Just forward it as expected.
  
  MFC after:2 weeks [needs rewrite]
  Relnotes: yes

Modified:
  head/usr.bin/truss/setup.c

Modified: head/usr.bin/truss/setup.c
==
--- head/usr.bin/truss/setup.c  Mon Oct  5 21:36:53 2015(r288902)
+++ head/usr.bin/truss/setup.c  Mon Oct  5 21:39:07 2015(r288903)
@@ -564,15 +564,12 @@ eventloop(struct trussinfo *info)
}
find_thread(info, si.si_pid, pl.pl_lwpid);
 
-   if (si.si_status == SIGTRAP) {
+   if (si.si_status == SIGTRAP &&
+   (pl.pl_flags & (PL_FLAG_SCE|PL_FLAG_SCX)) != 0) {
if (pl.pl_flags & PL_FLAG_SCE)
enter_syscall(info, );
else if (pl.pl_flags & PL_FLAG_SCX)
exit_syscall(info, );
-   else
-   errx(1,
-  "pl_flags %x contains neither PL_FLAG_SCE nor PL_FLAG_SCX",
-   pl.pl_flags);
pending_signal = 0;
} else if (pl.pl_flags & PL_FLAG_CHILD) {
if ((info->flags & COUNTONLY) == 0)
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288902 - head/sys/kern

2015-10-05 Thread John Baldwin
Author: jhb
Date: Mon Oct  5 21:36:53 2015
New Revision: 288902
URL: https://svnweb.freebsd.org/changeset/base/288902

Log:
  Include additional info in ptrace(2) KTR traces:
  - The new PC value and signal passed to PT_CONTINUE, PT_DETACH, PT_SYSCALL,
and PT_TO_SC[EX].
  - The system call code returned via PT_LWPINFO.
  
  MFC after:1 week

Modified:
  head/sys/kern/sys_process.c

Modified: head/sys/kern/sys_process.c
==
--- head/sys/kern/sys_process.c Mon Oct  5 21:29:17 2015(r288901)
+++ head/sys/kern/sys_process.c Mon Oct  5 21:36:53 2015(r288902)
@@ -928,25 +928,29 @@ kern_ptrace(struct thread *td, int req, 
switch (req) {
case PT_TO_SCE:
p->p_stops |= S_PT_SCE;
-   CTR2(KTR_PTRACE,
-   "PT_TO_SCE: pid %d, stops = %#x", p->p_pid,
-   p->p_stops);
+   CTR4(KTR_PTRACE,
+   "PT_TO_SCE: pid %d, stops = %#x, PC = %#lx, sig = %d",
+   p->p_pid, p->p_stops,
+   (u_long)(uintfptr_t)addr, data);
break;
case PT_TO_SCX:
p->p_stops |= S_PT_SCX;
-   CTR2(KTR_PTRACE,
-   "PT_TO_SCX: pid %d, stops = %#x", p->p_pid,
-   p->p_stops);
+   CTR4(KTR_PTRACE,
+   "PT_TO_SCX: pid %d, stops = %#x, PC = %#lx, sig = %d",
+   p->p_pid, p->p_stops,
+   (u_long)(uintfptr_t)addr, data);
break;
case PT_SYSCALL:
p->p_stops |= S_PT_SCE | S_PT_SCX;
-   CTR2(KTR_PTRACE,
-   "PT_SYSCALL: pid %d, stops = %#x", p->p_pid,
-   p->p_stops);
+   CTR4(KTR_PTRACE,
+   "PT_SYSCALL: pid %d, stops = %#x, PC = %#lx, sig = %d",
+   p->p_pid, p->p_stops,
+   (u_long)(uintfptr_t)addr, data);
break;
case PT_CONTINUE:
-   CTR1(KTR_PTRACE,
-   "PT_CONTINUE: pid %d", p->p_pid);
+   CTR3(KTR_PTRACE,
+   "PT_CONTINUE: pid %d, PC = %#lx, sig = %d",
+   p->p_pid, (u_long)(uintfptr_t)addr, data);
break;
}
break;
@@ -969,11 +973,12 @@ kern_ptrace(struct thread *td, int req, 
proc_reparent(p, pp);
if (pp == initproc)
p->p_sigparent = SIGCHLD;
-   CTR2(KTR_PTRACE,
-   "PT_DETACH: pid %d reparented to pid %d",
-   p->p_pid, pp->p_pid);
+   CTR3(KTR_PTRACE,
+   "PT_DETACH: pid %d reparented to pid %d, sig %d",
+   p->p_pid, pp->p_pid, data);
} else
-   CTR1(KTR_PTRACE, "PT_DETACH: pid %d", p->p_pid);
+   CTR2(KTR_PTRACE, "PT_DETACH: pid %d, sig %d",
+   p->p_pid, data);
p->p_oppid = 0;
p->p_stops = 0;
 
@@ -1226,10 +1231,10 @@ kern_ptrace(struct thread *td, int req, 
if (wrap32)
ptrace_lwpinfo_to32(pl, pl32);
 #endif
-   CTR5(KTR_PTRACE,
-   "PT_LWPINFO: tid %d (pid %d) event %d flags %#x child pid %d",
+   CTR6(KTR_PTRACE,
+"PT_LWPINFO: tid %d (pid %d) event %d flags %#x child pid %d syscall %d",
td2->td_tid, p->p_pid, pl->pl_event, pl->pl_flags,
-   pl->pl_child_pid);
+   pl->pl_child_pid, pl->pl_syscall_code);
break;
 
case PT_GETNUMLWPS:
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288904 - in head: bin usr.bin

2015-10-05 Thread Warner Losh
Author: imp
Date: Mon Oct  5 21:41:55 2015
New Revision: 288904
URL: https://svnweb.freebsd.org/changeset/base/288904

Log:
  Start using the fact that SUBDIR.yes is added to SUBDIR
  and move from the pattern of:
  
  .if ${MK_FOO} != "no"
  SUBDIR+= bar
  .endif
  
  to
  
  SUBDIR.${MK_FOO}+= bar
  
  since we know that MK_FOO is always either yes or no and the latter
  form is easier to follow and much shorter. Various exception to this
  pattern dealt with on an ah-hoc basis.
  
  Discussed on arch@ a while ago.

Modified:
  head/bin/Makefile
  head/usr.bin/Makefile

Modified: head/bin/Makefile
==
--- head/bin/Makefile   Mon Oct  5 21:39:07 2015(r288903)
+++ head/bin/Makefile   Mon Oct  5 21:41:55 2015(r288904)
@@ -40,21 +40,10 @@ SUBDIR= cat \
test \
uuidgen
 
-.if ${MK_RCMDS} != "no"
-SUBDIR+=   rcp
-.endif
-
-.if ${MK_SENDMAIL} != "no"
-SUBDIR+=   rmail
-.endif
-
-.if ${MK_TCSH} != "no"
-SUBDIR+=   csh
-.endif
-
-.if ${MK_TESTS} != "no"
-SUBDIR+=   tests
-.endif
+SUBDIR.${MK_RCMDS}+=   rcp
+SUBDIR.${MK_SENDMAIL}+=rmail
+SUBDIR.${MK_TCSH}+=csh
+SUBDIR.${MK_TESTS}+=   tests
 
 .include 
 

Modified: head/usr.bin/Makefile
==
--- head/usr.bin/Makefile   Mon Oct  5 21:39:07 2015(r288903)
+++ head/usr.bin/Makefile   Mon Oct  5 21:41:55 2015(r288904)
@@ -190,230 +190,109 @@ SUBDIR= alias \
 
 # NB: keep these sorted by MK_* knobs
 
-.if ${MK_AT} != "no"
-SUBDIR+=   at
-.endif
-
-.if ${MK_ATM} != "no"
-SUBDIR+=   atm
-.endif
-
-.if ${MK_BLUETOOTH} != "no"
-SUBDIR+=   bluetooth
-.endif
-
-.if ${MK_BSD_CPIO} != "no"
-SUBDIR+=   cpio
-.endif
-
-.if ${MK_CALENDAR} != "no"
-SUBDIR+=   calendar
-.endif
-
-.if ${MK_CLANG} != "no"
-SUBDIR+=   clang
-.endif
-
-.if ${MK_EE} != "no"
-SUBDIR+=   ee
-.endif
-
-.if ${MK_FILE} != "no"
-SUBDIR+=   file
-.endif
-
-.if ${MK_FINGER} != "no"
-SUBDIR+=   finger
-.endif
-
-.if ${MK_FTP} != "no"
-SUBDIR+=   ftp
-.endif
-
-.if ${MK_GAMES} != "no"
-SUBDIR+=   caesar
-SUBDIR+=   factor
-SUBDIR+=   fortune
-SUBDIR+=   grdc
-SUBDIR+=   morse
-SUBDIR+=   number
-SUBDIR+=   pom
-SUBDIR+=   primes
-SUBDIR+=   random
-.endif
-
-.if ${MK_GPL_DTC} != "yes"
-SUBDIR+=   dtc
-.endif
-
-.if ${MK_GROFF} != "no"
-SUBDIR+=   vgrind
-.endif
-
-.if ${MK_HESIOD} != "no"
-SUBDIR+=   hesinfo
-.endif
-
-.if ${MK_ICONV} != "no"
-SUBDIR+=   iconv
-SUBDIR+=   mkcsmapper
-SUBDIR+=   mkesdb
-.endif
-
-.if ${MK_ISCSI} != "no"
-SUBDIR+=   iscsictl
-.endif
-
-.if ${MK_KDUMP} != "no"
-SUBDIR+=kdump
-SUBDIR+=truss
-.endif
-
-.if ${MK_KERBEROS_SUPPORT} != "no"
-SUBDIR+=   compile_et
-.endif
-
-.if ${MK_LDNS_UTILS} != "no"
-SUBDIR+=   drill
-SUBDIR+=   host
-.endif
-
-.if ${MK_LOCATE} != "no"
-SUBDIR+=   locate
-.endif
-
+SUBDIR.${MK_AT}+=  at
+SUBDIR.${MK_ATM}+= atm
+SUBDIR.${MK_BLUETOOTH}+=   bluetooth
+SUBDIR.${MK_BSD_CPIO}+=cpio
+SUBDIR.${MK_CALENDAR}+=calendar
+SUBDIR.${MK_CLANG}+=   clang
+SUBDIR.${MK_EE}+=  ee
+SUBDIR.${MK_FILE}+=file
+SUBDIR.${MK_FINGER}+=  finger
+SUBDIR.${MK_FTP}+= ftp
+SUBDIR.${MK_GAMES}+=   caesar
+SUBDIR.${MK_GAMES}+=   factor
+SUBDIR.${MK_GAMES}+=   fortune
+SUBDIR.${MK_GAMES}+=   grdc
+SUBDIR.${MK_GAMES}+=   morse
+SUBDIR.${MK_GAMES}+=   number
+SUBDIR.${MK_GAMES}+=   pom
+SUBDIR.${MK_GAMES}+=   primes
+SUBDIR.${MK_GAMES}+=   random
+SUBDIR.${MK_GPL_DTC}+= dtc
+SUBDIR.${MK_GROFF}+=   vgrind
+SUBDIR.${MK_HESIOD}+=  hesinfo
+SUBDIR.${MK_ICONV}+=   iconv
+SUBDIR.${MK_ICONV}+=   mkcsmapper
+SUBDIR.${MK_ICONV}+=   mkesdb
+SUBDIR.${MK_ISCSI}+=   iscsictl
+SUBDIR.${MK_KDUMP}+=   kdump
+SUBDIR.${MK_KDUMP}+=   truss
+SUBDIR.${MK_KERBEROS_SUPPORT}+=compile_et
+SUBDIR.${MK_LDNS_UTILS}+=  drill
+SUBDIR.${MK_LDNS_UTILS}+=  host
+SUBDIR.${MK_LOCATE}+=  locate
 # XXX msgs?
-.if ${MK_MAIL} != "no"
-SUBDIR+=   biff
-SUBDIR+=   from
-SUBDIR+=   mail
-SUBDIR+=   msgs
-.endif
-
-.if ${MK_MAKE} != "no"
-SUBDIR+=   bmake
-.endif
-
-.if ${MK_MAN_UTILS} != "no"
-SUBDIR+=   catman
-.if ${MK_MANDOCDB} == "no"
-SUBDIR+=   makewhatis
-.endif
-SUBDIR+=   man
-.endif
-
-.if ${MK_NETCAT} != "no"
-SUBDIR+=   nc
-.endif
-
-.if ${MK_NIS} != "no"
-SUBDIR+=   ypcat
-SUBDIR+=   ypmatch
-SUBDIR+=   ypwhich
-.endif
-
-.if ${MK_OPENSSH} != "no"
-SUBDIR+=   ssh-copy-id
-.endif
-
-.if ${MK_OPENSSL} != "no"
-SUBDIR+=   bc
-SUBDIR+=   chkey
-SUBDIR+=   dc
-SUBDIR+=   newkey
-.endif
-
-.if ${MK_QUOTAS} != "no"
-SUBDIR+=   quota
-.endif
-
-.if ${MK_RCMDS} != "no"
-SUBDIR+=   rlogin
-SUBDIR+=   rsh
-SUBDIR+=   ruptime
-SUBDIR+=   rwho
-.endif
-
-.if ${MK_SENDMAIL} != "no"
-SUBDIR+=   vacation
-.endif
-
-.if ${MK_TALK} 

svn commit: r288905 - head/bin/ls/tests

2015-10-05 Thread Garrett Cooper
Author: ngie
Date: Tue Oct  6 00:23:50 2015
New Revision: 288905
URL: https://svnweb.freebsd.org/changeset/base/288905

Log:
  Add some more syncs to quiesce the filesystem after creating the
  files to see if this fixes deterministic Jenkin failures

Modified:
  head/bin/ls/tests/ls_tests.sh
Directory Properties:
  head/   (props changed)

Modified: head/bin/ls/tests/ls_tests.sh
==
--- head/bin/ls/tests/ls_tests.sh   Mon Oct  5 21:41:55 2015
(r288904)
+++ head/bin/ls/tests/ls_tests.sh   Tue Oct  6 00:23:50 2015
(r288905)
@@ -72,6 +72,8 @@ create_test_inputs()
atf_check -e empty -s exit:0 touch 0b1101
atf_check -e empty -s exit:0 touch 0b1110
atf_check -e empty -s exit:0 touch 0b
+
+   atf_check -e empty -s exit:0 sync
 }
 
 KB=1024
@@ -98,6 +100,8 @@ create_test_inputs2()
count=1 oseek=$(( $filesize / $MB )) conv=sparse
files="${files} ${filesize}.file"
done
+
+   atf_check -e empty -s exit:0 sync
 }
 
 atf_test_case A_flag
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288840 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:12:00 2015
New Revision: 288840
URL: https://svnweb.freebsd.org/changeset/base/288840

Log:
  Document r285253, IPv6 support in quota(1).
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:11:58 2015(r288839)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:12:00 2015(r288840)
@@ -400,6 +400,9 @@
filesystems in both MBR and
GPT partitioning schemes.
 
+  The  utility has been
+   updated to include support for IPv6.
+
   The  utility has been updated
to display the full IPv6 remote address of the host from which
a user is connected.
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288888 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:14:25 2015
New Revision: 28
URL: https://svnweb.freebsd.org/changeset/base/28

Log:
  Wrap a long line to make igor(1) happy.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:14:22 2015(r27)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:14:25 2015(r28)
@@ -1202,8 +1202,8 @@
   The  driver has been updated
to support AR816x and AR817x ethernet controllers.
 
-  The  packet filter default hash
-   has been changed from Jenkins to
+  The  packet filter default
+   hash has been changed from Jenkins to
Murmur3, providing a 3-percent performance
increase in packets-per-second.
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288886 - head/release/doc/en_US.ISO8859-1/relnotes

2015-10-05 Thread Glen Barber
Author: gjb
Date: Mon Oct  5 20:13:51 2015
New Revision: 26
URL: https://svnweb.freebsd.org/changeset/base/26

Log:
  Document r288303, nc(1) updated to OpenBSD 5.8 version.
  
  Sponsored by: The FreeBSD Foundation

Modified:
  head/release/doc/en_US.ISO8859-1/relnotes/article.xml

Modified: head/release/doc/en_US.ISO8859-1/relnotes/article.xml
==
--- head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:49 2015(r25)
+++ head/release/doc/en_US.ISO8859-1/relnotes/article.xml   Mon Oct  5 
20:13:51 2015(r26)
@@ -529,9 +529,6 @@
 utility has been updated to version
3.7.0.
 
-  The  utility has been updated
-   to the OpenBSD 5.7 version.
-
   bmake has
been updated to version 20150606.
 
@@ -595,6 +592,9 @@
 
   The  utility has been
updated to version 5.25.
+
+  The  utility has been updated
+   to the OpenBSD 5.8 version.
 
 
 
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288910 - head/sys/contrib/ipfilter/netinet

2015-10-05 Thread Cy Schubert
Author: cy
Date: Tue Oct  6 03:41:11 2015
New Revision: 288910
URL: https://svnweb.freebsd.org/changeset/base/288910

Log:
  On some interfaces, ipfilter drops UDP packets with zero checkum.
  This commit fixes that.
  
  PR:   166372
  Submitted by: m...@neon1.net
  Reviewed by:  Darren Reed 
  MFC after:1 week

Modified:
  head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c

Modified: head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c
==
--- head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c  Tue Oct  6 01:24:46 
2015(r288909)
+++ head/sys/contrib/ipfilter/netinet/ip_fil_freebsd.c  Tue Oct  6 03:41:11 
2015(r288910)
@@ -1104,6 +1104,22 @@ ipf_checkv4sum(fin)
return -1;
}
if (m->m_pkthdr.csum_flags & CSUM_DATA_VALID) {
+   /* Depending on the driver, UDP may have zero checksum */
+   if (fin->fin_p == IPPROTO_UDP && (fin->fin_flx &
+   (FI_FRAG|FI_SHORT|FI_BAD)) == 0) {
+   udphdr_t *udp = fin->fin_dp;
+   if (udp->uh_sum == 0) {
+   /*
+* we're good no matter what the hardware
+* checksum flags and csum_data say (handling
+* of csum_data for zero UDP checksum is not
+* consistent across all drivers)
+*/
+   fin->fin_cksum = 1;
+   return 0;
+   }
+   }
+
if (m->m_pkthdr.csum_flags & CSUM_PSEUDO_HDR)
sum = m->m_pkthdr.csum_data;
else
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288911 - head/share/mk

2015-10-05 Thread Warner Losh
Author: imp
Date: Tue Oct  6 04:18:48 2015
New Revision: 288911
URL: https://svnweb.freebsd.org/changeset/base/288911

Log:
  Previous versions of bsd.own.mk included bsd.compiler.mk
  only when _WITHOUT_SRCCONF wasn't defined. Restore this
  behavior because bsd.ports.mk depends on this in subtle
  ways. The compat include of bsd.compiler.mk should
  be removed in 12 anyway.
  
  PR:   203540

Modified:
  head/share/mk/bsd.own.mk

Modified: head/share/mk/bsd.own.mk
==
--- head/share/mk/bsd.own.mkTue Oct  6 03:41:11 2015(r288910)
+++ head/share/mk/bsd.own.mkTue Oct  6 04:18:48 2015(r288911)
@@ -246,7 +246,10 @@ XZ_CMD?=   xz
 # overriden by Makefiles, but the user may choose to set this in src.conf(5).
 TESTSBASE?= /usr/tests
 
-# Compat for the moment
+# Compat for the moment -- old bsd.own.mk only included this when 
_WITHOUT_SRCCONF
+# wasn't defined. bsd.ports.mk and friends depend on this behavior. Remove in 
12.
+.if !defined(_WITHOUT_SRCCONF)
 .include 
+.endif # !_WITHOUT_SRCCONF
 
 .endif # !target()
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288780 - head/sys/dev/random

2015-10-05 Thread Mark Murray
Author: markm
Date: Mon Oct  5 10:45:52 2015
New Revision: 288780
URL: https://svnweb.freebsd.org/changeset/base/288780

Log:
  Fix printf-like formats for KASSERT.
  
  Submitted by: jenkins
  Approved by:  so (/dev/random blanket)

Modified:
  head/sys/dev/random/random_harvestq.c

Modified: head/sys/dev/random/random_harvestq.c
==
--- head/sys/dev/random/random_harvestq.c   Mon Oct  5 10:45:33 2015
(r288779)
+++ head/sys/dev/random/random_harvestq.c   Mon Oct  5 10:45:52 2015
(r288780)
@@ -211,7 +211,7 @@ random_sources_feed(void)
LIST_FOREACH(rrs, _list, rrs_entries) {
for (i = 0; i < 
p_random_alg_context->ra_poolcount*(local_read_rate + 1); i++) {
n = rrs->rrs_source->rs_read(entropy, sizeof(entropy));
-   KASSERT((n <= sizeof(entropy)), ("%s: rs_read returned 
too much data (%d > %d) in %s", __func__, n, sizeof(entropy)));
+   KASSERT((n <= sizeof(entropy)), ("%s: rs_read returned 
too much data (%u > %zu)", __func__, n, sizeof(entropy)));
/* It would appear that in some circumstances (e.g. 
virtualisation),
 * the underlying hardware entropy source might not 
always return
 * random numbers. Accept this but make a noise. If too 
much happens,
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288824 - head/sys/arm/ti

2015-10-05 Thread Ruslan Bukin
Author: br
Date: Mon Oct  5 13:15:21 2015
New Revision: 288824
URL: https://svnweb.freebsd.org/changeset/base/288824

Log:
  Attach interrupt controller device before other devices.
  
  Sponsored by: University of Cambridge

Modified:
  head/sys/arm/ti/aintc.c

Modified: head/sys/arm/ti/aintc.c
==
--- head/sys/arm/ti/aintc.c Mon Oct  5 11:51:13 2015(r288823)
+++ head/sys/arm/ti/aintc.c Mon Oct  5 13:15:21 2015(r288824)
@@ -156,7 +156,8 @@ static driver_t ti_aintc_driver = {
 
 static devclass_t ti_aintc_devclass;
 
-DRIVER_MODULE(aintc, simplebus, ti_aintc_driver, ti_aintc_devclass, 0, 0);
+EARLY_DRIVER_MODULE(aintc, simplebus, ti_aintc_driver, ti_aintc_devclass,
+0, 0, BUS_PASS_INTERRUPT + BUS_PASS_ORDER_MIDDLE);
 
 int
 arm_get_next_irq(int last_irq)
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"


svn commit: r288826 - head/usr.sbin/bhyve

2015-10-05 Thread Peter Grehan
Author: grehan
Date: Mon Oct  5 14:57:45 2015
New Revision: 288826
URL: https://svnweb.freebsd.org/changeset/base/288826

Log:
  Clean up some harmless unimplemented-command warning messages.
  
  - Don't advertize trusted-computing capability in the Identify page.
This prevents Windows from issuing a TRUSTED_RECEIVE_DMA command.
  - Windows will send down SMART and SECURITY_FREEZE_LOCK
 even though smart and security capabilities were not advertized.
 Send back a silent abort.
  
  Reviewed by:  mav

Modified:
  head/usr.sbin/bhyve/pci_ahci.c

Modified: head/usr.sbin/bhyve/pci_ahci.c
==
--- head/usr.sbin/bhyve/pci_ahci.c  Mon Oct  5 13:33:02 2015
(r288825)
+++ head/usr.sbin/bhyve/pci_ahci.c  Mon Oct  5 14:57:45 2015
(r288826)
@@ -926,7 +926,7 @@ handle_identify(struct ahci_port *p, int
ata_string((uint8_t *)(buf+23), "001", 8);
ata_string((uint8_t *)(buf+27), "BHYVE SATA DISK", 40);
buf[47] = (0x8000 | 128);
-   buf[48] = 0x1;
+   buf[48] = 0;
buf[49] = (1 << 8 | 1 << 9 | 1 << 11);
buf[50] = (1 << 14);
buf[53] = (1 << 1 | 1 << 2);
@@ -1683,6 +1683,8 @@ ahci_handle_cmd(struct ahci_port *p, int
case ATA_READ_LOG_DMA_EXT:
ahci_handle_read_log(p, slot, cfis);
break;
+   case ATA_SECURITY_FREEZE_LOCK:
+   case ATA_SMART_CMD:
case ATA_NOP:
ahci_write_fis_d2h(p, slot, cfis,
(ATA_E_ABORT << 8) | ATA_S_READY | ATA_S_ERROR);
___
svn-src-head@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-head
To unsubscribe, send any mail to "svn-src-head-unsubscr...@freebsd.org"