CVS commit: src/sys/arch/macppc/dev
Module Name:src Committed By: macallan Date: Wed Aug 13 09:41:51 UTC 2014 Modified Files: src/sys/arch/macppc/dev: cudavar.h Log Message: add PRAM access commands To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/macppc/dev/cudavar.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/macppc/dev
Module Name:src Committed By: macallan Date: Wed Aug 13 10:56:36 UTC 2014 Modified Files: src/sys/arch/macppc/dev: cuda.c Log Message: if we get garbage from the RTC try again a couple times this seems to happen more frequently when the PRAM battery goes bad To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/sys/arch/macppc/dev/cuda.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/sed
Module Name:src Committed By: christos Date: Wed Aug 13 11:35:34 UTC 2014 Modified Files: src/usr.bin/sed: process.c Log Message: PR/49109: Jeremie Le Hen: fix sed relative addressin (1,+N) https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=192108 http://svnweb.freebsd.org/base?view=revision&revision=269302 XXX: pullup 7. To generate a diff of this commit: cvs rdiff -u -r1.45 -r1.46 src/usr.bin/sed/process.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/ccdconfig
Module Name:src Committed By: apb Date: Wed Aug 13 13:14:35 UTC 2014 Modified Files: src/sbin/ccdconfig: ccdconfig.8 Log Message: Interleave 0 means concatenate serially, do not interleave. This information was in the ccd(4) man page, but not in ccdconfig(8) or ccd.conf(5). To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sbin/ccdconfig/ccdconfig.8 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/pcc/dist/pcc/arch/amd64
Module Name:src Committed By: plunky Date: Wed Aug 13 13:18:08 UTC 2014 Modified Files: src/external/bsd/pcc/dist/pcc/arch/amd64: code.c Log Message: remove unused variable, as reported by Brad Harder To generate a diff of this commit: cvs rdiff -u -r1.1.1.5 -r1.2 src/external/bsd/pcc/dist/pcc/arch/amd64/code.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/pcc/dist/pcc/cc/ccom
Module Name:src Committed By: plunky Date: Wed Aug 13 13:37:20 UTC 2014 Modified Files: src/external/bsd/pcc/dist/pcc/cc/ccom: cgram.y Log Message: update to r1.377 from upstream, commit message from ragge: Allow for use of restrict in array declarations (as gcc does). Fixes gnu regex compilation as reported by William D. Jones on NetBSD current-users. To generate a diff of this commit: cvs rdiff -u -r1.1.1.7 -r1.2 src/external/bsd/pcc/dist/pcc/cc/ccom/cgram.y Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/bsd/tcpdump/dist
Module Name:src Committed By: wiz Date: Wed Aug 13 13:53:14 UTC 2014 Modified Files: src/external/bsd/tcpdump/dist: tcpdump.1.in Log Message: Add missing TP so that -a is not hidden in the -A description. >From Anon Ymous. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/bsd/tcpdump/dist/tcpdump.1.in Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/fs/ptyfs
Module Name:src Committed By: hannken Date: Wed Aug 13 14:10:00 UTC 2014 Modified Files: src/sys/fs/ptyfs: ptyfs.h ptyfs_subr.c ptyfs_vfsops.c ptyfs_vnops.c Log Message: - Add a map of active controlling ptys per mount and no longer abuse the vnode lifecycle. - No longer set "recycle" on VOP_INACTIVE(). - Make ptyfs_used_get() private to ptyfs_subr.c - Stop copying device attributes from traditional ptys on first allocation. - Remove unneeded argument "lwp" from ptyfs_allocvp() and ptyfs_free_get(). OK: Christos Zoulas To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/fs/ptyfs/ptyfs.h cvs rdiff -u -r1.29 -r1.30 src/sys/fs/ptyfs/ptyfs_subr.c cvs rdiff -u -r1.50 -r1.51 src/sys/fs/ptyfs/ptyfs_vfsops.c cvs rdiff -u -r1.47 -r1.48 src/sys/fs/ptyfs/ptyfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/ccdconfig
Module Name:src Committed By: apb Date: Wed Aug 13 14:13:04 UTC 2014 Modified Files: src/sbin/ccdconfig: ccd.conf.5 Log Message: Interleave 0 means concatenate serially, do not interleave. This information was in the ccd(4) man page, but not in ccdconfig(8) or ccd.conf(5). To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sbin/ccdconfig/ccd.conf.5 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: pooka Date: Wed Aug 13 14:35:46 UTC 2014 Modified Files: src/sys/dev/pci: if_vioif.c Log Message: Don't use config_deferred_interrupts() for vioif_deferred_init(), just run it once as part of if_init(). The problem with the former is that it will execute the deferred init routine in-place when !cold, and since vioif_deferred_init() finishing depends on virtio interrupts which are established only after config_deferred_interrupts() is called, the vioif attach method would deadlock when !cold. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/dev/pci/if_vioif.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/compiler_rt
Module Name:src Committed By: joerg Date: Wed Aug 13 14:41:45 UTC 2014 Modified Files: src/lib/libc/compiler_rt: Makefile.inc Log Message: powerpc64 uses the same sources as powerpc and needs the long double as double-double sources. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/lib/libc/compiler_rt/Makefile.inc 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: joerg Date: Wed Aug 13 14:43:48 UTC 2014 Modified Files: src/doc: TODO.clang src/lib/libc/compat/sys: compat___semctl13.c compat_semctl.c src/lib/libc/sys: semctl.c Log Message: Use the lint path as workaround for Clang on 32bit PPC for now. Document this hack. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/doc/TODO.clang cvs rdiff -u -r1.4 -r1.5 src/lib/libc/compat/sys/compat___semctl13.c \ src/lib/libc/compat/sys/compat_semctl.c cvs rdiff -u -r1.16 -r1.17 src/lib/libc/sys/semctl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/dev
Module Name:src Committed By: pooka Date: Wed Aug 13 15:01:32 UTC 2014 Modified Files: src/sys/rump/dev: Makefile.rumpdevcomp Added Files: src/sys/rump/dev/lib/libpci_if_pcn: Makefile PCI_IF_PCN.ioconf pcn_at_pci.c shlib_version Log Message: Add component for the pcnet PCI driver to rump kernels. Virtualbox emulates it by default, so it's nice-to-have for that. To generate a diff of this commit: cvs rdiff -u -r1.12 -r1.13 src/sys/rump/dev/Makefile.rumpdevcomp cvs rdiff -u -r0 -r1.1 src/sys/rump/dev/lib/libpci_if_pcn/Makefile \ src/sys/rump/dev/lib/libpci_if_pcn/PCI_IF_PCN.ioconf \ src/sys/rump/dev/lib/libpci_if_pcn/pcn_at_pci.c \ src/sys/rump/dev/lib/libpci_if_pcn/shlib_version 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/arm32
Module Name:src Committed By: matt Date: Wed Aug 13 15:06:28 UTC 2014 Modified Files: src/sys/arch/arm/arm32: pmap.c Log Message: Fix for PR/49061 only kassert in pmap_kenter_pa if PMAP_CACHE_PIVT && !ARM_MMU_EXTENDED To generate a diff of this commit: cvs rdiff -u -r1.296 -r1.297 src/sys/arch/arm/arm32/pmap.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch/powerpc64/sys
Module Name:src Committed By: joerg Date: Wed Aug 13 15:19:22 UTC 2014 Modified Files: src/lib/libc/arch/powerpc64/sys: sbrk.S Log Message: Spell LdAddr consistently To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/lib/libc/arch/powerpc64/sys/sbrk.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libc/arch/powerpc64/gen
Module Name:src Committed By: joerg Date: Wed Aug 13 15:41:22 UTC 2014 Modified Files: src/lib/libc/arch/powerpc64/gen: swapcontext.S Log Message: [] -> () To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/lib/libc/arch/powerpc64/gen/swapcontext.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/mount_ptyfs
Module Name:src Committed By: hannken Date: Wed Aug 13 15:48:38 UTC 2014 Modified Files: src/sbin/mount_ptyfs: mount_ptyfs.8 Log Message: Adapt to reality -- already open BSD style nodes do not appear on ptyfs mounts (this changed some months ago). To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/sbin/mount_ptyfs/mount_ptyfs.8 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/powerpc
Module Name:src Committed By: joerg Date: Wed Aug 13 15:56:52 UTC 2014 Modified Files: src/libexec/ld.elf_so/arch/powerpc: Makefile.inc Log Message: Build position independent on PPC64, too. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 src/libexec/ld.elf_so/arch/powerpc/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/aarch64/include
Module Name:src Committed By: justin Date: Wed Aug 13 17:14:42 UTC 2014 Modified Files: src/sys/arch/aarch64/include: int_fmtio.h Log Message: Add formatting for aarch64 as using arm ones errors for ll on 64 bit types To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/aarch64/include/int_fmtio.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: justin Date: Wed Aug 13 18:25:11 UTC 2014 Modified Files: src/share/mk: bsd.own.mk Log Message: Respect EXTERNAL_TOOLCHAIN on aarch64 To generate a diff of this commit: cvs rdiff -u -r1.830 -r1.831 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/aarch64/include
Module Name:src Committed By: matt Date: Wed Aug 13 19:32:35 UTC 2014 Modified Files: src/sys/arch/aarch64/include: lock.h Log Message: Use __ATOMIC_RELAXED in __cpu_simple_lock_init To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/aarch64/include/lock.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netipsec
Module Name:src Committed By: plunky Date: Wed Aug 13 19:43:47 UTC 2014 Modified Files: src/sys/netipsec: ipsec.c Log Message: C99 6.5.15 Conditional operator note 3 states that the second and third operators of a ?: operation shoud (amongst other conditions) either both be integer type, or both void type. cast the second to (void) then, as log() is already a void and no result is desired. To generate a diff of this commit: cvs rdiff -u -r1.63 -r1.64 src/sys/netipsec/ipsec.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
Module Name:src Committed By: matt Date: Wed Aug 13 19:48:17 UTC 2014 Modified Files: src/sys/arch/alpha/include: int_fmtio.h src/sys/arch/arm/include: int_fmtio.h src/sys/arch/hppa/include: int_fmtio.h src/sys/arch/ia64/include: int_fmtio.h src/sys/arch/m68k/include: int_fmtio.h src/sys/arch/mips/include: int_fmtio.h src/sys/arch/powerpc/include: int_fmtio.h src/sys/arch/sh3/include: int_fmtio.h src/sys/arch/sparc/include: int_fmtio.h src/sys/arch/vax/include: int_fmtio.h Log Message: include if __INTPTR_FMTd__ is defined To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/arch/alpha/include/int_fmtio.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/include/int_fmtio.h cvs rdiff -u -r1.2 -r1.3 src/sys/arch/hppa/include/int_fmtio.h cvs rdiff -u -r1.2 -r1.3 src/sys/arch/ia64/include/int_fmtio.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/m68k/include/int_fmtio.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mips/include/int_fmtio.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/powerpc/include/int_fmtio.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sh3/include/int_fmtio.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sparc/include/int_fmtio.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/vax/include/int_fmtio.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/aarch64/include
Module Name:src Committed By: matt Date: Wed Aug 13 19:51:27 UTC 2014 Modified Files: src/sys/arch/aarch64/include: int_fmtio.h Log Message: Back out last change. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/aarch64/include/int_fmtio.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/mk
Module Name:src Committed By: joerg Date: Wed Aug 13 20:51:27 UTC 2014 Modified Files: src/share/mk: bsd.own.mk Log Message: Use compiler-rt and libc++ with LLVM on PowerPC64. To generate a diff of this commit: cvs rdiff -u -r1.831 -r1.832 src/share/mk/bsd.own.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/evbppc/ramdisk
Module Name:src Committed By: joerg Date: Wed Aug 13 20:52:05 UTC 2014 Modified Files: src/distrib/evbppc/ramdisk: Makefile Log Message: Bump ramdisk size to 3.2MB and include dhcpcd. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/distrib/evbppc/ramdisk/Makefile 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/drm2/include/linux
Module Name:src Committed By: riastradh Date: Wed Aug 13 20:56:21 UTC 2014 Modified Files: src/sys/external/bsd/drm2/include/linux: pci.h Log Message: Fix shifts & masks in Linux pci_read_config_{word,byte}. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/external/bsd/drm2/include/linux/pci.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/arm
Module Name:src Committed By: matt Date: Wed Aug 13 21:10:31 UTC 2014 Modified Files: src/sys/arch/arm/arm: sig_machdep.c Log Message: When creating a mcontext, make sure the PSR we are saving is actually valid. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.48 src/sys/arch/arm/arm/sig_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/arch/arm
Module Name:src Committed By: matt Date: Wed Aug 13 21:41:32 UTC 2014 Modified Files: src/sys/arch/arm/arm: ast.c process_machdep.c syscall.c src/sys/arch/arm/arm32: fault.c src/sys/arch/arm/include: locore.h Log Message: Add __NO_FIQ to prevent testing of the PSR FIQ bit Use VALID_R15_PSR(pc, spsr) instead of testing explicitly To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.24 src/sys/arch/arm/arm/ast.c cvs rdiff -u -r1.29 -r1.30 src/sys/arch/arm/arm/process_machdep.c cvs rdiff -u -r1.59 -r1.60 src/sys/arch/arm/arm/syscall.c cvs rdiff -u -r1.100 -r1.101 src/sys/arch/arm/arm32/fault.c cvs rdiff -u -r1.16 -r1.17 src/sys/arch/arm/include/locore.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/dev/usb
Module Name:src Committed By: riz Date: Wed Aug 13 21:47:18 UTC 2014 Modified Files: src/sys/dev/usb [netbsd-7]: xhci.c Log Message: Pull up following revision(s) (requested by skrll in ticket #11): sys/dev/usb/xhci.c: revision 1.25 Serialise xhci_intr1 calls with sc_intr_lock. From Takahiro HAYASHI. To generate a diff of this commit: cvs rdiff -u -r1.23.2.1 -r1.23.2.2 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/dev/usb
Module Name:src Committed By: riz Date: Wed Aug 13 21:50:39 UTC 2014 Modified Files: src/sys/dev/usb [netbsd-7]: files.usb usb.h Log Message: Pull up following revision(s) (requested by skrll in ticket #12): sys/dev/usb/files.usb: revision 1.133 sys/dev/usb/usb.h: revision 1.108 Add XHCI_DEBUG. From Takahiro HAYASHI with tweaks from me. One day someone(tm) will tidyup USB debug stuff. To generate a diff of this commit: cvs rdiff -u -r1.132 -r1.132.2.1 src/sys/dev/usb/files.usb cvs rdiff -u -r1.106 -r1.106.4.1 src/sys/dev/usb/usb.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: riz Date: Wed Aug 13 21:50:56 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Tickets 11, 12 To generate a diff of this commit: cvs rdiff -u -r1.1.2.7 -r1.1.2.8 src/doc/CHANGES-7.0 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/include
Module Name:src Committed By: matt Date: Wed Aug 13 22:16:24 UTC 2014 Modified Files: src/sys/arch/arm/include: profile.h Log Message: Don't save r4 since we don't use it. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/include/profile.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
Module Name:src Committed By: matt Date: Wed Aug 13 22:25:40 UTC 2014 Modified Files: src/sys/arch/alpha/include: int_mwgwtypes.h src/sys/arch/ia64/include: int_mwgwtypes.h src/sys/arch/m68k/include: int_mwgwtypes.h src/sys/arch/mips/include: int_mwgwtypes.h src/sys/arch/powerpc/include: int_mwgwtypes.h src/sys/arch/sh3/include: int_mwgwtypes.h src/sys/arch/sparc/include: int_mwgwtypes.h src/sys/arch/vax/include: int_mwgwtypes.h Log Message: include if __UINT_FAST64_TYPE__ is defined. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/arch/alpha/include/int_mwgwtypes.h cvs rdiff -u -r1.2 -r1.3 src/sys/arch/ia64/include/int_mwgwtypes.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/m68k/include/int_mwgwtypes.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/mips/include/int_mwgwtypes.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/powerpc/include/int_mwgwtypes.h cvs rdiff -u -r1.5 -r1.6 src/sys/arch/sh3/include/int_mwgwtypes.h cvs rdiff -u -r1.6 -r1.7 src/sys/arch/sparc/include/int_mwgwtypes.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/vax/include/int_mwgwtypes.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
Module Name:src Committed By: matt Date: Wed Aug 13 22:31:07 UTC 2014 Modified Files: src/sys/arch/alpha/include: int_limits.h src/sys/arch/ia64/include: int_limits.h src/sys/arch/m68k/include: int_limits.h src/sys/arch/mips/include: int_limits.h src/sys/arch/powerpc/include: int_limits.h src/sys/arch/sh3/include: int_limits.h src/sys/arch/sparc/include: int_limits.h src/sys/arch/vax/include: int_limits.h Log Message: Include if __SIG_ATOMIC_MAX__ is defined. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sys/arch/alpha/include/int_limits.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/ia64/include/int_limits.h cvs rdiff -u -r1.7 -r1.8 src/sys/arch/m68k/include/int_limits.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/mips/include/int_limits.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/powerpc/include/int_limits.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/sh3/include/int_limits.h cvs rdiff -u -r1.7 -r1.8 src/sys/arch/sparc/include/int_limits.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/vax/include/int_limits.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: xsrc/external/mit/xf86-video-nv/dist/src
Module Name:xsrc Committed By: macallan Date: Wed Aug 13 22:45:12 UTC 2014 Modified Files: xsrc/external/mit/xf86-video-nv/dist/src: nv_driver.c Log Message: put pci_device_has_kernel_driver(dev) into #if NV_TEST_FOR_KERNEL_DRIVER at least for now there is nothing that keeps the nv driver from running if a kernel driver other than vga is attached Now this works again on macppc ( and x86 if you use for example genfb ) To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xf86-video-nv/dist/src/nv_driver.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/mit/xorg/server/drivers/xf86-video-nv
Module Name:src Committed By: macallan Date: Wed Aug 13 22:48:16 UTC 2014 Modified Files: src/external/mit/xorg/server/drivers/xf86-video-nv: Makefile Log Message: mention NV_TEST_FOR_KERNEL_DRIVER and explain why it isn't enabled for now To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 \ src/external/mit/xorg/server/drivers/xf86-video-nv/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch
Module Name:src Committed By: matt Date: Wed Aug 13 22:51:59 UTC 2014 Modified Files: src/sys/arch/alpha/include: int_const.h src/sys/arch/ia64/include: int_const.h src/sys/arch/m68k/include: int_const.h src/sys/arch/mips/include: int_const.h src/sys/arch/powerpc/include: int_const.h src/sys/arch/sh3/include: int_const.h src/sys/arch/sparc/include: int_const.h src/sys/arch/vax/include: int_const.h Log Message: Include if __INTMAX_C_SUFFIX__ is defined. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/alpha/include/int_const.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/ia64/include/int_const.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/m68k/include/int_const.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/mips/include/int_const.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/powerpc/include/int_const.h cvs rdiff -u -r1.4 -r1.5 src/sys/arch/sh3/include/int_const.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/sparc/include/int_const.h cvs rdiff -u -r1.3 -r1.4 src/sys/arch/vax/include/int_const.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
Module Name:src Committed By: matt Date: Wed Aug 13 22:56:56 UTC 2014 Modified Files: src/sys/arch/alpha/include: int_types.h src/sys/arch/ia64/include: int_types.h src/sys/arch/m68k/include: int_types.h src/sys/arch/mips/include: int_types.h src/sys/arch/powerpc/include: int_types.h src/sys/arch/sh3/include: int_types.h src/sys/arch/sparc/include: int_types.h src/sys/arch/vax/include: int_types.h Log Message: Include if __UINTPTR_TYPE__ is defined. To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/arch/alpha/include/int_types.h cvs rdiff -u -r1.1 -r1.2 src/sys/arch/ia64/include/int_types.h cvs rdiff -u -r1.9 -r1.10 src/sys/arch/m68k/include/int_types.h cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mips/include/int_types.h cvs rdiff -u -r1.10 -r1.11 src/sys/arch/powerpc/include/int_types.h cvs rdiff -u -r1.8 -r1.9 src/sys/arch/sh3/include/int_types.h cvs rdiff -u -r1.10 -r1.11 src/sys/arch/sparc/include/int_types.h cvs rdiff -u -r1.11 -r1.12 src/sys/arch/vax/include/int_types.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/sparc64/sparc64
Module Name:src Committed By: nakayama Date: Thu Aug 14 04:14:33 UTC 2014 Modified Files: src/sys/arch/sparc64/sparc64: locore.s Log Message: Add missing delay slot in DEBUG kernel. To generate a diff of this commit: cvs rdiff -u -r1.369 -r1.370 src/sys/arch/sparc64/sparc64/locore.s 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/pci
Module Name:src Committed By: hikaru Date: Thu Aug 14 05:42:16 UTC 2014 Modified Files: src/sys/arch/x86/pci: if_vmx.c Log Message: Set ifflags callback so that the device can enter promiscuous mode. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/arch/x86/pci/if_vmx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/sparc64/sparc64
Module Name:src Committed By: martin Date: Thu Aug 14 06:50:37 UTC 2014 Modified Files: src/sys/arch/sparc64/sparc64 [netbsd-7]: locore.s Log Message: Pull up following revision(s) (requested by nakayama in ticket #14): sys/arch/sparc64/sparc64/locore.s: revision 1.370 Add missing delay slot in DEBUG kernel. To generate a diff of this commit: cvs rdiff -u -r1.369 -r1.369.2.1 src/sys/arch/sparc64/sparc64/locore.s Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/x86/pci
Module Name:src Committed By: martin Date: Thu Aug 14 06:52:38 UTC 2014 Modified Files: src/sys/arch/x86/pci [netbsd-7]: if_vmx.c Log Message: Pull up following revision(s) (requested by hikaru in ticket #15): sys/arch/x86/pci/if_vmx.c: revision 1.5 Set ifflags callback so that the device can enter promiscuous mode. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.4.1 src/sys/arch/x86/pci/if_vmx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/dev/usb
Module Name:src Committed By: martin Date: Thu Aug 14 06:56:55 UTC 2014 Modified Files: src/sys/dev/usb [netbsd-7]: usb.h Log Message: Pull up following revision(s) (requested by skrll in ticket #10): sys/dev/usb/usb.h: revision 1.107 Define AXEN_DEBUG. From Takahiro HAYASHI. To generate a diff of this commit: cvs rdiff -u -r1.106.4.1 -r1.106.4.2 src/sys/dev/usb/usb.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: martin Date: Thu Aug 14 06:58:39 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Tickets 10, 14 and 15 To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.