svn commit: r290493 - head/sys/sys

2015-11-07 Thread Konstantin Belousov
Author: kib Date: Sat Nov 7 12:33:30 2015 New Revision: 290493 URL: https://svnweb.freebsd.org/changeset/base/290493 Log: Correct the argument type in the sysctl_add_oid(9) prototype. On ILP32 machines, intptr_t and intmax_t are different types. Submitted by: skra Modified:

svn commit: r290496 - head

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 12:48:29 2015 New Revision: 290496 URL: https://svnweb.freebsd.org/changeset/base/290496 Log: Add an UPDATING entry about the changed of behaviour for listed files due to now supporting correctly string collation Modified: head/UPDATING Modified:

Re: svn commit: r290494 - in head: . contrib/ipfilter contrib/llvm/lib/Target/Sparc/AsmParser contrib/llvm/lib/Target/Sparc/Disassembler contrib/llvm/lib/Target/Sparc/InstPrinter contrib/netbsd-tests/

2015-11-07 Thread Baptiste Daroussin
On Sat, Nov 07, 2015 at 12:43:36PM +, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Nov 7 12:43:35 2015 > New Revision: 290494 > URL: https://svnweb.freebsd.org/changeset/base/290494 > > Log: > Improve collation string and locales support > > Merge collation support from

svn commit: r290489 - head/sys/dev/usb

2015-11-07 Thread Hans Petter Selasky
Author: hselasky Date: Sat Nov 7 11:40:35 2015 New Revision: 290489 URL: https://svnweb.freebsd.org/changeset/base/290489 Log: Add helper function to check if a USB page cache buffer is properly aligned to reduce the use of bounce buffers in PIO mode. MFC after:1 week Modified:

svn commit: r290491 - in head/sys/netgraph/bluetooth: hci socket

2015-11-07 Thread Takanori Watanabe
Author: takawata Date: Sat Nov 7 12:15:02 2015 New Revision: 290491 URL: https://svnweb.freebsd.org/changeset/base/290491 Log: Fix encryption error handling. Close l2cap connection on encryption error. Modified: head/sys/netgraph/bluetooth/hci/ng_hci_evnt.c

svn commit: r290492 - head/sys/sys

2015-11-07 Thread Konstantin Belousov
Author: kib Date: Sat Nov 7 12:30:43 2015 New Revision: 290492 URL: https://svnweb.freebsd.org/changeset/base/290492 Log: Move intmax_t and uintmax_t type declarations to sys/_stdint.h to give it an exposure needed for use in sys/sysctl.h. Suggested by: bde Sponsored by: The FreeBSD

svn commit: r290494 - in head: . contrib/ipfilter contrib/llvm/lib/Target/Sparc/AsmParser contrib/llvm/lib/Target/Sparc/Disassembler contrib/llvm/lib/Target/Sparc/InstPrinter contrib/netbsd-tests/l...

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 12:43:35 2015 New Revision: 290494 URL: https://svnweb.freebsd.org/changeset/base/290494 Log: Improve collation string and locales support Merge collation support from Illumos and DragonflyBSD. Locales are now generated with the new localedef(1) tool from

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Bruce Evans
On Sat, 7 Nov 2015, Konstantin Belousov wrote: On Sat, Nov 07, 2015 at 09:25:32PM +1100, Bruce Evans wrote: ... I put intptr_t in long ago, since it was more needed and less magic than intmax_t. This was obfuscated by moving it to and including that in various places. intmax_t is still

svn commit: r290495 - head/sys/sys

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 12:45:52 2015 New Revision: 290495 URL: https://svnweb.freebsd.org/changeset/base/290495 Log: Bump __FreeBSD_version modification of the locales Modified: head/sys/sys/param.h Modified: head/sys/sys/param.h

svn commit: r290498 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 15:03:45 2015 New Revision: 290498 URL: https://svnweb.freebsd.org/changeset/base/290498 Log: Fix build on arm64 Modified: head/usr.bin/localedef/wide.c Modified: head/usr.bin/localedef/wide.c

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-07 Thread Bryan Drewery
On 11/7/2015 12:41 AM, Craig Rodrigues wrote: > > > On Thu, Nov 5, 2015 at 8:45 PM, Bryan Drewery > wrote: > > Author: bdrewery > Date: Fri Nov 6 04:45:29 2015 > New Revision: 290433 > URL:

