CVS commit: src/sys/dev/mii

2012-10-18 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Oct 18 08:22:37 UTC 2012

Modified Files:
src/sys/dev/mii: igphy.c

Log Message:
Style fix. No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.21 -r1.22 src/sys/dev/mii/igphy.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/zoneinfo

2012-10-18 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Thu Oct 18 08:47:29 UTC 2012

Update of /cvsroot/src/share/zoneinfo
In directory ivanova.netbsd.org:/tmp/cvs-serv8719

Log Message:
Import tzdata2012g from ftp://ftp.iana.org/tz/releases/tzdata2012g.tar.gz

Changes from tzdata2012f to tzdata2012g:

Samoa fall 2012 and later.  (Thanks to Nicholas Pereira
and Robert Elz.)

Palestine fall 2012.  (Thanks to Steffen Thorsen.)

In addition to those changes, the tzdata distribution now includes
a copy of the Makefile from the tzcode distribution.  NetBSD's
src/share/zoneinfo/Makefile is completely different from the Makefile
that is now included in the tzdata distribution.

Status:

Vendor Tag: ADO
Release Tags:   TZDATA2012G

U src/share/zoneinfo/antarctica
C src/share/zoneinfo/Makefile
U src/share/zoneinfo/africa
C src/share/zoneinfo/australasia
U src/share/zoneinfo/asia
U src/share/zoneinfo/northamerica
U src/share/zoneinfo/europe
U src/share/zoneinfo/yearistype.sh
U src/share/zoneinfo/southamerica
U src/share/zoneinfo/pacificnew
U src/share/zoneinfo/etcetera
U src/share/zoneinfo/backward
U src/share/zoneinfo/systemv
U src/share/zoneinfo/factory
U src/share/zoneinfo/solar87
U src/share/zoneinfo/solar88
U src/share/zoneinfo/solar89
U src/share/zoneinfo/iso3166.tab
U src/share/zoneinfo/zone.tab
U src/share/zoneinfo/leapseconds

2 conflicts created by this import.
Use the following command to help the merge:

cvs checkout -jADO:yesterday -jADO src/share/zoneinfo



CVS commit: src/share/zoneinfo

2012-10-18 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Thu Oct 18 08:50:32 UTC 2012

Modified Files:
src/share/zoneinfo: australasia

Log Message:
Merge tzdata2012g from ftp://ftp.iana.org/tz/releases/tzdata2012g.tar.gz

Changes from tzdata2012f to tzdata2012g:

Samoa fall 2012 and later.  (Thanks to Nicholas Pereira
and Robert Elz.)

Palestine fall 2012.  (Thanks to Steffen Thorsen.)


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/share/zoneinfo/australasia

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2012-10-18 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Thu Oct 18 08:57:26 UTC 2012

Modified Files:
src/doc: CHANGES

Log Message:
zoneinfo: Import tzdata2012g. [apb 20121018]


To generate a diff of this commit:
cvs rdiff -u -r1.1749 -r1.1750 src/doc/CHANGES

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/doc

2012-10-18 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Thu Oct 18 08:59:00 UTC 2012

Modified Files:
src/doc: 3RDPARTY

Log Message:
tzcode2012g and tzdata202g have been released.  We have updated
to tzdata2012g.

Also fix the upstream Maintainer; Paul Eggert has been doing this
job for several months.


To generate a diff of this commit:
cvs rdiff -u -r1.974 -r1.975 src/doc/3RDPARTY

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2012-10-18 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Oct 18 09:41:24 UTC 2012

Modified Files:
src/share/man/man4: uftdi.4

Log Message:
Add some deivces.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/share/man/man4/uftdi.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/dev/pci

2012-10-18 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Oct 18 10:41:45 UTC 2012

Modified Files:
src/sys/dev/pci: pucdata.c

Log Message:
- Indent.
- Fix some product names or device names.


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/dev/pci/pucdata.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/cddl/osnet

2012-10-18 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Thu Oct 18 14:22:58 UTC 2012

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_vnops.c
src/external/cddl/osnet/sys/kern: policy.c
src/external/cddl/osnet/sys/sys: policy.h

Log Message:
Take a first whack at making zfs permissions work.

zfs_access uses secpolicy_vnode_access, so it makes no sense for the
latter to call VOP_ACCESS!

