CVS commit: src/lib/libc/citrus
Module Name:src Committed By: jruoho Date: Wed Mar 30 08:22:02 UTC 2011 Modified Files: src/lib/libc/citrus: citrus_iconv.c citrus_prop.c citrus_prop.h Log Message: >From Henning Petersen in PR # 44641: C99 primitive type 'bool' used as a variable name. Also small KNF, as in FreeBSD. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/lib/libc/citrus/citrus_iconv.c cvs rdiff -u -r1.3 -r1.4 src/lib/libc/citrus/citrus_prop.c \ src/lib/libc/citrus/citrus_prop.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests
Module Name:src Committed By: jruoho Date: Wed Mar 30 08:34:20 UTC 2011 Modified Files: src/tests/include/sys: t_bitops.c src/tests/lib/libc/gen: t_raise.c Log Message: Add missing __RCSID(3). To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/tests/include/sys/t_bitops.c cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libc/gen/t_raise.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/libexec/ld.elf_so/arch/sparc64
Module Name:src Committed By: martin Date: Wed Mar 30 08:37:52 UTC 2011 Modified Files: src/libexec/ld.elf_so/arch/sparc64: mdreloc.c Log Message: Add support for 64 bit TLS relocations. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 src/libexec/ld.elf_so/arch/sparc64/mdreloc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/libexec/ld.elf_so/arch/sparc
Module Name:src Committed By: martin Date: Wed Mar 30 09:22:29 UTC 2011 Modified Files: src/libexec/ld.elf_so/arch/sparc: mdreloc.c Log Message: Add support for TLS relocations To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/libexec/ld.elf_so/arch/sparc/mdreloc.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/sparc/include
Module Name:src Committed By: martin Date: Wed Mar 30 09:23:26 UTC 2011 Modified Files: src/sys/arch/sparc/include: types.h Log Message: Enable TLS on sparc and sparc64 To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/arch/sparc/include/types.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: jruoho Date: Wed Mar 30 09:43:22 UTC 2011 Modified Files: src/distrib/sets/lists/tests: mi src/tests/include: Makefile src/tests/syscall: Makefile Added Files: src/tests/include: t_paths.c src/tests/syscall: t_fsync.c Log Message: Add some basic tests for fsync(2) and . To generate a diff of this commit: cvs rdiff -u -r1.278 -r1.279 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.1 -r1.2 src/tests/include/Makefile cvs rdiff -u -r0 -r1.1 src/tests/include/t_paths.c cvs rdiff -u -r1.9 -r1.10 src/tests/syscall/Makefile cvs rdiff -u -r0 -r1.1 src/tests/syscall/t_fsync.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libcurses
Module Name:src Committed By: blymn Date: Wed Mar 30 09:47:03 UTC 2011 Modified Files: src/lib/libcurses: curs_set.c Log Message: fflush the outfd after setting the cursor visibility so it takes effect immediately. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/lib/libcurses/curs_set.c 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: jruoho Date: Wed Mar 30 10:06:59 UTC 2011 Modified Files: src/distrib/sets/lists/comp: mi src/share/man/man3: Makefile Added Files: src/share/man/man3: paths.3 Log Message: Briefly document . To generate a diff of this commit: cvs rdiff -u -r1.1604 -r1.1605 src/distrib/sets/lists/comp/mi cvs rdiff -u -r1.70 -r1.71 src/share/man/man3/Makefile cvs rdiff -u -r0 -r1.1 src/share/man/man3/paths.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: jruoho Date: Wed Mar 30 10:08:02 UTC 2011 Modified Files: src/share/man/man7: hier.7 Log Message: Xref paths(3). To generate a diff of this commit: cvs rdiff -u -r1.96 -r1.97 src/share/man/man7/hier.7 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: martin Date: Wed Mar 30 10:32:36 UTC 2011 Modified Files: src/doc: CHANGES Log Message: Note TLS support for sparc and sparc64 To generate a diff of this commit: cvs rdiff -u -r1.1529 -r1.1530 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/external/bsd/atf/dist/atf-run
Module Name:src Committed By: jmmv Date: Wed Mar 30 11:10:56 UTC 2011 Modified Files: src/external/bsd/atf/dist/atf-run: fs.cpp Log Message: Pull up upstream revision 648ed6360b2b7cda81a6079b00dc436d09c745b8: Retry calls that raise file system errors during cleanup If a test case mounts user-space (puffs/fuse) file systems or spawns server processes that create pid files, the termination of the corresponding processes does not guarantee that the file system is left in a consistent state immediately. The cleanup routines of both components (file systems and daemons) may still be running. This situation causes a race condition between the termination of the auxiliary processes and our own file system cleanup: the file system calls performed from within the cleanup routine may raise errors because the file system is still changing underneath. (E.g. we first enumerate the contents of a directory and get file X, but when we attempt to delete file X, it may be gone.) Deal with this by retrying failing file system calls a few times and ignoring "expected" errors before giving up. To generate a diff of this commit: cvs rdiff -u -r1.1.1.3 -r1.2 src/external/bsd/atf/dist/atf-run/fs.cpp Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.bin/usbhidctl
Module Name:src Committed By: wiz Date: Wed Mar 30 11:35:26 UTC 2011 Modified Files: src/usr.bin/usbhidctl: usbhidctl.1 Log Message: Add long example describing how to find and configure multimedia keys; based on Mihai Chelaru's description on current-users in February. Bump date. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 src/usr.bin/usbhidctl/usbhidctl.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: jruoho Date: Wed Mar 30 11:41:48 UTC 2011 Modified Files: src/share/man/man7: security.7 Log Message: Add some random, but decent enough, reading material to SEE ALSO. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/share/man/man7/security.7 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: he Date: Wed Mar 30 11:43:16 UTC 2011 Modified Files: src/distrib/sets/lists/tests: mi shl.mi src/tests/lib/libc/tls: Makefile Log Message: Put tests depending on dlopen etc. under a test for MKPIC, and move the corresponding entries in the set lists over to the shl.mi file. This should bring the sun2 port back to a buildable state. To generate a diff of this commit: cvs rdiff -u -r1.279 -r1.280 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.2 -r1.3 src/distrib/sets/lists/tests/shl.mi cvs rdiff -u -r1.2 -r1.3 src/tests/lib/libc/tls/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/flash
Module Name:src Committed By: uebayasi Date: Wed Mar 30 14:34:26 UTC 2011 Modified Files: src/sys/dev/flash: flash.c flash.h Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/flash/flash.c src/sys/dev/flash/flash.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: jruoho Date: Wed Mar 30 15:37:15 UTC 2011 Modified Files: src/share/man/man7: c.7 Log Message: Xref cdefs(3). To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/share/man/man7/c.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: jruoho Date: Wed Mar 30 16:29:26 UTC 2011 Modified Files: src/lib/libc/gen: fts.3 Log Message: Improve -width. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/lib/libc/gen/fts.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: jruoho Date: Wed Mar 30 16:37:09 UTC 2011 Modified Files: src/lib/libc/gen: lockf.3 Log Message: + .Pp. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/lib/libc/gen/lockf.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/gen
Module Name:src Committed By: jruoho Date: Wed Mar 30 16:41:01 UTC 2011 Modified Files: src/lib/libc/gen: uname.3 Log Message: .Li -> .Em. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/lib/libc/gen/uname.3 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: jruoho Date: Wed Mar 30 17:02:17 UTC 2011 Modified Files: src/distrib/sets/lists/tests: mi src/tests/lib/libutil: Makefile Added Files: src/tests/lib/libutil: t_efun.c Log Message: Add some naive tests for the efun(3) family of debug functions. To generate a diff of this commit: cvs rdiff -u -r1.280 -r1.281 src/distrib/sets/lists/tests/mi cvs rdiff -u -r1.3 -r1.4 src/tests/lib/libutil/Makefile cvs rdiff -u -r0 -r1.1 src/tests/lib/libutil/t_efun.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/lib/libutil
Module Name:src Committed By: jruoho Date: Wed Mar 30 17:03:02 UTC 2011 Modified Files: src/tests/lib/libutil: t_efun.c Log Message: Add missing __RCSID(3), again. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/lib/libutil/t_efun.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/external/bsd/drm/dist/shared-core
Module Name:src Committed By: mlelstv Date: Wed Mar 30 17:21:05 UTC 2011 Modified Files: src/sys/external/bsd/drm/dist/shared-core: radeon_cp.c Log Message: Add missing agp.h include file. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 \ src/sys/external/bsd/drm/dist/shared-core/radeon_cp.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
Module Name:src Committed By: jakllsch Date: Wed Mar 30 17:52:45 UTC 2011 Modified Files: src/sys/dev/ic: i82557.c Log Message: IFF_PROMISC implys IFF_ALLMULTI. Should fix PR#43186. To generate a diff of this commit: cvs rdiff -u -r1.136 -r1.137 src/sys/dev/ic/i82557.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net
Module Name:src Committed By: bouyer Date: Wed Mar 30 18:04:27 UTC 2011 Modified Files: src/sys/net: bpf.c Log Message: Allocate buffers with (M_WAITOK | M_CANFAIL) instead of M_NOWAIT. M_NOWAIT cause dhcpd on a low-memory server with lots of interfaces to occasionally fail to start with ENOBUFS; (M_WAITOK | M_CANFAIL) seems to fix this. Tested on 3 different dhcp servers. To generate a diff of this commit: cvs rdiff -u -r1.162 -r1.163 src/sys/net/bpf.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
Module Name:src Committed By: bouyer Date: Wed Mar 30 18:11:37 UTC 2011 Modified Files: src/sys/dev/pci: if_jme.c Log Message: Some bus_dma(9)-related and memory allocation fixes: - always bus_dmamap_unload() before recycling a receive descriptor - make sure to not sleep from interrupt context: call bus_dmamap_load with M_NOWAIT, and create dma maps BUS_DMA_ALLOCNOW. - if a receive descriptor has a NULL mbuf try to allocate a new one, don't try to receive it. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/dev/pci/if_jme.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/sgimips/dev
Module Name:src Committed By: macallan Date: Wed Mar 30 18:25:31 UTC 2011 Modified Files: src/sys/arch/sgimips/dev: crmfbreg.h Log Message: add a bunch of GBE registers, no functional change (yet) To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/arch/sgimips/dev/crmfbreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/include
Module Name:src Committed By: jruoho Date: Wed Mar 30 18:31:15 UTC 2011 Modified Files: src/tests/include: t_paths.c Log Message: Another proof that even the naive test cases are worth it; expect a failure with fstat(2) and bpf(4), PR lib/44807. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/tests/include/t_paths.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/xen/xen
Module Name:src Committed By: jym Date: Wed Mar 30 18:33:05 UTC 2011 Modified Files: src/sys/arch/xen/xen: if_xennet_xenbus.c Log Message: Do not clobber autoconf messages (and variables, for error reporting) in xennet(4) handler. Keep if_xname though. Reported by dyoung@, thanks. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/arch/xen/xen/if_xennet_xenbus.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/videomode
Module Name:src Committed By: jdc Date: Wed Mar 30 18:45:05 UTC 2011 Modified Files: src/sys/dev/videomode: modelines Log Message: Update modes based on our current xsrc. Minor changes to "640x480 @ 60Hz", "640x480 @ 72Hz", "800x600 @ 85Hz", and "1024x768 @ 75Hz". To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/dev/videomode/modelines Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/videomode
Module Name:src Committed By: jdc Date: Wed Mar 30 18:46:33 UTC 2011 Modified Files: src/sys/dev/videomode: videomode.c Log Message: Regenerate for: Update modes based on our current xsrc. Minor changes to "640x480 @ 60Hz", "640x480 @ 72Hz", "800x600 @ 85Hz", and "1024x768 @ 75Hz". To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/dev/videomode/videomode.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/videomode
Module Name:src Committed By: jdc Date: Wed Mar 30 18:49:57 UTC 2011 Modified Files: src/sys/dev/videomode: edidreg.h Log Message: Adjustments to detailed timing flags: give the stereo modes slightly better names correct the hsync positive and vsync positive bits (these were reversed) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/videomode/edidreg.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/videomode
Module Name:src Committed By: jdc Date: Wed Mar 30 18:50:37 UTC 2011 Modified Files: src/sys/dev/videomode: edid.c Log Message: Display detailed timing parameters in edid_print(). To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/videomode/edid.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/sgimips/dev
Module Name:src Committed By: macallan Date: Wed Mar 30 19:16:35 UTC 2011 Modified Files: src/sys/arch/sgimips/dev: crmfb.c Log Message: device_t-ify, use aprint_*_dev() where appropriate To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/arch/sgimips/dev/crmfb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/include
Module Name:src Committed By: jruoho Date: Wed Mar 30 19:32:13 UTC 2011 Modified Files: src/tests/include: t_paths.c Log Message: Adjust for _PATH_CONSOLE, pointed out by njoly@. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/include/t_paths.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/comp
Module Name:src Committed By: roy Date: Wed Mar 30 19:57:15 UTC 2011 Modified Files: src/distrib/sets/lists/comp: md.amd64 Log Message: Fix libquota_pic.a To generate a diff of this commit: cvs rdiff -u -r1.104 -r1.105 src/distrib/sets/lists/comp/md.amd64 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/external/bsd/drm/dist/shared-core
Module Name:src Committed By: tron Date: Wed Mar 30 19:59:04 UTC 2011 Modified Files: src/sys/external/bsd/drm/dist/shared-core: radeon_cp.c Log Message: Fix build of "radeondrm" kernel module. To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 \ src/sys/external/bsd/drm/dist/shared-core/radeon_cp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/net
Module Name:src Committed By: christos Date: Wed Mar 30 21:34:08 UTC 2011 Modified Files: src/sys/net: bpf.c Log Message: lib/44807: something broken in stat(2), return that we are a character device in st_mode. To generate a diff of this commit: cvs rdiff -u -r1.163 -r1.164 src/sys/net/bpf.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man9
Module Name:src Committed By: jruoho Date: Wed Mar 30 21:40:01 UTC 2011 Modified Files: src/share/man/man9: flash.9 Log Message: Remove a duplicate word, .Fn for functions, .Vt. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/share/man/man9/flash.9 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/x86
Module Name:src Committed By: jym Date: Wed Mar 30 21:53:59 UTC 2011 Modified Files: src/sys/arch/xen/x86: hypervisor_machdep.c Log Message: Fix a year old bug that was only fixed in jym-xensuspend branch, but not in HEAD: - use uvm_km_alloc() instead of kmem_alloc() to enforce alignement when allocating p2m_frame pages (xentools can only deal with page-aligned addresses) - do not use paddr_t for p2m_frame_list_list with PAE, xentools expect 32 bits PFNs even with 64 bits PTE. Required to make ``xm dump-core'' work as expected. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sys/arch/xen/x86/hypervisor_machdep.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/make
Module Name:src Committed By: sjg Date: Wed Mar 30 22:03:49 UTC 2011 Modified Files: src/usr.bin/make: meta.c meta.h Log Message: Add NetBSD tags To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/usr.bin/make/meta.c cvs rdiff -u -r1.1 -r1.2 src/usr.bin/make/meta.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/include
Module Name:src Committed By: jruoho Date: Wed Mar 30 22:26:26 UTC 2011 Modified Files: src/tests/include: t_paths.c Log Message: Remove atf_tc_expect_fail(). Should be fixed. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/tests/include/t_paths.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/xen/xenbus
Module Name:src Committed By: jym Date: Wed Mar 30 22:34:03 UTC 2011 Modified Files: src/sys/arch/xen/xenbus: xenbus_probe.c Log Message: (purely cosmetic changes) - Use free_otherend_details() instead of calling free() on xbusd_otherend. - rename talk_to_otherend() to watch_otherend(). We register a watch for changes in the otherend device "state"; we are not really talking to it. - add missing prototypes. To generate a diff of this commit: cvs rdiff -u -r1.28 -r1.29 src/sys/arch/xen/xenbus/xenbus_probe.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/xen/include
Module Name:src Committed By: jym Date: Wed Mar 30 22:57:24 UTC 2011 Modified Files: src/sys/arch/xen/include/amd64: hypercalls.h src/sys/arch/xen/include/i386: hypercalls.h Log Message: Add the HYPERVISOR_sysctl() hypercall. Although the hypercall arguments (like struct sysctl_readconsole) are not compatible between different XEN_SYSCTL_INTERFACE_VERSIONs (one of the reasons why the sysctl calls should only be used by xentools directly), it's still practical to have when one wants to query Xen's dmesg from ddb(4) in case of a panic. Note: additional code is needed for readconsole() functionality, but adding the hypercall should not cause any harm. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/xen/include/amd64/hypercalls.h cvs rdiff -u -r1.10 -r1.11 src/sys/arch/xen/include/i386/hypercalls.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [jym-xensuspend] src/sys/arch/xen
Module Name:src Committed By: jym Date: Wed Mar 30 23:15:06 UTC 2011 Modified Files: src/sys/arch/xen/include/amd64 [jym-xensuspend]: hypercalls.h src/sys/arch/xen/include/i386 [jym-xensuspend]: hypercalls.h src/sys/arch/xen/x86 [jym-xensuspend]: hypervisor_machdep.c x86_xpmap.c src/sys/arch/xen/xen [jym-xensuspend]: if_xennet_xenbus.c xbd_xenbus.c src/sys/arch/xen/xenbus [jym-xensuspend]: xenbus_probe.c Log Message: Sync with my commits in HEAD. To generate a diff of this commit: cvs rdiff -u -r1.5.4.3 -r1.5.4.4 src/sys/arch/xen/include/amd64/hypercalls.h cvs rdiff -u -r1.8.4.3 -r1.8.4.4 src/sys/arch/xen/include/i386/hypercalls.h cvs rdiff -u -r1.11.8.5 -r1.11.8.6 src/sys/arch/xen/x86/hypervisor_machdep.c cvs rdiff -u -r1.12.4.12 -r1.12.4.13 src/sys/arch/xen/x86/x86_xpmap.c cvs rdiff -u -r1.33.2.7 -r1.33.2.8 src/sys/arch/xen/xen/if_xennet_xenbus.c cvs rdiff -u -r1.38.2.7 -r1.38.2.8 src/sys/arch/xen/xen/xbd_xenbus.c cvs rdiff -u -r1.27.2.5 -r1.27.2.6 src/sys/arch/xen/xenbus/xenbus_probe.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/sgimips/dev
Module Name:src Committed By: macallan Date: Thu Mar 31 00:01:08 UTC 2011 Modified Files: src/sys/arch/sgimips/dev: crmfb.c crmfbreg.h Log Message: add DDC2 support. Not too useful yet. To generate a diff of this commit: cvs rdiff -u -r1.29 -r1.30 src/sys/arch/sgimips/dev/crmfb.c cvs rdiff -u -r1.12 -r1.13 src/sys/arch/sgimips/dev/crmfbreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/libexec/httpd
Module Name:src Committed By: mrg Date: Thu Mar 31 01:19:38 UTC 2011 Modified Files: src/libexec/httpd: content-bozo.c Log Message: add .mp4 as video/mp4. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/libexec/httpd/content-bozo.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/sandpoint/sandpoint
Module Name:src Committed By: nisimura Date: Thu Mar 31 02:32:36 UTC 2011 Modified Files: src/sys/arch/sandpoint/sandpoint: iic_eumb.c Log Message: Build and use "i2c-child-devices" property to choose the correct RTC chip among various models. To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sandpoint/sandpoint/iic_eumb.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/make
Module Name:src Committed By: sjg Date: Thu Mar 31 06:28:42 UTC 2011 Modified Files: src/usr.bin/make: job.c Log Message: We must now call meta_job_finish() after meta_job_error() so that .ERROR_META_FILE is captured. To generate a diff of this commit: cvs rdiff -u -r1.155 -r1.156 src/usr.bin/make/job.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/make
Module Name:src Committed By: sjg Date: Thu Mar 31 06:50:43 UTC 2011 Modified Files: src/usr.bin/make: meta.c Log Message: Call meta_job_finish() from meta_job_error(), so that if the .ERROR target copies the .meta file, it has been completed. meta_job_finish() is safe to call again. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/usr.bin/make/meta.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.