svn commit: r290497 - head/etc

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 12:50:20 2015 New Revision: 290497 URL: https://svnweb.freebsd.org/changeset/base/290497 Log: Stop enforcing LC_COLLATE to C unicode collation is now supported Modified: head/etc/login.conf Modified: head/etc/login.conf

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Hans Petter Selasky
On 11/07/15 09:37, Svatopluk Kraus wrote: +#defineSYSCTL_NULL_U64_PTR ((unsigned *)NULL) Hi Conrad, All the NULL macros must have correct type according to the size-check asserts. Else they won't have any purpose: #define SYSCTL_NULL_U64_PTR ((uint64_t *)NULL) #define

Re: svn commit: r290433 - in head: share/mk sys/conf tools/build/options

2015-11-07 Thread Craig Rodrigues
On Thu, Nov 5, 2015 at 8:45 PM, Bryan Drewery wrote: > Author: bdrewery > Date: Fri Nov 6 04:45:29 2015 > New Revision: 290433 > URL: https://svnweb.freebsd.org/changeset/base/290433 > > Log: > Add a FAST_DEPEND option, off by default, which speeds up the build >

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Bruce Evans
On Sat, 7 Nov 2015, Conrad E. Meyer wrote: Log: Round out SYSCTL macros to the full set of fixed-width types Add S8, S16, S32, and U32 types; add SYSCTL*() macros for them, as well as for the existing 64-bit types. (While SYSCTL*QUAD and UQUAD macros already exist, they do not take the

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Bruce Evans
On Sat, 7 Nov 2015, Svatopluk Kraus wrote: You broke buildkernel. The following patch helps: diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 950e712..a34c890 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -37,6 +37,7 @@ #define _SYS_SYSCTL_H_ #include +#include struct

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Konstantin Belousov
On Sat, Nov 07, 2015 at 09:25:32PM +1100, Bruce Evans wrote: > On Sat, 7 Nov 2015, Svatopluk Kraus wrote: > > > You broke buildkernel. The following patch helps: > > > > diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h > > index 950e712..a34c890 100644 > > --- a/sys/sys/sysctl.h > > +++

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Svatopluk Kraus
You broke buildkernel. The following patch helps: diff --git a/sys/sys/sysctl.h b/sys/sys/sysctl.h index 950e712..a34c890 100644 --- a/sys/sys/sysctl.h +++ b/sys/sys/sysctl.h @@ -37,6 +37,7 @@ #define _SYS_SYSCTL_H_ #include +#include struct thread; /* @@ -949,7 +950,7 @@ extern char

svn commit: r290486 - in head/sys: net netinet netinet6

2015-11-07 Thread Alexander V. Chernikov
Author: melifaro Date: Sat Nov 7 11:12:00 2015 New Revision: 290486 URL: https://svnweb.freebsd.org/changeset/base/290486 Log: Unify setting lladdr for AF_INET[6]. Modified: head/sys/net/if_llatbl.c head/sys/net/if_llatbl.h head/sys/netinet/if_ether.c head/sys/netinet/in.c

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Andrey Chernov
On 07.11.2015 19:22, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Nov 7 16:22:29 2015 > New Revision: 290499 > URL: https://svnweb.freebsd.org/changeset/base/290499 > > Log: > Workaround an issue on i386 to unbreak the build until the real issue is > tracked > down > - large =

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
On Sat, Nov 07, 2015 at 07:49:42PM +0300, Andrey Chernov wrote: > On 07.11.2015 19:22, Baptiste Daroussin wrote: > > Author: bapt > > Date: Sat Nov 7 16:22:29 2015 > > New Revision: 290499 > > URL: https://svnweb.freebsd.org/changeset/base/290499 > > > > Log: > > Workaround an issue on i386 to

svn commit: r290501 - head

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 17:54:51 2015 New Revision: 290501 URL: https://svnweb.freebsd.org/changeset/base/290501 Log: Add a note about the inpact on databases of the changes in collation support Reported by: girgen Modified: head/UPDATING Modified: head/UPDATING

svn commit: r290507 - head/sys/dev/isp

2015-11-07 Thread Alexander Motin
Author: mav Date: Sat Nov 7 19:33:57 2015 New Revision: 290507 URL: https://svnweb.freebsd.org/changeset/base/290507 Log: Rework r290504. Modified: head/sys/dev/isp/isp.c head/sys/dev/isp/isp_freebsd.h Modified: head/sys/dev/isp/isp.c

svn commit: r290508 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 19:54:40 2015 New Revision: 290508 URL: https://svnweb.freebsd.org/changeset/base/290508 Log: Fix an off by one due to bad conversion from avl(3) to tree(3) Readd calloc as it was not the issue just the messenger Submitted by: dim Found by: Address

svn commit: r290512 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 20:31:23 2015 New Revision: 290512 URL: https://svnweb.freebsd.org/changeset/base/290512 Log: Bump warning level Modified: head/usr.bin/localedef/Makefile Modified: head/usr.bin/localedef/Makefile

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
On Sat, Nov 07, 2015 at 05:56:36PM +0100, Baptiste Daroussin wrote: > On Sat, Nov 07, 2015 at 07:49:42PM +0300, Andrey Chernov wrote: > > On 07.11.2015 19:22, Baptiste Daroussin wrote: > > > Author: bapt > > > Date: Sat Nov 7 16:22:29 2015 > > > New Revision: 290499 > > > URL:

svn commit: r290509 - in head/sys: arm/at91 arm/conf conf

2015-11-07 Thread Warner Losh
Author: imp Date: Sat Nov 7 20:02:07 2015 New Revision: 290509 URL: https://svnweb.freebsd.org/changeset/base/290509 Log: Add support for RMII in macb, cribbed slightly from the ate driver. This is taken from the MAC at boot, but can be overridden with 'options AT91_MACB_USE_RMII'.

svn commit: r290511 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 20:29:23 2015 New Revision: 290511 URL: https://svnweb.freebsd.org/changeset/base/290511 Log: Use const where needed instead of using pragmas to work around the warnings Modified: head/usr.bin/localedef/charmap.c head/usr.bin/localedef/localedef.h Modified:

svn commit: r290513 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 20:36:54 2015 New Revision: 290513 URL: https://svnweb.freebsd.org/changeset/base/290513 Log: Improve localedef(1) manpage Obtained from:DragonflyBSD Modified: head/usr.bin/localedef/localedef.1 Modified: head/usr.bin/localedef/localedef.1

Re: svn commit: r290513 - head/usr.bin/localedef

2015-11-07 Thread Bryan Drewery
On 11/7/15 12:36 PM, Baptiste Daroussin wrote: > first appeared in > -.Dx It might be more relevant what *FreeBSD* version it appeared in rather than DragonFly here. > -4.4. It was ported from Illumos from the point > +.Dx 4.3 . > +It was ported from Illumos from the point This reads very

svn commit: r290514 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 21:07:40 2015 New Revision: 290514 URL: https://svnweb.freebsd.org/changeset/base/290514 Log: Rewrite the histoty part Fix information about "Dragonfly-style" format which on freebsd is named BSD-style Noted by: bdrewery Modified:

Re: svn commit: r289834 - head/sys/x86/x86

2015-11-07 Thread Oliver Pinter
On Mon, Nov 2, 2015 at 6:02 PM, Roger Pau Monné wrote: > El 02/11/15 a les 17.41, Oliver Pinter ha escrit: >> Okay, the server survived a full buildworld + installer generation >> with the new patch. > > Thanks for the heads up! I will wait a couple more days and then commit

Re: svn commit: r290505 - in head/sys: kern sys

2015-11-07 Thread NGie Cooper
> On Nov 7, 2015, at 11:14, Bruce Evans wrote: > > On Sat, 7 Nov 2015, Conrad E. Meyer wrote: > >> Log: >> Flesh out sysctl types further (follow-up of r290475) >> >> Use the right intmax_t type instead of intptr_t in a few remaining >> places. >> >> Add support for

svn commit: r290510 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 20:27:31 2015 New Revision: 290510 URL: https://svnweb.freebsd.org/changeset/base/290510 Log: Make bsd declaration static Modified: head/usr.bin/localedef/localedef.c Modified: head/usr.bin/localedef/localedef.c

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Conrad Meyer
Sorry about that — Ravi and I missed this. I see Konstantin has since fixed it (thanks!). There is also the intptr_t in SYSCTL_HANDLER_ARGS and oid_arg2 in struct sysctl_oid remaining. Best, Conrad On Sat, Nov 7, 2015 at 12:37 AM, Svatopluk Kraus wrote: > You broke

svn commit: r290515 - head/etc/defaults

2015-11-07 Thread Jilles Tjoelker
Author: jilles Date: Sat Nov 7 22:06:49 2015 New Revision: 290515 URL: https://svnweb.freebsd.org/changeset/base/290515 Log: periodic: Fix backwards compatibility for daily_status_security_* vars. Most daily_status_security_* variables in periodic.conf were changed to security_status_*

svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 16:22:29 2015 New Revision: 290499 URL: https://svnweb.freebsd.org/changeset/base/290499 Log: Workaround an issue on i386 to unbreak the build until the real issue is tracked down Modified: head/usr.bin/localedef/collate.c Modified:

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Sergey Kandaurov
7 нояб. 2015 г. 7:26 PM пользователь "Joerg Sonnenberger" < jo...@britannica.bec.de> написал: > > On Sat, Nov 07, 2015 at 04:22:29PM +, Baptiste Daroussin wrote: > > Author: bapt > > Date: Sat Nov 7 16:22:29 2015 > > New Revision: 290499 > > URL:

svn commit: r290500 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 16:45:51 2015 New Revision: 290500 URL: https://svnweb.freebsd.org/changeset/base/290500 Log: Run memset only after having checked the return of malloc Submitted by: pluknet Modified: head/usr.bin/localedef/collate.c Modified:

Re: svn commit: r290475 - in head: share/man/man9 sys/kern sys/sys

2015-11-07 Thread Conrad Meyer
Can do — fixed in r290505. Thanks, Conrad On Sat, Nov 7, 2015 at 3:20 AM, Hans Petter Selasky wrote: > On 11/07/15 09:37, Svatopluk Kraus wrote: >> >> +#defineSYSCTL_NULL_U64_PTR ((unsigned *)NULL) > > > Hi Conrad, > > All the NULL macros must have correct type

Re: svn commit: r290505 - in head/sys: kern sys

2015-11-07 Thread Bruce Evans
On Sat, 7 Nov 2015, Conrad E. Meyer wrote: Log: Flesh out sysctl types further (follow-up of r290475) Use the right intmax_t type instead of intptr_t in a few remaining places. Add support for CTLFLAG_TUN for the new fixed with types. Bruce will be upset that the new handlers silently

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Joerg Sonnenberger
On Sat, Nov 07, 2015 at 04:22:29PM +, Baptiste Daroussin wrote: > Author: bapt > Date: Sat Nov 7 16:22:29 2015 > New Revision: 290499 > URL: https://svnweb.freebsd.org/changeset/base/290499 > > Log: > Workaround an issue on i386 to unbreak the build until the real issue is > tracked >

svn commit: r290505 - in head/sys: kern sys

2015-11-07 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 18:26:32 2015 New Revision: 290505 URL: https://svnweb.freebsd.org/changeset/base/290505 Log: Flesh out sysctl types further (follow-up of r290475) Use the right intmax_t type instead of intptr_t in a few remaining places. Add support for CTLFLAG_TUN for

svn commit: r290504 - head/sys/dev/isp

2015-11-07 Thread Alexander Motin
Author: mav Date: Sat Nov 7 18:26:02 2015 New Revision: 290504 URL: https://svnweb.freebsd.org/changeset/base/290504 Log: Make ISP_SLEEP() really sleep instead of spinning. While there, simplify the wait logic. Modified: head/sys/dev/isp/isp.c head/sys/dev/isp/isp_freebsd.h

svn commit: r290506 - head/sys/dev/isp

2015-11-07 Thread Alexander Motin
Author: mav Date: Sat Nov 7 19:03:47 2015 New Revision: 290506 URL: https://svnweb.freebsd.org/changeset/base/290506 Log: Specify VP when sending a marker. Modified: head/sys/dev/isp/isp.c Modified: head/sys/dev/isp/isp.c

Re: svn commit: r290499 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
On Sat, Nov 07, 2015 at 05:26:17PM +0100, Joerg Sonnenberger wrote: > On Sat, Nov 07, 2015 at 04:22:29PM +, Baptiste Daroussin wrote: > > Author: bapt > > Date: Sat Nov 7 16:22:29 2015 > > New Revision: 290499 > > URL: https://svnweb.freebsd.org/changeset/base/290499 > > > > Log: > >

Re: svn commit: r290493 - head/sys/sys

2015-11-07 Thread Conrad Meyer
Missed that instance of intptr_t, sorry. Thanks for fixing it. I think we should also s/intptr_t/intmax_t/ in SYSCTL_HANDLER_ARGS. Thanks, Conrad On Sat, Nov 7, 2015 at 4:33 AM, Konstantin Belousov wrote: > Author: kib > Date: Sat Nov 7 12:33:30 2015 > New Revision: 290493

svn commit: r290520 - head/sbin/savecore

2015-11-07 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 23:27:03 2015 New Revision: 290520 URL: https://svnweb.freebsd.org/changeset/base/290520 Log: savecore(8): Be quiet unless the user asks for verbose Make savecore(8) more suitable for init-time scripts; be quiet by default. Sponsored by: EMC / Isilon

Re: svn commit: r290522 - head/share/timedef

2015-11-07 Thread Baptiste Daroussin
On Sat, Nov 07, 2015 at 11:54:14PM +, Hajimu UMEMOTO wrote: > Author: ume > Date: Sat Nov 7 23:54:14 2015 > New Revision: 290522 > URL: https://svnweb.freebsd.org/changeset/base/290522 > > Log: > Fix alignment of the short month names for CJK locales, > as far as I could edit them. >

svn commit: r290525 - in head: share/mk sys/conf

2015-11-07 Thread Bryan Drewery
Author: bdrewery Date: Sun Nov 8 00:50:13 2015 New Revision: 290525 URL: https://svnweb.freebsd.org/changeset/base/290525 Log: FAST_DEPEND: Don't enable when .MAKE.MODE=meta. This is because the .meta files generated from filemon already contain a list of all files read to generate the

svn commit: r290526 - in head: . share/mk sys/conf tools/build/options

2015-11-07 Thread Bryan Drewery
Author: bdrewery Date: Sun Nov 8 00:50:18 2015 New Revision: 290526 URL: https://svnweb.freebsd.org/changeset/base/290526 Log: Add built-in ccache build support via WITH_CCACHE_BUILD option. ccache is mostly beneficial for frequent builds where -DNO_CLEAN is not used to achieve a safe

svn commit: r290523 - head

2015-11-07 Thread Bryan Drewery
Author: bdrewery Date: Sun Nov 8 00:50:06 2015 New Revision: 290523 URL: https://svnweb.freebsd.org/changeset/base/290523 Log: Add a hack to workaround ZSH as BUILDENV_SHELL breaking CPUTYPE. ZSH considers CPUTYPE a magic variable that will be the output of 'uname -m' even if already

svn commit: r290527 - in stable/9: sbin/camcontrol share/misc

2015-11-07 Thread Garrett Cooper
Author: ngie Date: Sun Nov 8 00:50:46 2015 New Revision: 290527 URL: https://svnweb.freebsd.org/changeset/base/290527 Log: MFstable/10 r290385: MFC r289913,r289916: r289913: Use 't' (bits) not 'i' (bytes) for describing MRIE (aka "Method of Reporting Informational Exceptions")

svn commit: r290524 - in head: share/mk sys/conf

2015-11-07 Thread Bryan Drewery
Author: bdrewery Date: Sun Nov 8 00:50:09 2015 New Revision: 290524 URL: https://svnweb.freebsd.org/changeset/base/290524 Log: FAST_DEPEND: Don't include depend files when using 'make -V'. This is especially noticeable in the kernel obj directory since it includes so many files.

svn commit: r290529 - head/sys/vm

2015-11-07 Thread Mark Johnston
Author: markj Date: Sun Nov 8 01:36:18 2015 New Revision: 290529 URL: https://svnweb.freebsd.org/changeset/base/290529 Log: Ensure that deactivated pages that are not expected to be reused are reclaimed in FIFO order by the pagedaemon. Previously we would enqueue such pages at the head of

svn commit: r290530 - in head/sys: fs/procfs kern sys

2015-11-07 Thread Mark Johnston
Author: markj Date: Sun Nov 8 01:38:56 2015 New Revision: 290530 URL: https://svnweb.freebsd.org/changeset/base/290530 Log: - Consistently use PROC_ASSERT_HELD() to verify that a process' hold count is non-zero. - Include the process address in the PROC_ASSERT_HELD() and

svn commit: r290516 - head/sys/arm/at91

2015-11-07 Thread Warner Losh
Author: imp Date: Sat Nov 7 22:52:06 2015 New Revision: 290516 URL: https://svnweb.freebsd.org/changeset/base/290516 Log: Implement the phy-mode property for ate and macb. If it is set to "rmii", use rmii mode for the MAC, otherwise use MII mode. The code is somewhat duplicated between

svn commit: r290518 - head/sys/arm/at91

2015-11-07 Thread Warner Losh
Author: imp Date: Sat Nov 7 22:58:56 2015 New Revision: 290518 URL: https://svnweb.freebsd.org/changeset/base/290518 Log: Correct !FDT case with proper name. Modified: head/sys/arm/at91/if_ate.c Modified: head/sys/arm/at91/if_ate.c

svn commit: r290517 - head/usr.bin/localedef

2015-11-07 Thread Baptiste Daroussin
Author: bapt Date: Sat Nov 7 22:57:00 2015 New Revision: 290517 URL: https://svnweb.freebsd.org/changeset/base/290517 Log: Fix build of localedef(1) on arm where wchar_t is an unsigned int Modified: head/usr.bin/localedef/charmap.c head/usr.bin/localedef/ctype.c

svn commit: r290521 - head/sys/netpfil/pf

2015-11-07 Thread Kristof Provost
Author: kp Date: Sat Nov 7 23:51:42 2015 New Revision: 290521 URL: https://svnweb.freebsd.org/changeset/base/290521 Log: pf: Fix broken rule skip calculation r289932 accidentally broke the rule skip calculation. The address family argument to PF_ANEQ() is now important, and because it

Re: svn commit: r290522 - head/share/timedef

2015-11-07 Thread Bryan Drewery
On 11/7/2015 4:08 PM, Baptiste Daroussin wrote: > On Sat, Nov 07, 2015 at 11:54:14PM +, Hajimu UMEMOTO wrote: >> Author: ume >> Date: Sat Nov 7 23:54:14 2015 >> New Revision: 290522 >> URL: https://svnweb.freebsd.org/changeset/base/290522 >> >> Log: >> Fix alignment of the short month names

svn commit: r290532 - in head: lib/libc/tests/locale tools/regression/lib/libc/locale

2015-11-07 Thread Garrett Cooper
Author: ngie Date: Sun Nov 8 02:06:17 2015 New Revision: 290532 URL: https://svnweb.freebsd.org/changeset/base/290532 Log: Integrate tools/regression/lib/libc/locale into the FreeBSD test suite as lib/libc/tests/locale MFC after: 1 week Sponsored by: EMC / Isilon Storage Division

svn commit: r290519 - head/sys/dev/hptmv

2015-11-07 Thread Conrad E. Meyer
Author: cem Date: Sat Nov 7 23:05:23 2015 New Revision: 290519 URL: https://svnweb.freebsd.org/changeset/base/290519 Log: hptmv(4): Fix broken sysctl(9) API assumptions Sponsored by: EMC / Isilon Storage Division Modified: head/sys/dev/hptmv/hptproc.c Modified:

svn commit: r290522 - head/share/timedef

2015-11-07 Thread Hajimu UMEMOTO
Author: ume Date: Sat Nov 7 23:54:14 2015 New Revision: 290522 URL: https://svnweb.freebsd.org/changeset/base/290522 Log: Fix alignment of the short month names for CJK locales, as far as I could edit them. Modified: head/share/timedef/ja_JP.SJIS.src head/share/timedef/ja_JP.UTF-8.src

svn commit: r290528 - head/share/man/man5

2015-11-07 Thread Bryan Drewery
Author: bdrewery Date: Sun Nov 8 00:54:41 2015 New Revision: 290528 URL: https://svnweb.freebsd.org/changeset/base/290528 Log: Regen after r290526 for WITH_CCACHE_BUILD. Modified: head/share/man/man5/src.conf.5 Modified: head/share/man/man5/src.conf.5

svn commit: r290531 - head/share/man/man9

2015-11-07 Thread Mark Johnston
Author: markj Date: Sun Nov 8 01:41:44 2015 New Revision: 290531 URL: https://svnweb.freebsd.org/changeset/base/290531 Log: Add a manual page for PHOLD() and friends. MFC after:1 week Added: head/share/man/man9/PHOLD.9 (contents, props changed) Modified:

Re: svn commit: r290531 - head/share/man/man9

2015-11-07 Thread Bryan Drewery
Thanks for this! Regards, Bryan Drewery > On Nov 7, 2015, at 17:41, Mark Johnston wrote: > > Author: markj > Date: Sun Nov 8 01:41:44 2015 > New Revision: 290531 > URL: https://svnweb.freebsd.org/changeset/base/290531 > > Log: > Add a manual page for PHOLD() and friends.

svn commit: r290534 - head/sys/contrib/vchiq/interface/compat

2015-11-07 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 8 03:53:31 2015 New Revision: 290534 URL: https://svnweb.freebsd.org/changeset/base/290534 Log: Fix locking for VCHI driver by matching sleepable/non-sleepable APIs: - Emulate Linux mutex API using sx(9) locks with only exclusive operations instead of

svn commit: r290535 - head/sys/contrib/vchiq/interface/vchiq_arm

2015-11-07 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 8 03:54:15 2015 New Revision: 290535 URL: https://svnweb.freebsd.org/changeset/base/290535 Log: vchiq interrupt is MP safe, add respective flag to bus_setup_intr Modified: head/sys/contrib/vchiq/interface/vchiq_arm/vchiq_kmod.c Modified:

svn commit: r290533 - head/sys/arm/broadcom/bcm2835

2015-11-07 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 8 03:34:19 2015 New Revision: 290533 URL: https://svnweb.freebsd.org/changeset/base/290533 Log: - Replace semaphore-base locking with sleep/wait synchronization: sema_trywait/sema_timedwait can't be used while holding non-sleepable mutex - Fix

svn commit: r290536 - head/sys/arm/broadcom/bcm2835

2015-11-07 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sun Nov 8 04:15:52 2015 New Revision: 290536 URL: https://svnweb.freebsd.org/changeset/base/290536 Log: Fix some of WITNESS complaints and bootup lock by removing msg_avail condvar/mutex. They're basically no-op because error is not propagated up the call chain. We

svn commit: r290537 - in head: lib/libc/tests/stdio tools/regression/lib/libc/stdio

2015-11-07 Thread Garrett Cooper
Author: ngie Date: Sun Nov 8 06:37:50 2015 New Revision: 290537 URL: https://svnweb.freebsd.org/changeset/base/290537 Log: Integrate tools/regression/lib/libc/stdio into the FreeBSD test suite as lib/libc/tests/stdio - Fix some whitespace - Convert the testcases to ATF - Convert

svn commit: r290538 - in head: lib/libc/tests/stdlib tools/regression/lib/libc/stdlib

2015-11-07 Thread Garrett Cooper
Author: ngie Date: Sun Nov 8 07:03:17 2015 New Revision: 290538 URL: https://svnweb.freebsd.org/changeset/base/290538 Log: Integrate tools/regression/lib/libc/stdlib into the FreeBSD test suite as lib/libc/tests/stdlib - Make the code a bit more style(9) compliant - Convert a

svn commit: r290539 - in head: lib/libc/tests/string tools/regression/lib/libc/string

2015-11-07 Thread Garrett Cooper
Author: ngie Date: Sun Nov 8 07:53:31 2015 New Revision: 290539 URL: https://svnweb.freebsd.org/changeset/base/290539 Log: Integrate tools/regression/lib/libc/string into the FreeBSD test suite as lib/libc/tests/string MFC after: 1 week Sponsored by: EMC / Isilon Storage Division