CVS commit: [nick-nhusb] src/sys/dev/usb

2015-02-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri Feb 20 09:17:17 UTC 2015

Modified Files:
src/sys/dev/usb [nick-nhusb]: uhci.c

Log Message:
Convert to USBHIST


To generate a diff of this commit:
cvs rdiff -u -r1.264.4.20 -r1.264.4.21 src/sys/dev/usb/uhci.c

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



CVS commit: [nick-nhusb] src/sys/dev/usb

2015-02-20 Thread Nick Hudson
Module Name:src
Committed By:   skrll
Date:   Fri Feb 20 09:16:49 UTC 2015

Modified Files:
src/sys/dev/usb [nick-nhusb]: uhci.c

Log Message:
KNF


To generate a diff of this commit:
cvs rdiff -u -r1.264.4.19 -r1.264.4.20 src/sys/dev/usb/uhci.c

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



CVS commit: src/sys/dev/usb

2015-02-20 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Fri Feb 20 14:49:49 UTC 2015

Modified Files:
src/sys/dev/usb: usbdevs.h usbdevs_data.h

Log Message:
regen

> PR/49681: Support BUFFALO PC-OP-RS1


To generate a diff of this commit:
cvs rdiff -u -r1.681 -r1.682 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.682 -r1.683 src/sys/dev/usb/usbdevs_data.h

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



CVS commit: src/sys/dev/usb

2015-02-20 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Fri Feb 20 14:48:55 UTC 2015

Modified Files:
src/sys/dev/usb: usbdevs

Log Message:
PR/49681: Support BUFFALO PC-OP-RS1


To generate a diff of this commit:
cvs rdiff -u -r1.689 -r1.690 src/sys/dev/usb/usbdevs

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



CVS commit: src/sys/dev/usb

2015-02-20 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Fri Feb 20 14:50:53 UTC 2015

Modified Files:
src/sys/dev/usb: uftdi.c

Log Message:
PR/49681: Support BUFFALO PC-OP-RS1


To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/sys/dev/usb/uftdi.c

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

2015-02-20 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Fri Feb 20 15:03:53 UTC 2015

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

Log Message:
Don't return success when hw is not ready.


To generate a diff of this commit:
cvs rdiff -u -r1.9 -r1.10 src/sys/dev/pci/if_iwm.c

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

2015-02-20 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Fri Feb 20 16:16:06 UTC 2015

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

Log Message:
Make the iwm(4) hardware receive filter pass multicast traffic from OpenBSD.
Fixes inet6 autoconf, for example.


To generate a diff of this commit:
cvs rdiff -u -r1.10 -r1.11 src/sys/dev/pci/if_iwm.c

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



CVS commit: src/sys/fs/ntfs

2015-02-20 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 20 17:08:13 UTC 2015

Modified Files:
src/sys/fs/ntfs: ntfs_compr.c ntfs_conv.c ntfs_ihash.c ntfs_subr.c
ntfs_vfsops.c

Log Message:
Cosmetic changes:
 - add a ffs-like ntfs_superblock_validate function
 - remove unused includes
 - fix some comments
 - KNF

No functional change.


To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/fs/ntfs/ntfs_compr.c
cvs rdiff -u -r1.9 -r1.10 src/sys/fs/ntfs/ntfs_conv.c
cvs rdiff -u -r1.10 -r1.11 src/sys/fs/ntfs/ntfs_ihash.c
cvs rdiff -u -r1.59 -r1.60 src/sys/fs/ntfs/ntfs_subr.c
cvs rdiff -u -r1.102 -r1.103 src/sys/fs/ntfs/ntfs_vfsops.c

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



CVS commit: src/sys/ufs/ffs

2015-02-20 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 20 17:10:17 UTC 2015

Modified Files:
src/sys/ufs/ffs: ffs_vfsops.c

Log Message:
Style, and fix a DPRINTF

No functional change


To generate a diff of this commit:
cvs rdiff -u -r1.316 -r1.317 src/sys/ufs/ffs/ffs_vfsops.c

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



CVS commit: src/sys/ufs/ext2fs

2015-02-20 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Fri Feb 20 17:44:54 UTC 2015

Modified Files:
src/sys/ufs/ext2fs: ext2fs_vfsops.c

Log Message:
Several fixes:
 - rename ext2fs_checksb() -> ext2fs_sbcheck(): more consistent
 - in ext2fs_sbcheck(), add a check to ensure e2fs_inode_size!=0,
   otherwise division by zero
 - add ext2fs_sbcompute(), to compute dynamic values of the superblock.
   It is done twice in _reload() and _mountfs(), so put it in a function.
 - reorder the code in charge of loading the superblock: now, read the
   superblock, swap it directly, and *then* pass it to ext2fs_sbcheck().
   It is similar to what ffs now does. It is better since the fields don't
   need to be swapped on the fly in ext2fs_sbcheck().
Tested on amd64.


To generate a diff of this commit:
cvs rdiff -u -r1.187 -r1.188 src/sys/ufs/ext2fs/ext2fs_vfsops.c

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



CVS commit: src/sys/netinet6

2015-02-20 Thread Robert Swindells
Module Name:src
Committed By:   rjs
Date:   Fri Feb 20 22:13:48 UTC 2015

Modified Files:
src/sys/netinet6: in6.c in6.h

Log Message:
Declare input argument to in6_sin_2_v4mapsin6 to be const, allows an
address from the route cache to be used as the input.

ok christos@.


To generate a diff of this commit:
cvs rdiff -u -r1.180 -r1.181 src/sys/netinet6/in6.c
cvs rdiff -u -r1.82 -r1.83 src/sys/netinet6/in6.h

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



CVS commit: src/distrib/sets/lists/modules

2015-02-20 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Sat Feb 21 07:36:59 UTC 2015

Modified Files:
src/distrib/sets/lists/modules: md.i386

Log Message:
Add missing tags (zfs, solaris and lvm) to md.i386


To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/distrib/sets/lists/modules/md.i386

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



CVS commit: src/sys/arch/sparc64/dev

2015-02-20 Thread Takeshi Nakayama
Module Name:src
Committed By:   nakayama
Date:   Sat Feb 21 07:40:01 UTC 2015

Modified Files:
src/sys/arch/sparc64/dev: lom.c

Log Message:
Fix queue handling to make the watchdog timer actually works on
netbsd-7 if it is configured by wdogctl=YES in rc.conf, and also
avoid a hangup duaring shutdown.

- don't put an entry which is already in the queue.
- read a first entry properly to handle the queue.
- check the lom status if input buffer is empty before writing.


To generate a diff of this commit:
cvs rdiff -u -r1.13 -r1.14 src/sys/arch/sparc64/dev/lom.c

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



CVS commit: src/distrib/sets/lists/modules

2015-02-20 Thread Ryota Ozaki
Module Name:src
Committed By:   ozaki-r
Date:   Sat Feb 21 07:47:41 UTC 2015

Modified Files:
src/distrib/sets/lists/modules: md.i386

Log Message:
Add missing dtrace modules to md.i386 set list


To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 src/distrib/sets/lists/modules/md.i386

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