Everything seems to return EACCES instead of EPERM, probably because
that's what kauth returns.  This should be fixed, but that may
require some nontrivial surgery to zfs's calls to secpolicy_*, which
is where kauth gets involved.

This commit imports some code from illumos to implement the routine
secpolicy_vnode_setattr.  This shouldn't be outside dist/, but for
now it is expedient to do so.  We ought to fix that, along with all
the other CDDL code outside dist/, when we next import a newer
version of zfs.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_vnops.c
cvs rdiff -u -r1.3 -r1.4 src/external/cddl/osnet/sys/kern/policy.c
cvs rdiff -u -r1.5 -r1.6 src/external/cddl/osnet/sys/sys/policy.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/external/cddl/osnet/dist/uts/common/fs/zfs

2012-10-18 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Thu Oct 18 14:29:44 UTC 2012

Modified Files:
src/external/cddl/osnet/dist/uts/common/fs/zfs: zfs_dir.c

Log Message:
Back out accidental commit of errno kludge for rmdir(".") &c.

Solaris returns EEXIST, whereas we want to return ENOTEMPTY (POSIX
allows both), but this got included in an unrelated commit and should
be separated into a common commit for other related error code fixes.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 \
src/external/cddl/osnet/dist/uts/common/fs/zfs/zfs_dir.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src

2012-10-18 Thread Alan Barrett
Module Name:src
Committed By:   apb
Date:   Thu Oct 18 16:15:29 UTC 2012

Modified Files:
src: build.sh

Log Message:
Print the value of MAKECONF.


To generate a diff of this commit:
cvs rdiff -u -r1.256 -r1.257 src/build.sh

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/share/man/man4

2012-10-18 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Thu Oct 18 17:27:36 UTC 2012

Modified Files:
src/share/man/man4: puc.4

Log Message:
Update device list


To generate a diff of this commit:
cvs rdiff -u -r1.36 -r1.37 src/share/man/man4/puc.4

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/kern

2012-10-18 Thread Lars Heidieker
Module Name:src
Committed By:   para
Date:   Thu Oct 18 19:33:38 UTC 2012

Modified Files:
src/sys/kern: uipc_mbuf.c

Log Message:
bring comment up to reality

kmem_map => kmem_arena


To generate a diff of this commit:
cvs rdiff -u -r1.146 -r1.147 src/sys/kern/uipc_mbuf.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/kern

2012-10-18 Thread Taylor R Campbell
Module Name:src
Committed By:   riastradh
Date:   Fri Oct 19 02:07:23 UTC 2012

Modified Files:
src/sys/kern: vfs_syscalls.c

Log Message:
No, we can't elide the fs-wide rename lock for same-directory rename.

rename("a/b", "a/c") and rename("a/c/x", "a/b/y") will deadlock.

Darn.


To generate a diff of this commit:
cvs rdiff -u -r1.458 -r1.459 src/sys/kern/vfs_syscalls.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/fstat

2012-10-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 19 02:11:25 UTC 2012

Modified Files:
src/usr.bin/fstat: fstat.c

Log Message:
more info for unix sockets. XXX: chroot handling


To generate a diff of this commit:
cvs rdiff -u -r1.97 -r1.98 src/usr.bin/fstat/fstat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/usr.bin/fstat

2012-10-18 Thread Christos Zoulas
Module Name:src
Committed By:   christos
Date:   Fri Oct 19 02:49:52 UTC 2012

Modified Files:
src/usr.bin/fstat: fstat.c

Log Message:
print major device numbers symbolically from kinfo_drivers


To generate a diff of this commit:
cvs rdiff -u -r1.98 -r1.99 src/usr.bin/fstat/fstat.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.



CVS commit: src/sys/arch/arm/marvell

2012-10-18 Thread SAITOH Masanobu
Module Name:src
Committed By:   msaitoh
Date:   Fri Oct 19 06:14:44 UTC 2012

Modified Files:
src/sys/arch/arm/marvell: mvsoc.c mvsocreg.h

Log Message:
Add CLKGATING_BIT for some devices. This change prevent some boards
that a device's clock is stopped from hangup.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/arch/arm/marvell/mvsoc.c
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/marvell/mvsocreg.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.