CVS commit: src/sys
Module Name:src Committed By: ozaki-r Date: Thu Jul 27 06:59:28 UTC 2017 Modified Files: src/sys/netinet: ip_input.c src/sys/netinet6: ip6_input.c src/sys/netipsec: ipsec_output.c ipsec_private.h key.c xform_ah.c xform_esp.c xform_ipcomp.c Log Message: Don't acquire global locks for IPsec if NET_MPSAFE Note that the change is just to make testing easy and IPsec isn't MP-safe yet. To generate a diff of this commit: cvs rdiff -u -r1.359 -r1.360 src/sys/netinet/ip_input.c cvs rdiff -u -r1.180 -r1.181 src/sys/netinet6/ip6_input.c cvs rdiff -u -r1.56 -r1.57 src/sys/netipsec/ipsec_output.c cvs rdiff -u -r1.4 -r1.5 src/sys/netipsec/ipsec_private.h cvs rdiff -u -r1.194 -r1.195 src/sys/netipsec/key.c cvs rdiff -u -r1.68 -r1.69 src/sys/netipsec/xform_ah.c cvs rdiff -u -r1.66 -r1.67 src/sys/netipsec/xform_esp.c cvs rdiff -u -r1.47 -r1.48 src/sys/netipsec/xform_ipcomp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: msaitoh Date: Thu Jul 27 03:21:43 UTC 2017 Modified Files: src/sys/dev/pci: if_wm.c if_wmvar.h Log Message: Add WM_F_WA_I210_CLSEM flag for a workaround. FreeBSD/Linux drivers say "In rare circumstances, the SW semaphore may already be held unintentionally." on I21[01]. PXE boot is one of the case. XXX pullup-[678]. To generate a diff of this commit: cvs rdiff -u -r1.532 -r1.533 src/sys/dev/pci/if_wm.c cvs rdiff -u -r1.36 -r1.37 src/sys/dev/pci/if_wmvar.h 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/pci
Module Name:src Committed By: nonaka Date: Thu Jul 27 02:11:24 UTC 2017 Modified Files: src/sys/external/bsd/drm2/pci: drm_pci.c Log Message: PR/52409: Avoid panic at resume. XXX: pullup-8 To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 src/sys/external/bsd/drm2/pci/drm_pci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/bin/sh
Module Name:src Committed By: kre Date: Wed Jul 26 23:09:41 UTC 2017 Modified Files: src/bin/sh: parser.c Log Message: PR bin/48498 PR bin/52426 Don't ignore unexpected reserved words after ';' Don't allow any random token type as a case stmt pattern, only a word. Those are ancient ash bugs and do not affect correct scripts. Don't ignore redirects in a case stmt list where the list is nothing but redirects (if the pattern matches, the redirects should be performed). That was introduced when a redirect only case stmt list was allowed (older shells had generated a syntax error.) Random cleanups/refactoring taken from or inspired by the FreeBSD sh parser ... use makename() consistently to create a NARG node - we were using it in a couple of places but most NARG node creation was open coded. Introduce consumetoken() (from FreeBSD) to handle the fairly common case where exactly one token type must come next, and we need to check that, and skip past it when found (or error) and linebreak() (new) to handle places where optional \n's are permitted. Both previously open coded. Simplify list() by removing its second arg, which was only ever used when handling the end of a `` (old style command substitution). Simply move the code from inside list() to just after its call in the `` case (from FreeBSD.) To generate a diff of this commit: cvs rdiff -u -r1.141 -r1.142 src/bin/sh/parser.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [jdolecek-ncq] src/sys/dev/ata
Module Name:src Committed By: jdolecek Date: Wed Jul 26 18:12:12 UTC 2017 Modified Files: src/sys/dev/ata [jdolecek-ncq]: satapmp_subr.c Log Message: write the device and channel for port multiplier attach (not just the atabus), so it's easier to check To generate a diff of this commit: cvs rdiff -u -r1.12.24.4 -r1.12.24.5 src/sys/dev/ata/satapmp_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/bin/sh
Module Name:src Committed By: kre Date: Wed Jul 26 17:50:21 UTC 2017 Modified Files: src/tests/bin/sh: t_syntax.sh Log Message: PR bin/48498 PR bin/52426 Add two new sh syntax test cases to check for bug fixes for the parser problems (syntax errors unidentified) reported in the two PRs. In the latter case, also include some tests that test similar looking, valid, syntax - to make sure the fix for the PR does not break code that should not fail. This is not needed for the earlier PR as other tests, and just normal parsing, is sufficient. These tests have been verified to fail with a current /bin/sh and to pass with the sh updates that are to be committed soon -- and because that fix is expected within hours, the tests are not marked as expected to fail, just let them actually fail for now. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/tests/bin/sh/t_syntax.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/lfs
Module Name:src Committed By: maya Date: Wed Jul 26 16:42:37 UTC 2017 Modified Files: src/sys/ufs/lfs: lfs.h lfs_extern.h lfs_segment.c lfs_subr.c lfs_syscalls.c lfs_vfsops.c lfs_vnops.c Log Message: change lfs_nextsegsleep and lfs_allclean_wakeup to use condvar XXX had to use lfs_lock in lfs_segwait, removed kernel_lock, is this appropriate? To generate a diff of this commit: cvs rdiff -u -r1.202 -r1.203 src/sys/ufs/lfs/lfs.h cvs rdiff -u -r1.112 -r1.113 src/sys/ufs/lfs/lfs_extern.h cvs rdiff -u -r1.273 -r1.274 src/sys/ufs/lfs/lfs_segment.c cvs rdiff -u -r1.96 -r1.97 src/sys/ufs/lfs/lfs_subr.c cvs rdiff -u -r1.174 -r1.175 src/sys/ufs/lfs/lfs_syscalls.c cvs rdiff -u -r1.359 -r1.360 src/sys/ufs/lfs/lfs_vfsops.c cvs rdiff -u -r1.317 -r1.318 src/sys/ufs/lfs/lfs_vnops.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/doc
Module Name:src Committed By: snj Date: Wed Jul 26 16:11:31 UTC 2017 Modified Files: src/doc [netbsd-7]: CHANGES-7.2 Log Message: tickets 1435, 1449, 1450, 1454, 1455, 1458, 1559 To generate a diff of this commit: cvs rdiff -u -r1.1.2.32 -r1.1.2.33 src/doc/CHANGES-7.2 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-1] src/doc
Module Name:src Committed By: snj Date: Wed Jul 26 16:07:41 UTC 2017 Modified Files: src/doc [netbsd-7-1]: CHANGES-7.1.1 Log Message: 1449, 1450 To generate a diff of this commit: cvs rdiff -u -r1.1.2.18 -r1.1.2.19 src/doc/CHANGES-7.1.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-0] src/doc
Module Name:src Committed By: snj Date: Wed Jul 26 16:04:26 UTC 2017 Modified Files: src/doc [netbsd-7-0]: CHANGES-7.0.3 Log Message: 1449, 1450 To generate a diff of this commit: cvs rdiff -u -r1.1.2.49 -r1.1.2.50 src/doc/CHANGES-7.0.3 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/pci
Module Name:src Committed By: snj Date: Wed Jul 26 15:58:58 UTC 2017 Modified Files: src/sys/dev/pci [netbsd-7]: if_iwm.c Log Message: Pull up following revision(s) (requested by nonaka in ticket #1459): sys/dev/pci/if_iwm.c: revision 1.72 iwm(4): match Wireless 8265 device. To generate a diff of this commit: cvs rdiff -u -r1.75.2.2 -r1.75.2.3 src/sys/dev/pci/if_iwm.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/pci
Module Name:src Committed By: snj Date: Wed Jul 26 15:57:53 UTC 2017 Modified Files: src/sys/dev/pci [netbsd-7]: aceride.c pciide_acer_reg.h Log Message: Pull up following revision(s) (requested by nakayama in ticket #1458): sys/dev/pci/aceride.c: revision 1.37 sys/dev/pci/pciide_acer_reg.h: revision 1.13 Apply workaround from FreeBSD to fix read data corruption observed on Fire V100 and mSATA-SSD with mSATA to IDE adapter. The patch is from port-sparc64@. To generate a diff of this commit: cvs rdiff -u -r1.36 -r1.36.4.1 src/sys/dev/pci/aceride.c cvs rdiff -u -r1.12 -r1.12.38.1 src/sys/dev/pci/pciide_acer_reg.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/libexec/ld.elf_so
Module Name:src Committed By: snj Date: Wed Jul 26 15:54:15 UTC 2017 Modified Files: src/libexec/ld.elf_so [netbsd-7]: tls.c Log Message: Pull up following revision(s) (requested by joerg in ticket #1455): libexec/ld.elf_so/tls.c: revision 1.11 Fix two bugs related to promotion of DSO TLS blocks into the static thread allocation: (1) Set the DTV vector up whenever an offset into the static allocation is assigned, even if the block itself is not initialized. This has been seen in libstdc++. (2) Do not free a DTV block if it is part of the static thread allocation. To generate a diff of this commit: cvs rdiff -u -r1.9.4.1 -r1.9.4.2 src/libexec/ld.elf_so/tls.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/sbin/route
Module Name:src Committed By: snj Date: Wed Jul 26 15:52:58 UTC 2017 Modified Files: src/sbin/route [netbsd-7]: rtutil.c Log Message: Pull up following revision(s) (requested by manu in ticket #1454): sbin/route/rtutil.c: revision 1.10 Fix route and netstat -r output when built with -DSMALL A missing \n caused the routing table to be printed all in one line if -DSMALL was used. To generate a diff of this commit: cvs rdiff -u -r1.4.2.3 -r1.4.2.4 src/sbin/route/rtutil.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
Module Name:src Committed By: snj Date: Wed Jul 26 15:51:45 UTC 2017 Modified Files: src/doc [netbsd-7]: 3RDPARTY src/external/public-domain/tz/dist [netbsd-7]: NEWS TZDATA_VERSION africa iso3166.tab northamerica version Log Message: Pull up following revision(s) (requested by kre in ticket #1450): doc/3RDPARTY: revision 1.1425 via patch external/public-domain/tz/dist/NEWS: up to 1.1.1.18 external/public-domain/tz/dist/TZDATA_VERSION: up to 1.8 external/public-domain/tz/dist/africa: up to 1.1.1.11 external/public-domain/tz/dist/iso3166.tab: up to 1.1.1.5 external/public-domain/tz/dist/northamerica: up to 1.1.1.16 external/public-domain/tz/dist/version: up to 1.1.1.5 Update tzdata to 2017b. To generate a diff of this commit: cvs rdiff -u -r1.1145.2.43 -r1.1145.2.44 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.1.4.7 -r1.1.1.1.4.8 \ src/external/public-domain/tz/dist/NEWS \ src/external/public-domain/tz/dist/northamerica cvs rdiff -u -r1.6.4.3 -r1.6.4.4 \ src/external/public-domain/tz/dist/TZDATA_VERSION cvs rdiff -u -r1.1.1.1.4.5 -r1.1.1.1.4.6 \ src/external/public-domain/tz/dist/africa cvs rdiff -u -r1.1.1.1.4.3 -r1.1.1.1.4.4 \ src/external/public-domain/tz/dist/iso3166.tab cvs rdiff -u -r1.1.1.3.4.3 -r1.1.1.3.4.4 \ src/external/public-domain/tz/dist/version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-1] src
Module Name:src Committed By: snj Date: Wed Jul 26 15:51:13 UTC 2017 Modified Files: src/doc [netbsd-7-1]: 3RDPARTY src/external/public-domain/tz/dist [netbsd-7-1]: NEWS TZDATA_VERSION africa iso3166.tab northamerica version Log Message: Pull up following revision(s) (requested by kre in ticket #1450): doc/3RDPARTY: revision 1.1425 via patch external/public-domain/tz/dist/NEWS: up to 1.1.1.18 external/public-domain/tz/dist/TZDATA_VERSION: up to 1.8 external/public-domain/tz/dist/africa: up to 1.1.1.11 external/public-domain/tz/dist/iso3166.tab: up to 1.1.1.5 external/public-domain/tz/dist/northamerica: up to 1.1.1.16 external/public-domain/tz/dist/version: up to 1.1.1.5 Update tzdata to 2017b. To generate a diff of this commit: cvs rdiff -u -r1.1145.2.37.2.4 -r1.1145.2.37.2.5 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.1.4.7 -r1.1.1.1.4.7.2.1 \ src/external/public-domain/tz/dist/NEWS \ src/external/public-domain/tz/dist/northamerica cvs rdiff -u -r1.6.4.3 -r1.6.4.3.2.1 \ src/external/public-domain/tz/dist/TZDATA_VERSION cvs rdiff -u -r1.1.1.1.4.5 -r1.1.1.1.4.5.2.1 \ src/external/public-domain/tz/dist/africa cvs rdiff -u -r1.1.1.1.4.3 -r1.1.1.1.4.3.2.1 \ src/external/public-domain/tz/dist/iso3166.tab cvs rdiff -u -r1.1.1.3.4.3 -r1.1.1.3.4.3.2.1 \ src/external/public-domain/tz/dist/version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-0] src
Module Name:src Committed By: snj Date: Wed Jul 26 15:50:28 UTC 2017 Modified Files: src/doc [netbsd-7-0]: 3RDPARTY src/external/public-domain/tz/dist [netbsd-7-0]: NEWS TZDATA_VERSION africa iso3166.tab northamerica version Log Message: Pull up following revision(s) (requested by kre in ticket #1450): doc/3RDPARTY: revision 1.1425 via patch external/public-domain/tz/dist/NEWS: up to 1.1.1.18 external/public-domain/tz/dist/TZDATA_VERSION: up to 1.8 external/public-domain/tz/dist/africa: up to 1.1.1.11 external/public-domain/tz/dist/iso3166.tab: up to 1.1.1.5 external/public-domain/tz/dist/northamerica: up to 1.1.1.16 external/public-domain/tz/dist/version: up to 1.1.1.5 Update tzdata to 2017b. To generate a diff of this commit: cvs rdiff -u -r1.1145.2.18.2.21 -r1.1145.2.18.2.22 src/doc/3RDPARTY cvs rdiff -u -r1.1.1.1.4.4.2.3 -r1.1.1.1.4.4.2.4 \ src/external/public-domain/tz/dist/NEWS \ src/external/public-domain/tz/dist/northamerica cvs rdiff -u -r1.6.2.3 -r1.6.2.4 \ src/external/public-domain/tz/dist/TZDATA_VERSION cvs rdiff -u -r1.1.1.1.4.3.2.2 -r1.1.1.1.4.3.2.3 \ src/external/public-domain/tz/dist/africa cvs rdiff -u -r1.1.1.1.4.1.2.2 -r1.1.1.1.4.1.2.3 \ src/external/public-domain/tz/dist/iso3166.tab cvs rdiff -u -r1.1.1.3.2.3 -r1.1.1.3.2.4 \ src/external/public-domain/tz/dist/version Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-0] src/gnu/dist/gettext/gettext-tools/doc
Module Name:src Committed By: snj Date: Wed Jul 26 15:38:31 UTC 2017 Modified Files: src/gnu/dist/gettext/gettext-tools/doc [netbsd-7-0]: texi2html Log Message: Apply patch (requested by mrg in ticket #1449): Don't use defined() on perl arrays. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.1.1.1.64.1 \ src/gnu/dist/gettext/gettext-tools/doc/texi2html Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7-1] src/gnu/dist/gettext/gettext-tools/doc
Module Name:src Committed By: snj Date: Wed Jul 26 15:38:12 UTC 2017 Modified Files: src/gnu/dist/gettext/gettext-tools/doc [netbsd-7-1]: texi2html Log Message: Apply patch (requested by mrg in ticket #1449): Don't use defined() on perl arrays. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.1.1.1.68.1 \ src/gnu/dist/gettext/gettext-tools/doc/texi2html Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/gnu/dist/gettext/gettext-tools/doc
Module Name:src Committed By: snj Date: Wed Jul 26 15:37:58 UTC 2017 Modified Files: src/gnu/dist/gettext/gettext-tools/doc [netbsd-7]: texi2html Log Message: Apply patch (requested by mrg in ticket #1449): Don't use defined() on perl arrays. To generate a diff of this commit: cvs rdiff -u -r1.1.1.1 -r1.1.1.1.62.1 \ src/gnu/dist/gettext/gettext-tools/doc/texi2html Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/share/man/man7
Module Name:src Committed By: leot Date: Wed Jul 26 15:32:09 UTC 2017 Modified Files: src/share/man/man7: release.7 Log Message: Document xetc.tgz installation set. Thanks to for the review! To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.38 src/share/man/man7/release.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src
Module Name:src Committed By: snj Date: Wed Jul 26 15:22:37 UTC 2017 Modified Files: src/external/broadcom/rpi-firmware/dist [netbsd-7]: bootcode.bin fixup.dat fixup_cd.dat start.elf start_cd.elf src/sys/arch/arm/arm32 [netbsd-7]: cpu.c src/sys/arch/arm/broadcom [netbsd-7]: bcm2835_bsc.c bcm2835_plcom.c src/sys/arch/arm/cortex [netbsd-7]: gtmr.c src/sys/arch/arm/include [netbsd-7]: armreg.h vfpreg.h src/sys/arch/arm/vfp [netbsd-7]: vfp_init.c src/sys/arch/evbarm/rpi [netbsd-7]: rpi_machdep.c vcprop.h Log Message: Pull up following revision(s) (requested by jmcneill in ticket #1435): sys/arch/arm/arm32/cpu.c: 1.113 via patch sys/arch/arm/broadcom/bcm2835_bsc.c: 1.6 via patch sys/arch/arm/broadcom/bcm2835_plcom.c: 1.4 via patch sys/arch/arm/cortex/gtmr.c: 1.18 via patch sys/arch/arm/include/armreg.h: 1.110 via patch sys/arch/arm/include/vfpreg.h: 1.15 via patch sys/arch/arm/vfp/vfp_init.c: 1.50 via patch sys/arch/evbarm/rpi/rpi_machdep.c: 1.59, 1.70-1.72 via patch sys/arch/evbarm/rpi/vcprop.h: 1.16 Get the RPI3 working (in aarch32 mode) by recognising Cortex A53 CPUs. While I'm here add some A57/A72 info as well. My RPI3 works with FB console - the uart needs some help with its clocks. -- Do invalidate the cache as RPI2 build with Clang can't fetch the memory config otherwise. -- Use the VC property mailbox to request the UART clock rate and use it appropriately Newer firmwares use 48MHz -- Disable BSC0 on Raspberry Pi 3 and Zero W boards. -- Interrupts are enabled before the timer is configured. Ensure that the timer is disabled when attaching so it doesn't go crazy between the time interrupts are enabled and clocks are initialized. My RPI3 makes it multi-user now. -- Enable UART0 (PL011) on GPIO header for Raspberry Pi 3 / Zero W To generate a diff of this commit: cvs rdiff -u -r1.5.2.2 -r1.5.2.3 \ src/external/broadcom/rpi-firmware/dist/bootcode.bin \ src/external/broadcom/rpi-firmware/dist/fixup.dat \ src/external/broadcom/rpi-firmware/dist/fixup_cd.dat \ src/external/broadcom/rpi-firmware/dist/start.elf \ src/external/broadcom/rpi-firmware/dist/start_cd.elf cvs rdiff -u -r1.104.4.1 -r1.104.4.2 src/sys/arch/arm/arm32/cpu.c cvs rdiff -u -r1.2.4.1 -r1.2.4.2 src/sys/arch/arm/broadcom/bcm2835_bsc.c cvs rdiff -u -r1.1 -r1.1.18.1 src/sys/arch/arm/broadcom/bcm2835_plcom.c cvs rdiff -u -r1.8.2.2 -r1.8.2.3 src/sys/arch/arm/cortex/gtmr.c cvs rdiff -u -r1.97.2.2 -r1.97.2.3 src/sys/arch/arm/include/armreg.h cvs rdiff -u -r1.13 -r1.13.4.1 src/sys/arch/arm/include/vfpreg.h cvs rdiff -u -r1.41.2.2 -r1.41.2.3 src/sys/arch/arm/vfp/vfp_init.c cvs rdiff -u -r1.43.2.6 -r1.43.2.7 src/sys/arch/evbarm/rpi/rpi_machdep.c cvs rdiff -u -r1.9 -r1.9.2.1 src/sys/arch/evbarm/rpi/vcprop.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/lfs
Module Name:src Committed By: maya Date: Wed Jul 26 15:07:27 UTC 2017 Modified Files: src/sys/ufs/lfs: lfs_segment.c Log Message: Revert r1.272 fix to PR kern/52301, the performance hit is making things unusable. To generate a diff of this commit: cvs rdiff -u -r1.272 -r1.273 src/sys/ufs/lfs/lfs_segment.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/ufs/lfs
Module Name:src Committed By: maya Date: Wed Jul 26 14:39:00 UTC 2017 Modified Files: src/sys/ufs/lfs: lfs_subr.c Log Message: Deduplicate sanity check that seglock is held on segunlock To generate a diff of this commit: cvs rdiff -u -r1.95 -r1.96 src/sys/ufs/lfs/lfs_subr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libm
Module Name:src Committed By: he Date: Wed Jul 26 09:53:09 UTC 2017 Modified Files: src/lib/libm: Makefile Log Message: Add s_nearbyint.c to alpha, ia64, riscv, mips, powerpc, and sh3 ports. To generate a diff of this commit: cvs rdiff -u -r1.192 -r1.193 src/lib/libm/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libm
Module Name:src Committed By: he Date: Wed Jul 26 09:42:12 UTC 2017 Modified Files: src/lib/libm: Makefile Log Message: Add some blank lines to separate the different CPU archs, for a minimal readability improvement. To generate a diff of this commit: cvs rdiff -u -r1.191 -r1.192 src/lib/libm/Makefile 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: ozaki-r Date: Wed Jul 26 09:18:15 UTC 2017 Modified Files: src/sys/netipsec: ipsec.h key.c Log Message: Use pslist(9) for sptree To generate a diff of this commit: cvs rdiff -u -r1.56 -r1.57 src/sys/netipsec/ipsec.h cvs rdiff -u -r1.193 -r1.194 src/sys/netipsec/key.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/dev/pci
Module Name:src Committed By: msaitoh Date: Wed Jul 26 08:58:45 UTC 2017 Modified Files: src/sys/dev/pci: pcidevs.h pcidevs_data.h Log Message: Regen. To generate a diff of this commit: cvs rdiff -u -r1.1287 -r1.1288 src/sys/dev/pci/pcidevs.h cvs rdiff -u -r1.1286 -r1.1287 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: src/sys/dev/pci
Module Name:src Committed By: msaitoh Date: Wed Jul 26 08:57:24 UTC 2017 Modified Files: src/sys/dev/pci: pcidevs Log Message: Add Intel 5520/X58 QuickPath from OpenBSD. To generate a diff of this commit: cvs rdiff -u -r1.1294 -r1.1295 src/sys/dev/pci/pcidevs 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: msaitoh Date: Wed Jul 26 08:09:59 UTC 2017 Modified Files: src/sys/dev/pci: if_wm.c Log Message: On 8254[17] with SPI ROM, wm_nvm_set_addrbits_size_eecd() calls wm_nvm_read(), so it's required to set flags and functions before calling it. It was broken again in if_wm.c rev. 1.530 (see also 1.313). Tested with Dell Power Edge 1850. To generate a diff of this commit: cvs rdiff -u -r1.531 -r1.532 src/sys/dev/pci/if_wm.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: maya Date: Wed Jul 26 07:45:05 UTC 2017 Modified Files: src/sys/dev/usb: uaudio.c Log Message: uaudio: don't block suspend. audio after resume hasn't been fully tested due to other issues, but the problem machine resumes. tested by Ricardo Mottola To generate a diff of this commit: cvs rdiff -u -r1.154 -r1.155 src/sys/dev/usb/uaudio.c 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: ozaki-r Date: Wed Jul 26 07:39:54 UTC 2017 Modified Files: src/sys/netipsec: ipsec.c Log Message: Fix indentation Pointed out by knakahara@ To generate a diff of this commit: cvs rdiff -u -r1.111 -r1.112 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: [netbsd-8] src/doc
Module Name:src Committed By: martin Date: Wed Jul 26 07:40:01 UTC 2017 Modified Files: src/doc [netbsd-8]: CHANGES-8.0 Log Message: Tickets #158 - #161 To generate a diff of this commit: cvs rdiff -u -r1.1.2.32 -r1.1.2.33 src/doc/CHANGES-8.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-8] src/sys/arch/dreamcast
Module Name:src Committed By: martin Date: Wed Jul 26 07:34:37 UTC 2017 Modified Files: src/sys/arch/dreamcast/conf [netbsd-8]: G1IDE GENERIC src/sys/arch/dreamcast/dev/g2 [netbsd-8]: aica.c Log Message: Pull up following revision(s) (requested by nat in ticket #160): sys/arch/dreamcast/conf/G1IDE: revision 1.2 sys/arch/dreamcast/conf/GENERIC: revision 1.126 sys/arch/dreamcast/dev/g2/aica.c: revision 1.23 Dreamcast audio only supports playback so set it in the props. This makes dreamcast audio work again. Tested by Bjorn Johannesson. cvs: -- Use the correct attachment for dreamcast audio. Found and tested by Bjorn Johannesson on port-dreamcast. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.12.1 src/sys/arch/dreamcast/conf/G1IDE cvs rdiff -u -r1.125 -r1.125.8.1 src/sys/arch/dreamcast/conf/GENERIC cvs rdiff -u -r1.22 -r1.22.42.1 src/sys/arch/dreamcast/dev/g2/aica.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-8] src/sys/arch
Module Name:src Committed By: martin Date: Wed Jul 26 07:32:07 UTC 2017 Modified Files: src/sys/arch/arm/sunxi [netbsd-8]: files.sunxi src/sys/arch/evbarm/conf [netbsd-8]: SUNXI Added Files: src/sys/arch/arm/sunxi [netbsd-8]: sunxi_wdt.c Log Message: Pull up following revision(s) (requested by jmcneill in ticket #159): sys/arch/evbarm/conf/SUNXI: revision 1.18 sys/arch/arm/sunxi/sunxi_wdt.c: revision 1.1 sys/arch/arm/sunxi/files.sunxi: revision 1.14 Add watchdog timer support. To generate a diff of this commit: cvs rdiff -u -r1.12.4.3 -r1.12.4.4 src/sys/arch/arm/sunxi/files.sunxi cvs rdiff -u -r0 -r1.1.2.2 src/sys/arch/arm/sunxi/sunxi_wdt.c cvs rdiff -u -r1.17.4.3 -r1.17.4.4 src/sys/arch/evbarm/conf/SUNXI Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-8] src/sys/kern
Module Name:src Committed By: martin Date: Wed Jul 26 07:29:34 UTC 2017 Modified Files: src/sys/kern [netbsd-8]: sched_4bsd.c Log Message: Pull up following revision(s) (requested by maxv in ticket #158): sys/kern/sched_4bsd.c: revision 1.31-1.33 explain a bit - Revert rev1.26. l_estcpu is increased by only one cpu, not all of them. - Should be loadfactor(). To generate a diff of this commit: cvs rdiff -u -r1.30 -r1.30.20.1 src/sys/kern/sched_4bsd.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.