CVS commit: src/sys/arch/arm/arm32
Module Name:src Committed By: matt Date: Mon Dec 10 08:19:10 UTC 2012 Modified Files: src/sys/arch/arm/arm32: arm32_machdep.c Log Message: add mm_md_direct_mapped_phys To generate a diff of this commit: cvs rdiff -u -r1.86 -r1.87 src/sys/arch/arm/arm32/arm32_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/include/arm32
Module Name:src Committed By: matt Date: Mon Dec 10 08:19:59 UTC 2012 Modified Files: src/sys/arch/arm/include/arm32: pmap.h Log Message: Add b{zero,copy}_page{,_vfp} and physical_end To generate a diff of this commit: cvs rdiff -u -r1.116 -r1.117 src/sys/arch/arm/include/arm32/pmap.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/raidframe
Module Name:src Committed By: msaitoh Date: Mon Dec 10 08:36:03 UTC 2012 Modified Files: src/sys/dev/raidframe: rf_driver.c Log Message: Fix off by one read. To generate a diff of this commit: cvs rdiff -u -r1.130 -r1.131 src/sys/dev/raidframe/rf_driver.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/alpha/include
Module Name:src Committed By: chs Date: Mon Dec 10 16:12:20 UTC 2012 Modified Files: src/sys/arch/alpha/include: vmparam.h Log Message: enable __USE_TOPDOWN_VM. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/sys/arch/alpha/include/vmparam.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/traceroute6
Module Name:src Committed By: christos Date: Mon Dec 10 18:11:34 UTC 2012 Modified Files: src/usr.sbin/traceroute6: traceroute6.c Log Message: PR/47304: Kouki Ooyatsu: -s (source IPv6 address to be used) option does not work because the wrong variable is used. XXX: Pullup to 6. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 src/usr.sbin/traceroute6/traceroute6.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src
Module Name:src Committed By: riz Date: Mon Dec 10 18:26:01 UTC 2012 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.1 src/sys/dev/acpi [netbsd-6-0]: acpi_pci_link.c Log Message: Back out ticket #682; it's causing some systems to fail to boot. To generate a diff of this commit: cvs rdiff -u -r1.1.2.26 -r1.1.2.27 src/doc/CHANGES-6.0.1 cvs rdiff -u -r1.18.20.1 -r1.18.20.2 src/sys/dev/acpi/acpi_pci_link.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src
Module Name:src Committed By: riz Date: Mon Dec 10 18:27:01 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.1 src/sys/dev/acpi [netbsd-6]: acpi_pci_link.c Log Message: Back out ticket #682; it's causing some systems to fail to boot. To generate a diff of this commit: cvs rdiff -u -r1.1.2.53 -r1.1.2.54 src/doc/CHANGES-6.1 cvs rdiff -u -r1.18.14.1 -r1.18.14.2 src/sys/dev/acpi/acpi_pci_link.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/historical/nawk/dist
Module Name:src Committed By: christos Date: Mon Dec 10 19:49:05 UTC 2012 Modified Files: src/external/historical/nawk/dist: tran.c Log Message: PR/47306: Aleksey Cheusov: Don't free strings of symbols where we maintain pointers to. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/external/historical/nawk/dist/tran.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/usr.bin/awk
Module Name:src Committed By: christos Date: Mon Dec 10 20:30:06 UTC 2012 Modified Files: src/tests/usr.bin/awk: t_awk.sh Log Message: add a test case for PR/47306 To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/tests/usr.bin/awk/t_awk.sh 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: pooka Date: Mon Dec 10 20:58:55 UTC 2012 Modified Files: src/share/mk: bsd.gcc.mk Log Message: Deal with crti and crtn not present in some EXTERNAL_TOOLCHAIN's. Also, handle "missing" crtstuff internally instead of depending on external intervention. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/share/mk/bsd.gcc.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/fs/smbfs
Module Name:src Committed By: riz Date: Mon Dec 10 21:12:51 UTC 2012 Modified Files: src/sys/fs/smbfs [netbsd-6]: smbfs_node.c smbfs_node.h smbfs_vnops.c Log Message: Pull up following revision(s) (requested by nakayama in ticket #731): sys/fs/smbfs/smbfs_node.h: revision 1.13 sys/fs/smbfs/smbfs_node.c: revision 1.48 sys/fs/smbfs/smbfs_node.c: revision 1.49 sys/fs/smbfs/smbfs_vnops.c: revision 1.83 sys/fs/smbfs/smbfs_vnops.c: revision 1.84 Various fixes for smbfs: - Implement NGONE to fix caching issue described in PR kern/25070. Mostly taken from FreeBSD r125637. - Revert revision 1.70 of smbfs_vnops.c to fix setattr to opened direcotry. In case of SMB_CAP_NT_SMBS, NOPEN is set after smbfs_smb_ntcreatex() call. If NOPEN is set in front, it will immediately return by condition at do_open label. - In smbfs_close(), call smbfs_smb_close() and drop NOPEN bit in the case of direcotry. Otherwise smbfs_rmdir() fails when the directory was opened. - Remove redundant vput() before vgone(). - Avoid unnecessary mutex_exit() in smbfs_node_alloc(). - Set NGONE bit to from-name vnode to invalidate the smbnode cache. To generate a diff of this commit: cvs rdiff -u -r1.47 -r1.47.8.1 src/sys/fs/smbfs/smbfs_node.c cvs rdiff -u -r1.12 -r1.12.94.1 src/sys/fs/smbfs/smbfs_node.h cvs rdiff -u -r1.78.2.1 -r1.78.2.2 src/sys/fs/smbfs/smbfs_vnops.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys
Module Name:src Committed By: riz Date: Mon Dec 10 21:16:25 UTC 2012 Modified Files: src/sys/fs/smbfs [netbsd-6]: smbfs_smb.c smbfs_subr.c smbfs_subr.h smbfs_vnops.c src/sys/netsmb [netbsd-6]: smb.h Log Message: Pull up following revision(s) (requested by nakayama in ticket #732): sys/netsmb/smb.h: revision 1.20 sys/fs/smbfs/smbfs_vnops.c: revision 1.85 sys/fs/smbfs/smbfs_subr.c: revision 1.16 sys/fs/smbfs/smbfs_smb.c: revision 1.44 sys/fs/smbfs/smbfs_subr.h: revision 1.21 Improve smbfs timestamp handling. Don't round timestamp to 2 seconds resolution if the server supports the CAP_INFOLEVEL_PASSTHRU capability. To generate a diff of this commit: cvs rdiff -u -r1.42.8.1 -r1.42.8.2 src/sys/fs/smbfs/smbfs_smb.c cvs rdiff -u -r1.15 -r1.15.8.1 src/sys/fs/smbfs/smbfs_subr.c cvs rdiff -u -r1.20 -r1.20.18.1 src/sys/fs/smbfs/smbfs_subr.h cvs rdiff -u -r1.78.2.2 -r1.78.2.3 src/sys/fs/smbfs/smbfs_vnops.c cvs rdiff -u -r1.19 -r1.19.8.1 src/sys/netsmb/smb.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/external/cddl/osnet/include
Module Name:src Committed By: riz Date: Mon Dec 10 21:18:18 UTC 2012 Modified Files: src/external/cddl/osnet/include [netbsd-6]: unistd.h Log Message: Pull up following revision(s) (requested by riastradh in ticket #733): external/cddl/osnet/include/unistd.h: revision 1.5 we have _SC_PHYS_PAGES now To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.8.1 src/external/cddl/osnet/include/unistd.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: riz Date: Mon Dec 10 21:19:08 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.1 Log Message: Tickets 731-733 To generate a diff of this commit: cvs rdiff -u -r1.1.2.54 -r1.1.2.55 src/doc/CHANGES-6.1 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: pooka Date: Mon Dec 10 23:48:38 UTC 2012 Modified Files: src/share/mk: bsd.gcc.mk Log Message: Revert poor change To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/share/mk/bsd.gcc.mk 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: pooka Date: Mon Dec 10 23:49:40 UTC 2012 Modified Files: src/share/mk: bsd.gcc.mk Log Message: Add more external dependencies for crtstuff To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.10 src/share/mk/bsd.gcc.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/arm/vfp
Module Name:src Committed By: matt Date: Tue Dec 11 01:13:06 UTC 2012 Modified Files: src/sys/arch/arm/vfp: pmap_vfp.S Log Message: These contain to just contain bzero_page_vfp and bcopy_page_vfp To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/vfp/pmap_vfp.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/arm/arm32
Module Name:src Committed By: matt Date: Tue Dec 11 01:16:10 UTC 2012 Modified Files: src/sys/arch/arm/arm32: pmap.c Log Message: Optimize pmap_{copy,zerp}_page_generic to understand that when all of memory is always mapped that you don't have create mappings dynamically. To generate a diff of this commit: cvs rdiff -u -r1.243 -r1.244 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/sys/arch/arm/omap
Module Name:src Committed By: matt Date: Tue Dec 11 01:33:32 UTC 2012 Modified Files: src/sys/arch/arm/omap: omap2_obio.c Log Message: Defer configuring children of obio until all obio are attached. from jmcneill. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/arch/arm/omap/omap2_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/arch/arm/arm32
Module Name:src Committed By: matt Date: Tue Dec 11 01:51:15 UTC 2012 Modified Files: src/sys/arch/arm/arm32: pmap.c Log Message: Fix c&p error. To generate a diff of this commit: cvs rdiff -u -r1.244 -r1.245 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/sys/arch/arm/vfp
Module Name:src Committed By: matt Date: Tue Dec 11 01:52:30 UTC 2012 Modified Files: src/sys/arch/arm/vfp: vfp_init.c Log Message: Add code to patch pmap_{copy,zero}_page_generic to change calls to b{copy,zero}_page to b{copy,zero}_page_vfp To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/vfp/vfp_init.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: khorben Date: Tue Dec 11 01:54:43 UTC 2012 Modified Files: src/sys/arch/arm/omap: files.omap2 omap2_gpio.c omap2_gpmcreg.h omap2_obio.c omap2_obioreg.h omap2_reg.h omap3_sdhc.c omap3_sdmmcreg.h src/sys/arch/evbarm/beagle: beagle.h beagle_machdep.c src/sys/arch/evbarm/conf: N900 Log Message: Added kernel option OMAP_3430 to allow easy differentiation between the BEAGLEBOARD and N900 kernels; otherwise no real change. Resulting N900 kernel tested with no visible regression. go for it To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/omap/files.omap2 \ src/sys/arch/arm/omap/omap2_obio.c cvs rdiff -u -r1.12 -r1.13 src/sys/arch/arm/omap/omap2_gpio.c cvs rdiff -u -r1.8 -r1.9 src/sys/arch/arm/omap/omap2_gpmcreg.h cvs rdiff -u -r1.6 -r1.7 src/sys/arch/arm/omap/omap2_obioreg.h cvs rdiff -u -r1.11 -r1.12 src/sys/arch/arm/omap/omap2_reg.h cvs rdiff -u -r1.2 -r1.3 src/sys/arch/arm/omap/omap3_sdhc.c \ src/sys/arch/arm/omap/omap3_sdmmcreg.h cvs rdiff -u -r1.7 -r1.8 src/sys/arch/evbarm/beagle/beagle.h cvs rdiff -u -r1.22 -r1.23 src/sys/arch/evbarm/beagle/beagle_machdep.c cvs rdiff -u -r1.1 -r1.2 src/sys/arch/evbarm/conf/N900 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/macppc
Module Name:src Committed By: macallan Date: Tue Dec 11 03:00:00 UTC 2012 Modified Files: src/sys/arch/macppc/macppc: machdep.c Log Message: work around a bug in some (all?) nvidia OF ROMs: the color! method always changes only the palette registers associated with the first, usually analog head, even if the monitor in use is on port 2, usually DVI or ADC. Don't enable cmap_callback when we find out we're on port 2 of an nvidia card, that way genfb won't try to use R3G3B2 colours and assume something resembling an ANSI palette which will at least gives us something usable, as opposed to black on mostly black. To generate a diff of this commit: cvs rdiff -u -r1.163 -r1.164 src/sys/arch/macppc/macppc/machdep.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/lib/libterminfo
Module Name:src Committed By: riz Date: Tue Dec 11 04:26:26 UTC 2012 Modified Files: src/lib/libterminfo [netbsd-6]: tparm.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #734): lib/libterminfo/tparm.c: revision 1.9 Fix off by one error. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.7.4.1 src/lib/libterminfo/tparm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src/lib/libterminfo
Module Name:src Committed By: riz Date: Tue Dec 11 04:26:49 UTC 2012 Modified Files: src/lib/libterminfo [netbsd-6-0]: tparm.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #734): lib/libterminfo/tparm.c: revision 1.9 Fix off by one error. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.7.8.1 src/lib/libterminfo/tparm.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6-0] src/doc
Module Name:src Committed By: riz Date: Tue Dec 11 04:27:04 UTC 2012 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.1 Log Message: Ticket 734. To generate a diff of this commit: cvs rdiff -u -r1.1.2.27 -r1.1.2.28 src/doc/CHANGES-6.0.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src
Module Name:src Committed By: riz Date: Tue Dec 11 04:31:53 UTC 2012 Modified Files: src/share/examples/npf [netbsd-6]: host-npf.conf soho_gw-npf.conf src/sys/net/npf [netbsd-6]: npf_tableset.c src/usr.sbin/npf/npfctl [netbsd-6]: npf.conf.5 npf_build.c npf_data.c npf_parse.y npf_scan.l npf_var.h npfctl.h Log Message: Pull up following revision(s) (requested by rmind in ticket #736): usr.sbin/npf/npfctl/npf_parse.y: revision 1.17 sys/net/npf/npf_tableset.c: revision 1.16 usr.sbin/npf/npfctl/npfctl.h: revision 1.23 usr.sbin/npf/npfctl/npf_data.c: revision 1.19 usr.sbin/npf/npfctl/npf_build.c: revision 1.15 share/examples/npf/host-npf.conf: revision 1.3 usr.sbin/npf/npfctl/npf_scan.l: revision 1.9 share/examples/npf/soho_gw-npf.conf: revision 1.3 usr.sbin/npf/npfctl/npf_var.h: revision 1.6 usr.sbin/npf/npfctl/npf.conf.5: revision 1.24 npfctl: extend syntax for extracting interface IP address(es) by the family. adjust to current npf.conf syntax npf_table_list: avoid triggering assert on diagnostic. To generate a diff of this commit: cvs rdiff -u -r1.2.4.2 -r1.2.4.3 src/share/examples/npf/host-npf.conf \ src/share/examples/npf/soho_gw-npf.conf cvs rdiff -u -r1.9.2.6 -r1.9.2.7 src/sys/net/npf/npf_tableset.c cvs rdiff -u -r1.9.2.4 -r1.9.2.5 src/usr.sbin/npf/npfctl/npf.conf.5 cvs rdiff -u -r1.4.2.7 -r1.4.2.8 src/usr.sbin/npf/npfctl/npf_build.c cvs rdiff -u -r1.10.2.5 -r1.10.2.6 src/usr.sbin/npf/npfctl/npf_data.c cvs rdiff -u -r1.3.2.9 -r1.3.2.10 src/usr.sbin/npf/npfctl/npf_parse.y cvs rdiff -u -r1.1.2.5 -r1.1.2.6 src/usr.sbin/npf/npfctl/npf_scan.l cvs rdiff -u -r1.1.2.4 -r1.1.2.5 src/usr.sbin/npf/npfctl/npf_var.h cvs rdiff -u -r1.11.2.9 -r1.11.2.10 src/usr.sbin/npf/npfctl/npfctl.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys/arch/arm/marvell
Module Name:src Committed By: riz Date: Tue Dec 11 04:44:03 UTC 2012 Modified Files: src/sys/arch/arm/marvell [netbsd-6]: mvsoc.c mvsocreg.h Log Message: sys/arch/arm/marvell/mvsoc.cpatch sys/arch/arm/marvell/mvsocreg.h patch Add CLKGATING_BIT, enable it for some 88F6281 devices, and don't configure devices if their clock is disabled. [msaitoh, ticket #737] To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.2.1 src/sys/arch/arm/marvell/mvsoc.c cvs rdiff -u -r1.2 -r1.2.12.1 src/sys/arch/arm/marvell/mvsocreg.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/doc
Module Name:src Committed By: riz Date: Tue Dec 11 04:45:02 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.1 Log Message: Tickets 734, 736, 737 To generate a diff of this commit: cvs rdiff -u -r1.1.2.55 -r1.1.2.56 src/doc/CHANGES-6.1 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: msaitoh Date: Tue Dec 11 07:31:40 UTC 2012 Modified Files: src/sys/external/bsd/drm/dist/shared-core: i915_suspend.c Log Message: Fix wrong reference to dev_priv->saveSWF1. It was clearly wrong. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 \ src/sys/external/bsd/drm/dist/shared-core/i915_suspend.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.