CVS commit: src/usr.sbin/npf/npfctl
Module Name:src Committed By: martin Date: Wed Oct 31 08:54:39 UTC 2012 Modified Files: src/usr.sbin/npf/npfctl: npfctl.c Log Message: gcc 4.1 is not smart enough to notice "arg" is only used when initialized correctly and produces a "might be used unintialized" warning. To generate a diff of this commit: cvs rdiff -u -r1.21 -r1.22 src/usr.sbin/npf/npfctl/npfctl.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: msaitoh Date: Wed Oct 31 10:17:35 UTC 2012 Modified Files: src/sbin/ifconfig: Makefile.inc src/sys/net: if_ether.h if_ethersubr.c src/sys/sys: sockio.h Added Files: src/sbin/ifconfig: ether.c Log Message: Add SIOCGETHERCAP ioctl. There was no way to know the setting of ec_capabilities and ec_capenable other than grepping the source. See http://mail-index.netbsd.org/tech-kern/2010/07/28/msg008613.html To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/sbin/ifconfig/Makefile.inc cvs rdiff -u -r0 -r1.1 src/sbin/ifconfig/ether.c cvs rdiff -u -r1.60 -r1.61 src/sys/net/if_ether.h cvs rdiff -u -r1.192 -r1.193 src/sys/net/if_ethersubr.c cvs rdiff -u -r1.30 -r1.31 src/sys/sys/sockio.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: apb Date: Wed Oct 31 13:05:09 UTC 2012 Modified Files: src: build.sh Log Message: Replace getarch and validatearch with table-driven implementations. To generate a diff of this commit: cvs rdiff -u -r1.257 -r1.258 src/build.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/kernel
Module Name:src Committed By: christos Date: Wed Oct 31 13:48:12 UTC 2012 Modified Files: src/tests/kernel: gen_t_subr_prf Log Message: Avoid ssp re-definitions for the functions we provide. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/tests/kernel/gen_t_subr_prf Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5] src/sys/dev/scsipi
Module Name:src Committed By: riz Date: Wed Oct 31 15:17:53 UTC 2012 Modified Files: src/sys/dev/scsipi [netbsd-5]: sd.c Log Message: sys/dev/scsipi/sd.c patch Allow disk strategy to be queried and changed at runtime for sd(4) disks. [buhrow, ticket #1807] To generate a diff of this commit: cvs rdiff -u -r1.275 -r1.275.4.1 src/sys/dev/scsipi/sd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5] src/sys/arch/i386/i386
Module Name:src Committed By: riz Date: Wed Oct 31 15:34:58 UTC 2012 Modified Files: src/sys/arch/i386/i386 [netbsd-5]: locore.S Log Message: Pull up following revision(s) (requested by chs in ticket #1810): sys/arch/i386/i386/locore.S: revision 1.103 in osyscall, set the PSL_I bit into the correct field of the trapframe. it was going into tf_eip instead of tf_eflags, which would sometimes corrupt %eip and always return to user mode with interrupts disabled. this was found with a netbsd 1.0 binary, and dsl@ points out that this should also fix PR 41342. To generate a diff of this commit: cvs rdiff -u -r1.78.4.3 -r1.78.4.4 src/sys/arch/i386/i386/locore.S Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5] src/sys/external/bsd/drm/dist/bsd-core
Module Name:src Committed By: riz Date: Wed Oct 31 15:49:07 UTC 2012 Modified Files: src/sys/external/bsd/drm/dist/bsd-core [netbsd-5]: drm_sysctl.c Log Message: Pull up following revision(s) (requested by chs in ticket #1811): sys/external/bsd/drm/dist/bsd-core/drm_sysctl.c: revision 1.8 fix the DRM string sysctls to use copyout() instead of strcat() to deliver the data to the user buffer. To generate a diff of this commit: cvs rdiff -u -r1.2.10.2 -r1.2.10.3 \ src/sys/external/bsd/drm/dist/bsd-core/drm_sysctl.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 15:49:27 UTC 2012 Modified Files: src/doc [netbsd-5]: CHANGES-5.2 Log Message: Tickets 1807, 1810, 1811. To generate a diff of this commit: cvs rdiff -u -r1.1.2.192 -r1.1.2.193 src/doc/CHANGES-5.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-1] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 15:49:59 UTC 2012 Modified Files: src/doc [netbsd-5-1]: CHANGES-5.1.3 Log Message: Ticket 1811. To generate a diff of this commit: cvs rdiff -u -r1.1.2.28 -r1.1.2.29 src/doc/CHANGES-5.1.3 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: Wed Oct 31 16:07:46 UTC 2012 Modified Files: src/sys/net [netbsd-6]: if_atmsubr.c if_ethersubr.c if_fddisubr.c if_ppp.c src/sys/netinet6 [netbsd-6]: in6_var.h ip6_flow.c Log Message: Pull up following revision(s) (requested by christos in ticket #638): sys/net/if_ppp.c: revision 1.137 sys/netinet6/ip6_flow.c: revision 1.20 sys/net/if_fddisubr.c: revision 1.82 sys/net/if_ethersubr.c: revision 1.192 sys/netinet6/in6_var.h: revision 1.66 sys/net/if_atmsubr.c: revision 1.50 PR/47058: Antti Kantee: If the ipv6 flow code modifies the mbuf, pass the change up to the caller. To generate a diff of this commit: cvs rdiff -u -r1.49 -r1.49.10.1 src/sys/net/if_atmsubr.c cvs rdiff -u -r1.188.8.2 -r1.188.8.3 src/sys/net/if_ethersubr.c cvs rdiff -u -r1.81 -r1.81.14.1 src/sys/net/if_fddisubr.c cvs rdiff -u -r1.136 -r1.136.8.1 src/sys/net/if_ppp.c cvs rdiff -u -r1.64 -r1.64.20.1 src/sys/netinet6/in6_var.h cvs rdiff -u -r1.19 -r1.19.2.1 src/sys/netinet6/ip6_flow.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/fs/ptyfs
Module Name:src Committed By: riz Date: Wed Oct 31 16:09:41 UTC 2012 Modified Files: src/sys/fs/ptyfs [netbsd-6]: ptyfs_subr.c Log Message: Pull up following revision(s) (requested by christos in ticket #639): sys/fs/ptyfs/ptyfs_subr.c: revision 1.24 fix the mystery of the bad directory times. To generate a diff of this commit: cvs rdiff -u -r1.23 -r1.23.8.1 src/sys/fs/ptyfs/ptyfs_subr.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/arch/xen/xen
Module Name:src Committed By: riz Date: Wed Oct 31 16:15:09 UTC 2012 Modified Files: src/sys/arch/xen/xen [netbsd-6]: xengnt.c Log Message: Pull up following revision(s) (requested by royger in ticket #640): sys/arch/xen/xen/xengnt.c: revision 1.25 xen: don't use grants 0-8 Not all grants from the first frame can be used, grants from 0 to 8 (both included) are reserved for external tools. Using this grants caused system crashes and fs corruption. Closes PR port-xen/47057 and port-xen/47056 Reviewed by bouyer@ To generate a diff of this commit: cvs rdiff -u -r1.22.2.1 -r1.22.2.2 src/sys/arch/xen/xen/xengnt.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/sys/arch/xen/xen
Module Name:src Committed By: riz Date: Wed Oct 31 16:15:28 UTC 2012 Modified Files: src/sys/arch/xen/xen [netbsd-6-0]: xengnt.c Log Message: Pull up following revision(s) (requested by royger in ticket #640): sys/arch/xen/xen/xengnt.c: revision 1.25 xen: don't use grants 0-8 Not all grants from the first frame can be used, grants from 0 to 8 (both included) are reserved for external tools. Using this grants caused system crashes and fs corruption. Closes PR port-xen/47057 and port-xen/47056 Reviewed by bouyer@ To generate a diff of this commit: cvs rdiff -u -r1.22.2.1 -r1.22.2.1.4.1 src/sys/arch/xen/xen/xengnt.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: Wed Oct 31 16:26:24 UTC 2012 Modified Files: src/doc [netbsd-6]: 3RDPARTY src/share/zoneinfo [netbsd-6]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #657] To generate a diff of this commit: cvs rdiff -u -r1.909.2.15 -r1.909.2.16 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.50.4.4 -r1.1.1.50.4.5 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.46.4.3 -r1.1.1.46.4.4 src/share/zoneinfo/southamerica 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: Wed Oct 31 16:27:00 UTC 2012 Modified Files: src/doc [netbsd-6-0]: 3RDPARTY src/share/zoneinfo [netbsd-6-0]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #657] To generate a diff of this commit: cvs rdiff -u -r1.909.2.14.2.1 -r1.909.2.14.2.2 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.50.4.3.4.1 -r1.1.1.50.4.3.4.2 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.46.4.3 -r1.1.1.46.4.3.4.1 \ src/share/zoneinfo/southamerica 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: Wed Oct 31 16:27:45 UTC 2012 Modified Files: src/doc [netbsd-6-0]: CHANGES-6.0.1 Log Message: Tickets 640, 657. To generate a diff of this commit: cvs rdiff -u -r1.1.2.8 -r1.1.2.9 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/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:28:20 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.1 Log Message: Tickets 638-640, 657. To generate a diff of this commit: cvs rdiff -u -r1.1.2.15 -r1.1.2.16 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: [netbsd-4-0] src
Module Name:src Committed By: riz Date: Wed Oct 31 16:38:23 UTC 2012 Modified Files: src/doc [netbsd-4-0]: 3RDPARTY src/share/zoneinfo [netbsd-4-0]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #1464] To generate a diff of this commit: cvs rdiff -u -r1.486.2.9.2.10 -r1.486.2.9.2.11 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.40.2.1.2.5 -r1.1.1.40.2.1.2.6 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.35.2.2.2.4 -r1.1.1.35.2.2.2.5 \ src/share/zoneinfo/southamerica Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-4-0] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:39:30 UTC 2012 Modified Files: src/doc [netbsd-4-0]: CHANGES-4.0.2 Log Message: Ticket 1464 To generate a diff of this commit: cvs rdiff -u -r1.1.2.113 -r1.1.2.114 src/doc/CHANGES-4.0.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-4] src
Module Name:src Committed By: riz Date: Wed Oct 31 16:40:15 UTC 2012 Modified Files: src/doc [netbsd-4]: 3RDPARTY src/share/zoneinfo [netbsd-4]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #1464] To generate a diff of this commit: cvs rdiff -u -r1.486.2.19 -r1.486.2.20 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.40.2.6 -r1.1.1.40.2.7 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.35.2.6 -r1.1.1.35.2.7 src/share/zoneinfo/southamerica Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-4] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:40:56 UTC 2012 Modified Files: src/doc [netbsd-4]: CHANGES-4.1 Log Message: Ticket 1464 To generate a diff of this commit: cvs rdiff -u -r1.1.2.255 -r1.1.2.256 src/doc/CHANGES-4.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-0] src
Module Name:src Committed By: riz Date: Wed Oct 31 16:46:10 UTC 2012 Modified Files: src/doc [netbsd-5-0]: 3RDPARTY src/share/zoneinfo [netbsd-5-0]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #1812] To generate a diff of this commit: cvs rdiff -u -r1.647.2.6.2.9 -r1.647.2.6.2.10 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.44.6.4 -r1.1.1.44.6.5 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.42.6.3 -r1.1.1.42.6.4 src/share/zoneinfo/southamerica Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-0] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:47:19 UTC 2012 Modified Files: src/doc [netbsd-5-0]: CHANGES-5.0.3 Log Message: Ticket 1812 To generate a diff of this commit: cvs rdiff -u -r1.1.2.87 -r1.1.2.88 src/doc/CHANGES-5.0.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-1] src
Module Name:src Committed By: riz Date: Wed Oct 31 16:47:54 UTC 2012 Modified Files: src/doc [netbsd-5-1]: 3RDPARTY src/share/zoneinfo [netbsd-5-1]: asia southamerica Log Message: doc/3RDPARTYpatch share/zoneinfo/asia patch share/zoneinfo/southamerica patch Import tzdata2012h from ftp://ftp.iana.org/tz/releases/tzdata2012h.tar.gz Changes from tzdata2012g to tzdata2012h: Bahia no longer has DST. (Thanks to Kelley Cook.) Tocantins has DST. (Thanks to Rodrigo Severo.) Israel has new DST rules next year. (Thanks to Ephraim Silverberg.) Jordan stays on DST this winter. (Thanks to Steffen Thorsen.) [apb, ticket #1812] To generate a diff of this commit: cvs rdiff -u -r1.647.2.12.2.5 -r1.647.2.12.2.6 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.44.10.4 -r1.1.1.44.10.5 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.42.10.3 -r1.1.1.42.10.4 src/share/zoneinfo/southamerica Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-1] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:48:13 UTC 2012 Modified Files: src/doc [netbsd-5-1]: CHANGES-5.1.3 Log Message: Ticket 1812. To generate a diff of this commit: cvs rdiff -u -r1.1.2.29 -r1.1.2.30 src/doc/CHANGES-5.1.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5] src
Module Name:src Committed By: riz Date: Wed Oct 31 16:50:03 UTC 2012 Modified Files: src/doc [netbsd-5]: 3RDPARTY src/share/zoneinfo [netbsd-5]: asia southamerica Log Message: Ticket 1812. To generate a diff of this commit: cvs rdiff -u -r1.647.2.20 -r1.647.2.21 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.44.2.4 -r1.1.1.44.2.5 src/share/zoneinfo/asia cvs rdiff -u -r1.1.1.42.2.3 -r1.1.1.42.2.4 src/share/zoneinfo/southamerica Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-1] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:51:10 UTC 2012 Modified Files: src/doc [netbsd-5-1]: 3RDPARTY Log Message: Fix last commit (ticket 1812, my fault) To generate a diff of this commit: cvs rdiff -u -r1.647.2.12.2.6 -r1.647.2.12.2.7 src/doc/3RDPARTY Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-5-0] src/doc
Module Name:src Committed By: riz Date: Wed Oct 31 16:51:53 UTC 2012 Modified Files: src/doc [netbsd-5-0]: 3RDPARTY Log Message: Fix last commit (ticket 1812, my fault) To generate a diff of this commit: cvs rdiff -u -r1.647.2.6.2.10 -r1.647.2.6.2.11 src/doc/3RDPARTY 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/i386/i386
Module Name:src Committed By: riz Date: Wed Oct 31 17:19:49 UTC 2012 Modified Files: src/sys/arch/i386/i386 [netbsd-6]: locore.S Log Message: Pull up following revision(s) (requested by chs in ticket #642): sys/arch/i386/i386/locore.S: revision 1.103 in osyscall, set the PSL_I bit into the correct field of the trapframe. it was going into tf_eip instead of tf_eflags, which would sometimes corrupt %eip and always return to user mode with interrupts disabled. this was found with a netbsd 1.0 binary, and dsl@ points out that this should also fix PR 41342. To generate a diff of this commit: cvs rdiff -u -r1.95.10.2 -r1.95.10.3 src/sys/arch/i386/i386/locore.S 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: Wed Oct 31 17:27:02 UTC 2012 Modified Files: src/share/man/man4 [netbsd-6]: puc.4 src/sys/dev/pci [netbsd-6]: pcidevs pucdata.c Log Message: sys/dev/pci/pucdata.c 1.77-1.82 sys/dev/pci/pcidevs 1.1125, 1.1129 via patch sys/dev/pci/pcidevs.h regen sys/dev/pci/pcidevs_data.h regen share/man/man4/puc.41.36-1.38 Add entries for puc(4) devices into pcidevs. Add some Intel devices from document (Intel 7 Series / C216 Chipset Family Platform Controller Hub (PCH) Family Specification Update) into pcidevs. Modify some devices in pcidevs to clarify. Add Intel chipset internal serial over lan devices. Closes PR/45567. Use PCI_VENDOR_* and PCI_PRODUCT_*. Fixes PR#46303. Add EXSYS EX-41098-2 UARTs support. The clock frequency is different from other card(s). Fixes PR#46362 reported by Wolfgang Stukenbrock. Add Lava Computers SSERIAL-PCI single port serial PCI card. Update the manual. To generate a diff of this commit: cvs rdiff -u -r1.35 -r1.35.4.1 src/share/man/man4/puc.4 cvs rdiff -u -r1.1102.2.8 -r1.1102.2.9 src/sys/dev/pci/pcidevs cvs rdiff -u -r1.76 -r1.76.8.1 src/sys/dev/pci/pucdata.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/dev/pci
Module Name:src Committed By: riz Date: Wed Oct 31 17:27:38 UTC 2012 Modified Files: src/sys/dev/pci [netbsd-6]: pcidevs.h pcidevs_data.h Log Message: Regen for ticket 643. To generate a diff of this commit: cvs rdiff -u -r1.1097.2.8 -r1.1097.2.9 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1096.2.8 -r1.1096.2.9 src/sys/dev/pci/pcidevs_data.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-6] src/sys
Module Name:src Committed By: riz Date: Wed Oct 31 17:30:21 UTC 2012 Modified Files: src/sys/kern [netbsd-6]: subr_cprng.c src/sys/netinet [netbsd-6]: tcp_subr.c Log Message: Pull up following revision(s) (requested by msaitoh in ticket #644): sys/netinet/tcp_subr.c: revision 1.248 sys/kern/subr_cprng.c: revision 1.12 Fix a bug that kmem_alloc() is called from the interrupt context. To generate a diff of this commit: cvs rdiff -u -r1.5.2.4 -r1.5.2.5 src/sys/kern/subr_cprng.c cvs rdiff -u -r1.246 -r1.246.2.1 src/sys/netinet/tcp_subr.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/doc
Module Name:src Committed By: riz Date: Wed Oct 31 17:32:01 UTC 2012 Modified Files: src/doc [netbsd-6]: CHANGES-6.1 Log Message: Tickets 642-644 To generate a diff of this commit: cvs rdiff -u -r1.1.2.16 -r1.1.2.17 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/dev/nand
Module Name:src Committed By: riz Date: Wed Oct 31 18:58:09 UTC 2012 Modified Files: src/sys/dev/nand: files.nand nand.c nand.h Log Message: Hook nand_samsung.c into the build, and use it if a legacy chip from Samsung is found. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 src/sys/dev/nand/files.nand cvs rdiff -u -r1.17 -r1.18 src/sys/dev/nand/nand.c cvs rdiff -u -r1.13 -r1.14 src/sys/dev/nand/nand.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/nand
Module Name:src Committed By: ahoka Date: Wed Oct 31 20:51:25 UTC 2012 Modified Files: src/sys/dev/nand: nand_samsung.c Log Message: Fill more info in nand chip structure. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/sys/dev/nand/nand_samsung.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/nand
Module Name:src Committed By: riz Date: Wed Oct 31 21:30:27 UTC 2012 Modified Files: src/sys/dev/nand: nand_samsung.c Log Message: Avoid a 'may be used uninitialized' warning. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 src/sys/dev/nand/nand_samsung.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/usb
Module Name:src Committed By: christos Date: Thu Nov 1 00:38:43 UTC 2012 Modified Files: src/sys/dev/usb: u3g.c Log Message: Match all pairs of bulkin-bulkout interfaces to ucom's, configuring multiple ucoms per modem as they are available, instead of picking up the last bulkin bulkout pair. This makes my Sierra U250 3G portion of the modem to work. To generate a diff of this commit: cvs rdiff -u -r1.26 -r1.27 src/sys/dev/usb/u3g.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/examples/pppd
Module Name:src Committed By: christos Date: Thu Nov 1 00:40:22 UTC 2012 Added Files: src/share/examples/pppd: sprint3G sprint3G.chat Log Message: add configurations to connect to Sprint's 3G network. To generate a diff of this commit: cvs rdiff -u -r0 -r1.1 src/share/examples/pppd/sprint3G \ src/share/examples/pppd/sprint3G.chat Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [agc-netpgp-standalone] src/crypto/external/bsd/netpgp/dist/src/libverify
Module Name:src Committed By: agc Date: Thu Nov 1 01:35:35 UTC 2012 Modified Files: src/crypto/external/bsd/netpgp/dist/src/libverify [agc-netpgp-standalone]: libverify.c verify.h Log Message: display revoked userids, and particularly, compromised and revoked userids To generate a diff of this commit: cvs rdiff -u -r1.1.2.10 -r1.1.2.11 \ src/crypto/external/bsd/netpgp/dist/src/libverify/libverify.c cvs rdiff -u -r1.1.2.9 -r1.1.2.10 \ src/crypto/external/bsd/netpgp/dist/src/libverify/verify.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [agc-netpgp-standalone] src/crypto/external/bsd/netpgp/tests/netpgpverify
Module Name:src Committed By: agc Date: Thu Nov 1 01:41:25 UTC 2012 Added Files: src/crypto/external/bsd/netpgp/tests/netpgpverify [agc-netpgp-standalone]: Makefile t_netpgpverify.sh Log Message: add some atf/kyua tests for netpgpverify % make test ... cd tests/netpgpverify && make && atf-run #create netpgpverify/Atffile # build netpgpverify/t_netpgpverify echo '#! /usr/bin/atf-sh' >t_netpgpverify.tmp cat t_netpgpverify.sh >>t_netpgpverify.tmp chmod +x t_netpgpverify.tmp mv t_netpgpverify.tmp t_netpgpverify atf2kyua: I: Removing stale Kyuafiles from /tmp/.XX.027471aa atf2kyua: I: Converting /usr/src/crypto/external/bsd/agc-netpgp-standalone/tests/netpgpverify/Atffile -> /tmp/.XX.027471aa/Kyuafile t_netpgpverify:netpgpverify_rsa -> passed [0.138s] t_netpgpverify:netpgpverify_dsa -> passed [0.119s] 2/2 passed (0 failed) Committed action 10 To generate a diff of this commit: cvs rdiff -u -r0 -r1.1.2.1 \ src/crypto/external/bsd/netpgp/tests/netpgpverify/Makefile \ src/crypto/external/bsd/netpgp/tests/netpgpverify/t_netpgpverify.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/marvell
Module Name:src Committed By: msaitoh Date: Thu Nov 1 02:46:41 UTC 2012 Modified Files: src/sys/dev/marvell: if_mvgbe.c Log Message: No functional change. - Change style a bit. - use "csc" for the variable name of struct mvgbec_softc in mvgbec_attach() for consistency. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/sys/dev/marvell/if_mvgbe.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/usr.sbin/npf/npfctl
Module Name:src Committed By: christos Date: Thu Nov 1 03:21:49 UTC 2012 Modified Files: src/usr.sbin/npf/npfctl: Makefile Log Message: put in /sbin To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 src/usr.sbin/npf/npfctl/Makefile 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
Module Name:src Committed By: christos Date: Thu Nov 1 03:26:44 UTC 2012 Modified Files: src/distrib/sets/lists/base: mi src/distrib/sets/lists/comp: mi Log Message: mv npfctl from /usr/sbin to /sbin so it is available before /usr is mounted. To generate a diff of this commit: cvs rdiff -u -r1.1009 -r1.1010 src/distrib/sets/lists/base/mi cvs rdiff -u -r1.1784 -r1.1785 src/distrib/sets/lists/comp/mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/etc/rc.d
Module Name:src Committed By: mrg Date: Thu Nov 1 06:06:15 UTC 2012 Modified Files: src/etc/rc.d: npf Log Message: catch up with npfctl moving to /sbin. untested, but i guess so was the move itself ;) To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/etc/rc.d/npf 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: msaitoh Date: Thu Nov 1 06:36:30 UTC 2012 Modified Files: src/sys/net: if.c Log Message: Fix a bug that SIOCZIFDATA clears if_lastchage by zero. Update if_lastchange with getnanotime(). To generate a diff of this commit: cvs rdiff -u -r1.260 -r1.261 src/sys/net/if.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.