CVS commit: src/tests/include/sys

2015-03-14 Thread Tetsuya Isaki
Module Name:src
Committed By:   isaki
Date:   Sat Mar 14 07:23:46 UTC 2015

Modified Files:
src/tests/include/sys: t_bitops.c

Log Message:
white space -> tab.


To generate a diff of this commit:
cvs rdiff -u -r1.16 -r1.17 src/tests/include/sys/t_bitops.c

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



CVS commit: src/sys/compat/linux

2015-03-14 Thread Nicolas Joly
Module Name:src
Committed By:   njoly
Date:   Sat Mar 14 08:32:08 UTC 2015

Modified Files:
src/sys/compat/linux/arch/alpha: linux_mmap.h
src/sys/compat/linux/arch/amd64: linux_mmap.h
src/sys/compat/linux/arch/arm: linux_mmap.h
src/sys/compat/linux/arch/i386: linux_mmap.h
src/sys/compat/linux/arch/m68k: linux_mmap.h
src/sys/compat/linux/arch/mips: linux_mmap.h
src/sys/compat/linux/arch/powerpc: linux_mmap.h
src/sys/compat/linux/arch/sparc: linux_mmap.h
src/sys/compat/linux/common: linux_misc.c

Log Message:
Support Linux MAP_LOCKED mmap flag.


To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/arch/alpha/linux_mmap.h
cvs rdiff -u -r1.2 -r1.3 src/sys/compat/linux/arch/amd64/linux_mmap.h
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/arch/arm/linux_mmap.h
cvs rdiff -u -r1.6 -r1.7 src/sys/compat/linux/arch/i386/linux_mmap.h
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/arch/m68k/linux_mmap.h
cvs rdiff -u -r1.8 -r1.9 src/sys/compat/linux/arch/mips/linux_mmap.h
cvs rdiff -u -r1.6 -r1.7 src/sys/compat/linux/arch/powerpc/linux_mmap.h
cvs rdiff -u -r1.4 -r1.5 src/sys/compat/linux/arch/sparc/linux_mmap.h
cvs rdiff -u -r1.230 -r1.231 src/sys/compat/linux/common/linux_misc.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/sysmon

2015-03-14 Thread Juergen Hannken-Illjes
Module Name:src
Committed By:   hannken
Date:   Sat Mar 14 09:52:49 UTC 2015

Modified Files:
src/sys/dev/sysmon: sysmon_envsys.c sysmon_envsys_events.c sysmonvar.h

Log Message:
Add a counter of busy events and stop enqueueing more work if a device is busy.
Protect this counter with a new short time lock "sme_work_mtx" and
keep "sme_mtx" as long time lock.

Removes a deadlock where an active event holds "sme_mtx", the callout
"sme_events_check" blocks on "sme_mtx" and callout processing stops.


To generate a diff of this commit:
cvs rdiff -u -r1.128 -r1.129 src/sys/dev/sysmon/sysmon_envsys.c
cvs rdiff -u -r1.113 -r1.114 src/sys/dev/sysmon/sysmon_envsys_events.c
cvs rdiff -u -r1.45 -r1.46 src/sys/dev/sysmon/sysmonvar.h

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



CVS commit: src/sys/arch/xen

2015-03-14 Thread Manuel Bouyer
Module Name:src
Committed By:   bouyer
Date:   Sat Mar 14 10:49:36 UTC 2015

Modified Files:
src/sys/arch/xen/include: evtchn.h
src/sys/arch/xen/xen: evtchn.c pci_intr_machdep.c

Log Message:
Properly implemement pci_intr_disestablish(9), so that interrupt
handlers stop being called when the device has been detached.
Should fix PR port-xen/47720 (which turns out to not be related to raidframe).
While there fix possible races in event_remove_handler() and pirq_establish().


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 src/sys/arch/xen/include/evtchn.h
cvs rdiff -u -r1.70 -r1.71 src/sys/arch/xen/xen/evtchn.c
cvs rdiff -u -r1.16 -r1.17 src/sys/arch/xen/xen/pci_intr_machdep.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/ic

2015-03-14 Thread Michael Lorenz
Module Name:src
Committed By:   macallan
Date:   Sat Mar 14 13:45:44 UTC 2015

Modified Files:
src/sys/dev/ic: dm9000.c

Log Message:
KNF police


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 src/sys/dev/ic/dm9000.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/evbarm/conf

2015-03-14 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Mar 14 14:59:43 UTC 2015

Modified Files:
src/sys/arch/evbarm/conf: RPI

Log Message:
re-add ARM11_COMPAT_MMU, lost in the rpi2 shuffle


To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/sys/arch/evbarm/conf/RPI

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



CVS commit: src/sys/arch/evbarm/conf

2015-03-14 Thread Jared D. McNeill
Module Name:src
Committed By:   jmcneill
Date:   Sat Mar 14 19:06:14 UTC 2015

Modified Files:
src/sys/arch/evbarm/conf: RPI2

Log Message:
add no options ARM11_COMPAT_MMU


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbarm/conf/RPI2

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-03-14 Thread Maxime Villard
Module Name:src
Committed By:   maxv
Date:   Sat Mar 14 19:52:54 UTC 2015

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

Log Message:
ffs_superblock_validate(): ensure fs_ipg and fs_fpg are != 0. Otherwise
division by zero in several places.


To generate a diff of this commit:
cvs rdiff -u -r1.322 -r1.323 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/dev/usb

2015-03-14 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Sun Mar 15 01:37:47 UTC 2015

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

Log Message:
Added Huawei U8150.


To generate a diff of this commit:
cvs rdiff -u -r1.691 -r1.692 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-03-14 Thread NONAKA Kimihiro
Module Name:src
Committed By:   nonaka
Date:   Sun Mar 15 01:42:27 UTC 2015

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

Log Message:
regen


To generate a diff of this commit:
cvs rdiff -u -r1.683 -r1.684 src/sys/dev/usb/usbdevs.h
cvs rdiff -u -r1.684 -r1.685 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/arch/arm/imx

2015-03-14 Thread Ryo Shimizu
Module Name:src
Committed By:   ryo
Date:   Sun Mar 15 04:12:07 UTC 2015

Modified Files:
src/sys/arch/arm/imx: if_enet.c

Log Message:
- fix interrupt type ans interrupt masks
- change timing of callout_schedule because it doesn't schedule once enet_stop 
is called
- typo


To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/arch/arm/imx/if_enet.c

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