svn commit: r260160 - head/sys/dev/vt

2014-01-01 Thread Ed Maste
Author: emaste Date: Wed Jan 1 19:38:15 2014 New Revision: 260160 URL: http://svnweb.freebsd.org/changeset/base/260160 Log: Increase vt(9) max glyph data to 1MB for CJK fonts with many glyphs Sponsored by: The FreeBSD Foundation Modified: head/sys/dev/vt/vt_font.c Modified: head/sys/de

svn commit: r260161 - in head/sys/arm: arm include

2014-01-01 Thread Zbigniew Bodek
Author: zbb Date: Wed Jan 1 20:03:48 2014 New Revision: 260161 URL: http://svnweb.freebsd.org/changeset/base/260161 Log: Add polarity and level support to ARM GIC Add suport for setting triggering level and polarity in GIC. New function pointer was added to nexus which corresponds to t

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

2014-01-01 Thread Ed Maste
Author: emaste Date: Wed Jan 1 20:04:43 2014 New Revision: 260162 URL: http://svnweb.freebsd.org/changeset/base/260162 Log: Remove TNF license clauses 3 and 4, matching upstream Approved by raj@ (Semihalf has a copyright statement in the license block as well). Modified: head/sys/powe

svn commit: r260163 - head/sys/dev/ahci

2014-01-01 Thread Zbigniew Bodek
Author: zbb Date: Wed Jan 1 20:18:03 2014 New Revision: 260163 URL: http://svnweb.freebsd.org/changeset/base/260163 Log: Do not attach to PCI bridges in AHCI driver Some vendors use the same VID:PID combination in AHCI and PCI bridge cards Submitted by: Wojciech Macek Obtained from

svn commit: r260165 - head/sys/dev/ahci

2014-01-01 Thread Zbigniew Bodek
Author: zbb Date: Wed Jan 1 20:26:08 2014 New Revision: 260165 URL: http://svnweb.freebsd.org/changeset/base/260165 Log: Use only mapped BIOs on ARM Using unmapped BIOs causes failure inside bus_dmamap_sync, since this function requires valid MVA address, which is not present if mappin

Re: svn commit: r260165 - head/sys/dev/ahci

2014-01-01 Thread Konstantin Belousov
On Wed, Jan 01, 2014 at 08:26:08PM +, Zbigniew Bodek wrote: > Author: zbb > Date: Wed Jan 1 20:26:08 2014 > New Revision: 260165 > URL: http://svnweb.freebsd.org/changeset/base/260165 > > Log: > Use only mapped BIOs on ARM > > Using unmapped BIOs causes failure inside bus_dmamap_sync,

svn commit: r260166 - head/sys/arm/versatile

2014-01-01 Thread Zbigniew Bodek
Author: zbb Date: Wed Jan 1 20:35:38 2014 New Revision: 260166 URL: http://svnweb.freebsd.org/changeset/base/260166 Log: Fix race condition in DELAY for SP804 timer. Fix race condition in DELAY function: sc->tc was not initialized yet when time_counter pointer was set, what resulted in N

svn commit: r260167 - in head: sys/amd64/include sys/amd64/vmm/intel usr.sbin/bhyve usr.sbin/bhyvectl

2014-01-01 Thread Neel Natu
Author: neel Date: Wed Jan 1 21:17:08 2014 New Revision: 260167 URL: http://svnweb.freebsd.org/changeset/base/260167 Log: Restructure the VMX code to enter and exit the guest. In large part this change hides the setjmp/longjmp semantics of VM enter/exit. vmx_enter_guest() is used to enter

svn commit: r260169 - head/sys/netgraph/netflow

2014-01-01 Thread Gleb Smirnoff
Author: glebius Date: Wed Jan 1 21:48:04 2014 New Revision: 260169 URL: http://svnweb.freebsd.org/changeset/base/260169 Log: - Use counter(9) for node stats updated at a high rate. - Use simple ++ for rare events. - Use uma_zone_get_cur() to get knowledge about space left in cache. - Conv

svn commit: r260175 - head/sys/ia64/include

