CVS commit: src/distrib/sets/lists/xserver
Module Name:src Committed By: kiyohara Date: Sun Aug 1 07:07:00 UTC 2010 Added Files: src/distrib/sets/lists/xserver: md.bebox Log Message: Support xserver. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/distrib/sets/lists/xserver/md.bebox 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
Module Name:src Committed By: kiyohara Date: Sun Aug 1 07:29:04 UTC 2010 Modified Files: src/sys/dev/usb: files.usb Log Message: Add attribute sysmon_envsys to device uthum. To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 src/sys/dev/usb/files.usb 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
Module Name:src Committed By: kiyohara Date: Sun Aug 1 07:38:17 UTC 2010 Modified Files: src/sys/dev/pci: mvsata_pci.c Log Message: Remove mvsata_pci_products's terminator(-1). Instead of it use __arraycount(). To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/pci/mvsata_pci.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/x86
Module Name:src Committed By: mlelstv Date: Sun Aug 1 08:16:14 UTC 2010 Modified Files: src/sys/arch/x86/include: ipmivar.h src/sys/arch/x86/x86: ipmi.c Log Message: sc_cmd_mtx protects a command sequence, no longer abuse it for delays. Initialize mutexes and condition variables in attach and not in the asynchronously started kernel thread. Increase BMC spin timeout from 5ms to 15ms, this is necessary to detect the BMC in a HP ML110G4 reliably. Implement non-linear sensors as defined in IPMIv2.0 with some crude 32.32 fixed point arithmetic. This adds some small errors as logarithm and power functions are only approximated. Fix sensor index mapping so that sensor limits are computed correctly. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/arch/x86/include/ipmivar.h cvs rdiff -u -r1.47 -r1.48 src/sys/arch/x86/x86/ipmi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs
Module Name:src Committed By: pooka Date: Sun Aug 1 08:32:18 UTC 2010 Modified Files: src/tests/fs: Makefile Log Message: nfs now has tests in it, so need to convert from SUBDIR to TESTS_SUBDIR. Once again I failed to see that one coming. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/tests/fs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/mii
Module Name:src Committed By: kiyohara Date: Sun Aug 1 09:54:12 UTC 2010 Modified Files: src/sys/dev/mii: makphy.c Log Message: Add Marvell E1116R. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/sys/dev/mii/makphy.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/dreamcast/include
Module Name:src Committed By: tsutsui Date: Sun Aug 1 12:42:46 UTC 2010 Modified Files: src/sys/arch/dreamcast/include: pci_machdep.h Log Message: Fix typo in pci_intr_disestablish(9) macro. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/dreamcast/include/pci_machdep.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs/vfs
Module Name:src Committed By: mlelstv Date: Sun Aug 1 14:50:54 UTC 2010 Modified Files: src/tests/fs/vfs: t_vnops.c Log Message: The erroneous error codes described in kern/43616 have been fixed. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/tests/fs/vfs/t_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/fs/nfs
Module Name:src Committed By: pooka Date: Sun Aug 1 15:38:27 UTC 2010 Modified Files: src/tests/fs/nfs: t_mountd.c Log Message: * apparently operations can also fail with EIO and EOPNOTSUPP while mountd hup is in progress. strange, since I can't remember seeing those a few days ago when i ran this quite a lot. anyway, don't make those errnos fatal failures. * also in the "apparently" sector, although this test fails 100% reliably on my development host, it does not always trigger in the anita run. so apply the current "race condition test" idiom To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/fs/nfs/t_mountd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/envstat
Module Name:src Committed By: mlelstv Date: Sun Aug 1 15:39:53 UTC 2010 Modified Files: src/usr.sbin/envstat: envstat.c Log Message: Print the correct value for critmin of a fan sensor. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/usr.sbin/envstat/envstat.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/x86/x86
Module Name:src Committed By: mlelstv Date: Sun Aug 1 15:42:20 UTC 2010 Modified Files: src/sys/arch/x86/x86: ipmi.c Log Message: For sensors with inverted value (1/x function), exchange lower and upper limits so that {warn,crit}min < curval < {warn,crit}max. To generate a diff of this commit: cvs rdiff -u -r1.48 -r1.49 src/sys/arch/x86/x86/ipmi.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/util
Module Name:src Committed By: jmmv Date: Sun Aug 1 16:42:59 UTC 2010 Modified Files: src/tests/util: Makefile Added Files: src/tests/util/sort: Makefile d_any_char_dflag_out.txt d_any_char_fflag_out.txt d_any_char_iflag_out.txt d_any_char_in.txt t_sort.sh Removed Files: src/tests/util: t_sort.sh Log Message: Merge the sort tests from regress/ into the existing atfified sort tests. While doing this put the sort tests into a separate directory to follow the convention of tests/util/. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/tests/util/Makefile cvs rdiff -u -r1.4 -r0 src/tests/util/t_sort.sh cvs rdiff -u -r0 -r1.1 src/tests/util/sort/Makefile \ src/tests/util/sort/d_any_char_dflag_out.txt \ src/tests/util/sort/d_any_char_fflag_out.txt \ src/tests/util/sort/d_any_char_iflag_out.txt \ src/tests/util/sort/d_any_char_in.txt src/tests/util/sort/t_sort.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc/mtree
Module Name:src Committed By: jmmv Date: Sun Aug 1 16:43:39 UTC 2010 Modified Files: src/etc/mtree: NetBSD.dist.base Log Message: Add directory for sort(1) tests. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/etc/mtree/NetBSD.dist.base 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/tests
Module Name:src Committed By: jmmv Date: Sun Aug 1 16:43:57 UTC 2010 Modified Files: src/distrib/sets/lists/tests: mi Log Message: Add files for sort(1) tests. To generate a diff of this commit: cvs rdiff -u -r1.126 -r1.127 src/distrib/sets/lists/tests/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/regress/usr.bin
Module Name:src Committed By: jmmv Date: Sun Aug 1 16:44:31 UTC 2010 Modified Files: src/regress/usr.bin: Makefile Removed Files: src/regress/usr.bin/sort: Makefile stests Log Message: The sort(1) tests have been moved to tests/util/sort/. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.19 src/regress/usr.bin/Makefile cvs rdiff -u -r1.6 -r0 src/regress/usr.bin/sort/Makefile cvs rdiff -u -r1.15 -r0 src/regress/usr.bin/sort/stests Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: jmmv Date: Sun Aug 1 16:45:13 UTC 2010 Modified Files: src/doc: CHANGES Log Message: Note the conversion of the sort(1) tests to atf. To generate a diff of this commit: cvs rdiff -u -r1.1424 -r1.1425 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/sys/dev/pci
Module Name:src Committed By: msaitoh Date: Sun Aug 1 18:45:25 UTC 2010 Modified Files: src/sys/dev/pci: pcidevs Log Message: Add VScom PCI-200Li To generate a diff of this commit: cvs rdiff -u -r1.1047 -r1.1048 src/sys/dev/pci/pcidevs 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
Module Name:src Committed By: msaitoh Date: Sun Aug 1 18:45:54 UTC 2010 Modified Files: src/sys/dev/pci: pcidevs.h pcidevs_data.h Log Message: regen. To generate a diff of this commit: cvs rdiff -u -r1.1044 -r1.1045 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1043 -r1.1044 src/sys/dev/pci/pcidevs_data.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src
Module Name:src Committed By: msaitoh Date: Sun Aug 1 18:50:25 UTC 2010 Modified Files: src/share/man/man4: puc.4 src/sys/dev/pci: pucdata.c pucvar.h Log Message: Add the following cards' support from FreeBSD: - Comtrol RocketPort 550/4, 550/8 and 550/16 series - Lava Computers Quatro-PCI - some NetMos NM9865 cards - VScom PCI-200Li To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/share/man/man4/puc.4 cvs rdiff -u -r1.68 -r1.69 src/sys/dev/pci/pucdata.c cvs rdiff -u -r1.8 -r1.9 src/sys/dev/pci/pucvar.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/microcode/daic
Module Name:src Committed By: martin Date: Sun Aug 1 20:09:34 UTC 2010 Removed Files: src/sys/dev/microcode/daic: Makefile dnload.h-dist gendnloadh Log Message: Remove old style firmware hooks for undistributable bootloader of Diehl active ISDN cards. To generate a diff of this commit: cvs rdiff -u -r1.6 -r0 src/sys/dev/microcode/daic/Makefile \ src/sys/dev/microcode/daic/dnload.h-dist cvs rdiff -u -r1.5 -r0 src/sys/dev/microcode/daic/gendnloadh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.