CVS commit: src/sys/arch/sparc64/dev
Module Name:src Committed By: mrg Date: Mon Aug 1 08:36:39 UTC 2011 Modified Files: src/sys/arch/sparc64/dev: central.c fhc_central.c fhc_mainbus.c Log Message: use device_private(). thanks to jmcneill for pointing this out. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/sparc64/dev/central.c \ src/sys/arch/sparc64/dev/fhc_central.c \ src/sys/arch/sparc64/dev/fhc_mainbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc/namedb
Module Name:src Committed By: taca Date: Mon Aug 1 10:04:27 UTC 2011 Modified Files: src/etc/namedb: root.cache Log Message: Update to 2011060800. - IPv6 address was added to D.ROOT-SERVERS.NET. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/etc/namedb/root.cache 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/conf
Module Name:src Committed By: mrg Date: Mon Aug 1 10:18:23 UTC 2011 Modified Files: src/sys/arch/sparc64/conf: files.sparc64 Log Message: fix the zx@fhc attachment. To generate a diff of this commit: cvs rdiff -u -r1.134 -r1.135 src/sys/arch/sparc64/conf/files.sparc64 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/external/isc/atheros_hal/dist/ar5416
Module Name:src Committed By: jmcneill Date: Mon Aug 1 10:21:32 UTC 2011 Modified Files: src/sys/external/isc/atheros_hal/dist/ar5416: ar5416reg.h Log Message: Fix AR_SREV_MERLIN_20 and AR_SREV_MERLIN_20_OR_LATER macros to match rev 2.1 as well as 2.0, from FreeBSD. Fixes 5GHz mode on my 9280. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 \ src/sys/external/isc/atheros_hal/dist/ar5416/ar5416reg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: drochner Date: Mon Aug 1 10:33:26 UTC 2011 Modified Files: src/sys/kern: subr_userconf.c Log Message: modify parsing of device names so that it can deal with names which have numbers is it, eg "i915drm*" To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/kern/subr_userconf.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: drochner Date: Mon Aug 1 10:42:24 UTC 2011 Modified Files: src/sys/arch/x86/include: intr.h src/sys/arch/x86/x86: intr.c Log Message: if checking whether an interrupt is shared, don't compare pin numbers if it is "-1" -- this is a hack to allow MSIs which don't have a concept of pin numbers, and are generally not shared (This doesn't give us sensible event names for statistics display. The whole abstraction has more exceptions than regular cases, it should be redesigned imho.) To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/sys/arch/x86/include/intr.h cvs rdiff -u -r1.71 -r1.72 src/sys/arch/x86/x86/intr.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: drochner Date: Mon Aug 1 11:08:03 UTC 2011 Modified Files: src/sys/arch/x86/include: pci_machdep_common.h src/sys/arch/x86/pci: pci_intr_machdep.c Log Message: add an experimental implementation of PCI MSIs (Message Signaled Interrupts). Successfully tested with hdaudio and "wpi" wireless ethernet. notes: -There seem to be buggy chips around which announce MSI support but don't correctly implement it. Thus the final word whether MSIs can be used should be by the driver. -Only a single vector is supported. For multiple vectors, the IDT allocation code would have to be changed. (And we would possibly run into problems due to the limited number of vectors supported by the current code.) -The code is "#if NIOAPIC > 0" because it uses the ioapic_edge interrupt stubs. These actually don't touch any ioapic, so this is somewhat a misnomer. -MSIs can't be identified by a "pin" but only by a cpu/vector pair. Common intr code soesn't deal well with this yet. -Drivers need to take care of saving/restoring MSI data in the device's config space on suspend/resume. To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x86/include/pci_machdep_common.h cvs rdiff -u -r1.19 -r1.20 src/sys/arch/x86/pci/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
Module Name:src Committed By: drochner Date: Mon Aug 1 11:20:28 UTC 2011 Modified Files: src/sys/dev/cardbus: adv_cardbus.c ahc_cardbus.c cardbus.c cardbusreg.h cardbusvar.h com_cardbus.c ehci_cardbus.c fwohci_cardbus.c if_ath_cardbus.c if_atw_cardbus.c if_ex_cardbus.c if_fxp_cardbus.c if_ral_cardbus.c if_re_cardbus.c if_rtk_cardbus.c if_rtw_cardbus.c if_tlp_cardbus.c njata_cardbus.c njs_cardbus.c ohci_cardbus.c rbus_ppb.c sdhc_cardbus.c siisata_cardbus.c uhci_cardbus.c src/sys/dev/pci: pccbb.c Log Message: remove some bloat: -cardbus doesn't use multiple interrupt lines like PCI, and it doesn't use machanisms like interrupt line register and swizzling -- no need to carry around dummy information, this is all dealt with by the bridge (I'm asking myself how "rbus_ppb" can work -- a bridge attached to cardbus just can't work like a normal PCI bridge as far as interrupts are concerned. I thing that should be a hardware specific driver because behavior is not covered by a standard.) -cardbus always uses 3.3V -- no need for a variable to keep track of the voltage To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/dev/cardbus/adv_cardbus.c cvs rdiff -u -r1.34 -r1.35 src/sys/dev/cardbus/ahc_cardbus.c cvs rdiff -u -r1.107 -r1.108 src/sys/dev/cardbus/cardbus.c cvs rdiff -u -r1.6 -r1.7 src/sys/dev/cardbus/cardbusreg.h cvs rdiff -u -r1.54 -r1.55 src/sys/dev/cardbus/cardbusvar.h \ src/sys/dev/cardbus/if_ex_cardbus.c cvs rdiff -u -r1.29 -r1.30 src/sys/dev/cardbus/com_cardbus.c cvs rdiff -u -r1.30 -r1.31 src/sys/dev/cardbus/ehci_cardbus.c cvs rdiff -u -r1.33 -r1.34 src/sys/dev/cardbus/fwohci_cardbus.c cvs rdiff -u -r1.43 -r1.44 src/sys/dev/cardbus/if_ath_cardbus.c cvs rdiff -u -r1.35 -r1.36 src/sys/dev/cardbus/if_atw_cardbus.c cvs rdiff -u -r1.47 -r1.48 src/sys/dev/cardbus/if_fxp_cardbus.c cvs rdiff -u -r1.21 -r1.22 src/sys/dev/cardbus/if_ral_cardbus.c cvs rdiff -u -r1.26 -r1.27 src/sys/dev/cardbus/if_re_cardbus.c cvs rdiff -u -r1.45 -r1.46 src/sys/dev/cardbus/if_rtk_cardbus.c cvs rdiff -u -r1.41 -r1.42 src/sys/dev/cardbus/if_rtw_cardbus.c cvs rdiff -u -r1.69 -r1.70 src/sys/dev/cardbus/if_tlp_cardbus.c cvs rdiff -u -r1.14 -r1.15 src/sys/dev/cardbus/njata_cardbus.c \ src/sys/dev/cardbus/siisata_cardbus.c cvs rdiff -u -r1.16 -r1.17 src/sys/dev/cardbus/njs_cardbus.c cvs rdiff -u -r1.38 -r1.39 src/sys/dev/cardbus/ohci_cardbus.c cvs rdiff -u -r1.40 -r1.41 src/sys/dev/cardbus/rbus_ppb.c cvs rdiff -u -r1.2 -r1.3 src/sys/dev/cardbus/sdhc_cardbus.c cvs rdiff -u -r1.19 -r1.20 src/sys/dev/cardbus/uhci_cardbus.c cvs rdiff -u -r1.202 -r1.203 src/sys/dev/pci/pccbb.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/acpi
Module Name:src Committed By: jmcneill Date: Mon Aug 1 11:26:00 UTC 2011 Modified Files: src/sys/dev/acpi: acpi.c acpireg.h acpivar.h Log Message: add support for reset registers in PCI config space To generate a diff of this commit: cvs rdiff -u -r1.247 -r1.248 src/sys/dev/acpi/acpi.c cvs rdiff -u -r1.11 -r1.12 src/sys/dev/acpi/acpireg.h cvs rdiff -u -r1.72 -r1.73 src/sys/dev/acpi/acpivar.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/x86/x86
Module Name:src Committed By: jmcneill Date: Mon Aug 1 11:26:31 UTC 2011 Modified Files: src/sys/arch/x86/x86: x86_machdep.c Log Message: x86_reset: use acpi_reset instead of AcpiReset To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/sys/arch/x86/x86/x86_machdep.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: mbalmer Date: Mon Aug 1 12:28:54 UTC 2011 Modified Files: src/libexec/atrun: atrun.c src/share/terminfo: terminfo src/sys/arch/macppc/dev: ams.c src/sys/dev/adb: adb_ms.c src/sys/dev/ic: smc90cx6var.h tropic.c src/sys/dev/pci: machfb.c src/sys/dev/pci/n8/common/api: n8_sks.c src/sys/dev/raidframe: rf_dagdegrd.c rf_dagdegwr.c rf_pqdegdags.c src/sys/dev/sysmon: sysmon_envsys.c src/usr.sbin/syslogd: tls.c Log Message: According to the Oxford Dictionary of Etymology, a wether is a male sheep or ram. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 src/libexec/atrun/atrun.c cvs rdiff -u -r1.3 -r1.4 src/share/terminfo/terminfo cvs rdiff -u -r1.27 -r1.28 src/sys/arch/macppc/dev/ams.c cvs rdiff -u -r1.10 -r1.11 src/sys/dev/adb/adb_ms.c cvs rdiff -u -r1.9 -r1.10 src/sys/dev/ic/smc90cx6var.h cvs rdiff -u -r1.42 -r1.43 src/sys/dev/ic/tropic.c cvs rdiff -u -r1.68 -r1.69 src/sys/dev/pci/machfb.c cvs rdiff -u -r1.1 -r1.2 src/sys/dev/pci/n8/common/api/n8_sks.c cvs rdiff -u -r1.27 -r1.28 src/sys/dev/raidframe/rf_dagdegrd.c cvs rdiff -u -r1.30 -r1.31 src/sys/dev/raidframe/rf_dagdegwr.c cvs rdiff -u -r1.12 -r1.13 src/sys/dev/raidframe/rf_pqdegdags.c cvs rdiff -u -r1.116 -r1.117 src/sys/dev/sysmon/sysmon_envsys.c cvs rdiff -u -r1.6 -r1.7 src/usr.sbin/syslogd/tls.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: xsrc/external/mit/xorg-cf-files/dist
Module Name:xsrc Committed By: tsutsui Date: Mon Aug 1 14:14:16 UTC 2011 Modified Files: xsrc/external/mit/xorg-cf-files/dist: NetBSD.cf Log Message: Always include for GccAliasingArgs regardless of server support on the target plattform. Fixes "GccAliasingArgs" leftovers in Makefiles generated by imake(1) on m68k and sh3 etc. This problem had been once fixed in rev 1.2 per PR xsrc/40970, but it looks accidentally reverted on xorg-cf-files 1.0.3 merge in rev 1.3. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 xsrc/external/mit/xorg-cf-files/dist/NetBSD.cf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/kern
Module Name:src Committed By: he Date: Mon Aug 1 15:26:31 UTC 2011 Modified Files: src/sys/kern: subr_pserialize.c Log Message: Need to include explicitly to build this on at least amiga. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/kern/subr_pserialize.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/distrib/arc/ramdisk
Module Name:src Committed By: tsutsui Date: Mon Aug 1 15:41:34 UTC 2011 Modified Files: src/distrib/arc/ramdisk: list Log Message: Use distrib/utils/more to shrink ramdiskbin. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/distrib/arc/ramdisk/list Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/openssh/dist
Module Name:src Committed By: christos Date: Mon Aug 1 15:55:00 UTC 2011 Modified Files: src/crypto/external/bsd/openssh/dist: atomicio.c Log Message: PR/45200: : J. Hannken-Illjes: Scp hangs after sending: - check for vwrite() instead of read() to avoid read() being renamed by SSP To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/crypto/external/bsd/openssh/dist/atomicio.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/powerpc/booke/dev
Module Name:src Committed By: matt Date: Mon Aug 1 17:05:17 UTC 2011 Modified Files: src/sys/arch/powerpc/booke/dev: e500wdog.c pq3diic.c pq3duart.c pq3etsec.c Log Message: Add missing __KERNEL_RCSID To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/powerpc/booke/dev/e500wdog.c \ src/sys/arch/powerpc/booke/dev/pq3diic.c \ src/sys/arch/powerpc/booke/dev/pq3duart.c cvs rdiff -u -r1.6 -r1.7 src/sys/arch/powerpc/booke/dev/pq3etsec.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/amd64/amd64
Module Name:src Committed By: joerg Date: Mon Aug 1 22:21:01 UTC 2011 Modified Files: src/sys/arch/amd64/amd64: linux32_sigcode.S Log Message: Remove redundant , after .balign. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/arch/amd64/amd64/linux32_sigcode.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/macppc/dev
Module Name:src Committed By: macallan Date: Mon Aug 1 22:40:22 UTC 2011 Modified Files: src/sys/arch/macppc/dev: obio.c Log Message: sanitize sysctl interface in order to appease gcc 4.5 To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/arch/macppc/dev/obio.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/i2c
Module Name:src Committed By: macallan Date: Mon Aug 1 22:42:57 UTC 2011 Modified Files: src/sys/dev/i2c: dbcool.c Log Message: appease gcc 4.5 To generate a diff of this commit: cvs rdiff -u -r1.31 -r1.32 src/sys/dev/i2c/dbcool.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/mips/ralink
Module Name:src Committed By: matt Date: Mon Aug 1 23:01:40 UTC 2011 Modified Files: src/sys/arch/mips/ralink: ralink_eth.c ralink_var.h Log Message: Use
CVS commit: src/etc/etc.evbmips
Module Name:src Committed By: matt Date: Mon Aug 1 23:18:10 UTC 2011 Modified Files: src/etc/etc.evbmips: Makefile.inc Log Message: Add CPMBR1400 and GDIUM as kernels to be built To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/etc/etc.evbmips/Makefile.inc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin
Module Name:src Committed By: matt Date: Mon Aug 1 23:19:52 UTC 2011 Modified Files: src/usr.sbin: Makefile Log Message: Break up list of directories by first letter. To generate a diff of this commit: cvs rdiff -u -r1.256 -r1.257 src/usr.sbin/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/powerpc/booke/dev
Module Name:src Committed By: matt Date: Tue Aug 2 00:21:01 UTC 2011 Added Files: src/sys/arch/powerpc/booke/dev: pq3ddrc.c Log Message: Add simple driver to count single bit ECC errors. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/sys/arch/powerpc/booke/dev/pq3ddrc.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/powerpc/include/booke
Module Name:src Committed By: matt Date: Tue Aug 2 00:22:02 UTC 2011 Modified Files: src/sys/arch/powerpc/include/booke: openpicreg.h Log Message: MPC8544 don't any onchip irqs of 20/21 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/arch/powerpc/include/booke/openpicreg.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/powerpc/include/booke
Module Name:src Committed By: matt Date: Tue Aug 2 00:23:34 UTC 2011 Modified Files: src/sys/arch/powerpc/include/booke: e500reg.h Log Message: Add some more DDR register definitions To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/sys/arch/powerpc/include/booke/e500reg.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/evbppc/mpc85xx
Module Name:src Committed By: matt Date: Tue Aug 2 00:25:39 UTC 2011 Modified Files: src/sys/arch/evbppc/mpc85xx: machdep.c Log Message: Fix tpyo. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/sys/arch/evbppc/mpc85xx/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
Module Name:src Committed By: matt Date: Tue Aug 2 00:27:42 UTC 2011 Modified Files: src/sys/arch/evbppc/conf: MPC8536DS P2020DS P2020RDB src/sys/arch/powerpc/conf: files.booke Log Message: Change device name of pq3cfi to cfi. Add cfi to P2020DS Add ddrc To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/sys/arch/evbppc/conf/MPC8536DS cvs rdiff -u -r1.8 -r1.9 src/sys/arch/evbppc/conf/P2020DS cvs rdiff -u -r1.9 -r1.10 src/sys/arch/evbppc/conf/P2020RDB cvs rdiff -u -r1.5 -r1.6 src/sys/arch/powerpc/conf/files.booke Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/arch
Module Name:src Committed By: matt Date: Tue Aug 2 00:35:06 UTC 2011 Modified Files: src/sys/arch/evbppc/conf [matt-nb5-pq3]: MPC8536DS src/sys/arch/powerpc/conf [matt-nb5-pq3]: files.booke Log Message: Change pq3cfi to cfi To generate a diff of this commit: cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/sys/arch/evbppc/conf/MPC8536DS cvs rdiff -u -r1.1.8.3 -r1.1.8.4 src/sys/arch/powerpc/conf/files.booke Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/gpl3/gcc/dist/gcc/config/rs6000
Module Name:src Committed By: matt Date: Tue Aug 2 00:45:37 UTC 2011 Modified Files: src/external/gpl3/gcc/dist/gcc/config/rs6000: sysv4.h Log Message: Don't define LINK_EH_SPEC if it's already defined. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/gpl3/gcc/dist/gcc/config/rs6000/sysv4.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/dev/nor
Module Name:src Committed By: cliff Date: Tue Aug 2 01:01:35 UTC 2011 Modified Files: src/sys/dev/nor [matt-nb5-pq3]: cfi.h Log Message: - CFI_0002_STATS no longer defined here - add missing arg for do-nothing variant of CFI_0002_STATS_INIT() To generate a diff of this commit: cvs rdiff -u -r1.4.2.2 -r1.4.2.3 src/sys/dev/nor/cfi.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/dev/usb
Module Name:src Committed By: cliff Date: Tue Aug 2 01:09:44 UTC 2011 Modified Files: src/sys/dev/usb [matt-nb5-pq3]: usb_mem.c Log Message: silence the "usb_block_allocmem: in interrupt context" print To generate a diff of this commit: cvs rdiff -u -r1.37.18.1 -r1.37.18.2 src/sys/dev/usb/usb_mem.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/nor
Module Name:src Committed By: cliff Date: Tue Aug 2 01:11:08 UTC 2011 Modified Files: src/sys/dev/nor: cfi.h Log Message: - CFI_0002_STATS no longer defined here - add missing arg for do-nothing variant of CFI_0002_STATS_INIT() To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/nor/cfi.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/dev/usb
Module Name:src Committed By: matt Date: Tue Aug 2 01:26:01 UTC 2011 Modified Files: src/sys/dev/usb [matt-nb5-pq3]: ehci.c Log Message: Pull in ETTF EHCI changes from -current. To generate a diff of this commit: cvs rdiff -u -r1.154.4.2.4.1 -r1.154.4.2.4.2 src/sys/dev/usb/ehci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/arch
Module Name:src Committed By: matt Date: Tue Aug 2 01:34:36 UTC 2011 Modified Files: src/sys/arch/evbppc/mpc85xx [matt-nb5-pq3]: autoconf.c machdep.c src/sys/arch/powerpc/booke/dev [matt-nb5-pq3]: pq3ehci.c src/sys/arch/powerpc/include/booke [matt-nb5-pq3]: cpuvar.h e500reg.h Log Message: Pull in changes from -current to get ehci at cpunode working. To generate a diff of this commit: cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/evbppc/mpc85xx/autoconf.c cvs rdiff -u -r1.1.2.3 -r1.1.2.4 src/sys/arch/evbppc/mpc85xx/machdep.c cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/powerpc/booke/dev/pq3ehci.c cvs rdiff -u -r1.1.2.2 -r1.1.2.3 src/sys/arch/powerpc/include/booke/cpuvar.h cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/powerpc/include/booke/e500reg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [matt-nb5-pq3] src/sys/arch/powerpc/booke/dev
Module Name:src Committed By: matt Date: Tue Aug 2 01:43:03 UTC 2011 Modified Files: src/sys/arch/powerpc/booke/dev [matt-nb5-pq3]: cpunode.c Log Message: need to set cna_le_memt too. To generate a diff of this commit: cvs rdiff -u -r1.1.2.1 -r1.1.2.2 src/sys/arch/powerpc/booke/dev/cpunode.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/nor
Module Name:src Committed By: cliff Date: Tue Aug 2 03:37:25 UTC 2011 Modified Files: src/sys/dev/nor: cfi.c Log Message: when unpacking CFI QRY data, byte order within a word is host order, but order across words appears to be invariant across -el and -eb systems. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/sys/dev/nor/cfi.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/mips/ralink
Module Name:src Committed By: cliff Date: Tue Aug 2 03:38:48 UTC 2011 Added Files: src/sys/arch/mips/ralink: ralink_cfi.c Log Message: CFI NOR support for mips/ralink To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/sys/arch/mips/ralink/ralink_cfi.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/mips/conf
Module Name:src Committed By: cliff Date: Tue Aug 2 03:40:01 UTC 2011 Modified Files: src/sys/arch/mips/conf: files.ralink Log Message: CFI NOR support for mips/ralink To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/mips/conf/files.ralink Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/evbmips/conf
Module Name:src Committed By: cliff Date: Tue Aug 2 03:41:16 UTC 2011 Modified Files: src/sys/arch/evbmips/conf: CPMBR1400 Log Message: configure CFI NOR flash To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/evbmips/conf/CPMBR1400 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/alpha/include
Module Name:src Committed By: uebayasi Date: Tue Aug 2 04:45:10 UTC 2011 Modified Files: src/sys/arch/alpha/include: sysarch.h Log Message: Define struct alpha_pci_conf_readwrite_args only once; fix build. To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/arch/alpha/include/sysarch.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/evbmips/conf
Module Name:src Committed By: cliff Date: Tue Aug 2 05:08:31 UTC 2011 Modified Files: src/sys/arch/evbmips/conf: CPMBR1400 Log Message: configure NOR flash partitions To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/arch/evbmips/conf/CPMBR1400 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/mac68k/obio
Module Name:src Committed By: uebayasi Date: Tue Aug 2 05:10:31 UTC 2011 Modified Files: src/sys/arch/mac68k/obio: esp.c Log Message: Include sys/simplelock.h to use simple_lock(); fix build. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/sys/arch/mac68k/obio/esp.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/mips/include
Module Name:src Committed By: matt Date: Tue Aug 2 05:12:32 UTC 2011 Modified Files: src/sys/arch/mips/include: cpuregs.h Log Message: Add Loongson2 DIAG register definitions (partial) To generate a diff of this commit: cvs rdiff -u -r1.84 -r1.85 src/sys/arch/mips/include/cpuregs.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/mips/mips
Module Name:src Committed By: matt Date: Tue Aug 2 05:13:21 UTC 2011 Modified Files: src/sys/arch/mips/mips: mipsX_subr.S Log Message: Clear the BTB on user->kernel entry on Loongson2 To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 src/sys/arch/mips/mips/mipsX_subr.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/mac68k/obio
Module Name:src Committed By: uebayasi Date: Tue Aug 2 05:17:18 UTC 2011 Modified Files: src/sys/arch/mac68k/obio: esp.c Log Message: ncr53c9x was converted to use mutex(9), follow that. Fix DEBUG build too. To generate a diff of this commit: cvs rdiff -u -r1.53 -r1.54 src/sys/arch/mac68k/obio/esp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/netpgp/dist/src/lib
Module Name:src Committed By: agc Date: Tue Aug 2 05:36:45 UTC 2011 Modified Files: src/crypto/external/bsd/netpgp/dist/src/lib: netpgp.c Log Message: when matching pubkeys, also return the first (pgp) uid for the key in the resultant key listing when using json to format keys returned from libnetpgp, also prepare for machine-readable format ("mr") as well as human ("human"), even though it's not yet used. To generate a diff of this commit: cvs rdiff -u -r1.92 -r1.93 \ src/crypto/external/bsd/netpgp/dist/src/lib/netpgp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.