2014-01-01 Thread Marcel Moolenaar
Author: marcel Date: Wed Jan 1 22:51:19 2014 New Revision: 260175 URL: http://svnweb.freebsd.org/changeset/base/260175 Log: Implement atomic_swap_. The operation was documented and implemented partially (both from a type and architecture perspective) on 2013-08-21 and got used in ZFS with

Re: svn commit: r260151 - head/sys/netinet6

2014-01-01 Thread Andrey V. Elsukov
On 01.01.2014 04:56, Adrian Chadd wrote: > Author: adrian > Date: Wed Jan 1 00:56:26 2014 > New Revision: 260151 > URL: http://svnweb.freebsd.org/changeset/base/260151 > > Log: > Use an RLOCK here instead of an RWLOCK - matching all the other calls > to lla_lookup(). > > This drastically

svn commit: r260180 - head/sys/dev/nand

2014-01-01 Thread Warner Losh
Author: imp Date: Thu Jan 2 02:20:10 2014 New Revision: 260180 URL: http://svnweb.freebsd.org/changeset/base/260180 Log: Make the comment match the code. Not sure why we calculate it this weird way, but didn't change that... Modified: head/sys/dev/nand/nandbus.c Modified: head/sys/dev/nan

Re: svn commit: r260151 - head/sys/netinet6

2014-01-01 Thread Adrian Chadd
Why not? Adrian On Jan 1, 2014 6:13 PM, "Andrey V. Elsukov" wrote: > On 01.01.2014 04:56, Adrian Chadd wrote: > > Author: adrian > > Date: Wed Jan 1 00:56:26 2014 > > New Revision: 260151 > > URL: http://svnweb.freebsd.org/changeset/base/260151 > > > > Log: > > Use an RLOCK here instead of an

svn commit: r260181 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2014-01-01 Thread Xin LI
Author: delphij Date: Thu Jan 2 03:24:44 2014 New Revision: 260181 URL: http://svnweb.freebsd.org/changeset/base/260181 Log: Fix build on platforms where atomic_swap_64 is not available. Modified: head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/zfeature.c Modified: head/sys/cddl/contrib

Re: svn commit: r260151 - head/sys/netinet6

2014-01-01 Thread Andrey V. Elsukov
On 02.01.2014 06:51, Adrian Chadd wrote: > Why not? Hi, Adrian, now, after a deeper look I think it is ok. Sorry. Also there are several places where wlock can be changed to rlock. -- WBR, Andrey V. Elsukov ___ svn-src-head@freebsd.org mailing list ht

Re: svn commit: r260151 - head/sys/netinet6

2014-01-01 Thread Adrian Chadd
On 1 January 2014 21:53, Andrey V. Elsukov wrote: > On 02.01.2014 06:51, Adrian Chadd wrote: >> Why not? > > Hi, Adrian, > > now, after a deeper look I think it is ok. Sorry. > Also there are several places where wlock can be changed to rlock. Cool commit away! Thanks! -a

Re: svn commit: r255219 - in head: contrib/tcpdump lib/libc lib/libc/capability lib/libc/include lib/libc/sys lib/libprocstat sbin/dhclient sbin/hastd sys/amd64/linux32 sys/bsm sys/cddl/compat/opensol

2014-01-01 Thread Stanislav Sedov
On Sep 4, 2013, at 5:09 PM, Pawel Jakub Dawidek wrote: > This commit also breaks compatibility with some existing Capsicum system > calls, > but I see no other way to do that. This should be fine as Capsicum is still > experimental and this change is not going to 9.x. Hi! This change also

svn commit: r260183 - in head: cddl/contrib/opensolaris/cmd/zfs cddl/contrib/opensolaris/cmd/zpool cddl/contrib/opensolaris/lib/libzfs/common cddl/contrib/opensolaris/lib/libzfs_core/common cddl/co...

2014-01-01 Thread Xin LI
Author: delphij Date: Thu Jan 2 07:34:36 2014 New Revision: 260183 URL: http://svnweb.freebsd.org/changeset/base/260183 Log: MFV r260154 + 260182: 4369 implement zfs bookmarks 4368 zfs send filesystems from readonly pools Illumos/illumos-gate@78f171005391b928aaf1642b3206c534ed644332