CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Dec 1 08:12:09 UTC 2014 Modified Files: src/sys/dev/usb [nick-nhusb]: ehci.c motg.c ohci.c uhci.c usbdivar.h xhci.c Log Message: Remove usbd_bus no_intrs member it was (virtually) unused. To generate a diff of this commit: cvs rdiff -u -r1.234.2.4 -r1.234.2.5 src/sys/dev/usb/ehci.c cvs rdiff -u -r1.12.2.2 -r1.12.2.3 src/sys/dev/usb/motg.c cvs rdiff -u -r1.254.2.3 -r1.254.2.4 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.264.4.3 -r1.264.4.4 src/sys/dev/usb/uhci.c cvs rdiff -u -r1.109.2.1 -r1.109.2.2 src/sys/dev/usb/usbdivar.h cvs rdiff -u -r1.28.2.1 -r1.28.2.2 src/sys/dev/usb/xhci.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/conf
Module Name:src Committed By: matt Date: Mon Dec 1 08:39:43 UTC 2014 Modified Files: src/sys/arch/arm/conf: files.arm Log Message: Add CPU_CORTEXA17 To generate a diff of this commit: cvs rdiff -u -r1.128 -r1.129 src/sys/arch/arm/conf/files.arm Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/arm/include
Module Name:src Committed By: martin Date: Mon Dec 1 08:59:04 UTC 2014 Modified Files: src/sys/arch/arm/include [netbsd-7]: profile.h Log Message: Pull up following revision(s) (requested by skrll in ticket #273): sys/arch/arm/include/profile.h: revision 1.16 Fix __mcount in the !(__ARM_EABI__) case by popping the right number of registers on exit. To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.14.2.1 src/sys/arch/arm/include/profile.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/net/npf
Module Name:src Committed By: martin Date: Mon Dec 1 09:02:26 UTC 2014 Modified Files: src/sys/net/npf [netbsd-7]: npf_nat.c npf_ruleset.c Log Message: Pull up following revision(s) (requested by rmind in ticket #274): sys/net/npf/npf_nat.c: revision 1.35 sys/net/npf/npf_ruleset.c: revision 1.38 NPF: fix the reference counting and share the active NAT portmap correctly when performing the reload. Should fixes PR/49412, reported by kardel@. To generate a diff of this commit: cvs rdiff -u -r1.32.2.1 -r1.32.2.2 src/sys/net/npf/npf_nat.c cvs rdiff -u -r1.37 -r1.37.2.1 src/sys/net/npf/npf_ruleset.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: martin Date: Mon Dec 1 09:31:40 UTC 2014 Modified Files: src/external/bsd/smbfs/dist/lib/smb [netbsd-7]: ctx.c src/external/bsd/smbfs/dist/mount_smbfs [netbsd-7]: mount_smbfs.8 src/external/bsd/smbfs/dist/smbutil [netbsd-7]: smbutil.1 src/sys/fs/smbfs [netbsd-7]: smbfs_node.c smbfs_smb.c smbfs_subr.c smbfs_subr.h src/sys/netsmb [netbsd-7]: iconv.c mchain.h smb_subr.c subr_mchain.c src/sys/rump/dev/lib/libnetsmb [netbsd-7]: Makefile Added Files: src/sys/rump/dev/lib/libnetsmb [netbsd-7]: netsmb_iconv.c netsmb_user.c netsmb_user.h Log Message: Pull up following revision(s) (requested by nakayama in ticket #275): sys/rump/dev/lib/libnetsmb/netsmb_iconv.c: revision 1.1 external/bsd/smbfs/dist/mount_smbfs/mount_smbfs.8: revision 1.3 sys/netsmb/smb_subr.c: revision 1.37 external/bsd/smbfs/dist/mount_smbfs/mount_smbfs.8: revision 1.4 sys/fs/smbfs/smbfs_subr.c: revision 1.17 sys/rump/dev/lib/libnetsmb/Makefile: revision 1.5 sys/fs/smbfs/smbfs_smb.c: revision 1.46 sys/fs/smbfs/smbfs_node.c: revision 1.52 sys/netsmb/mchain.h: revision 1.10 external/bsd/smbfs/dist/lib/smb/ctx.c: revision 1.3 sys/netsmb/subr_mchain.c: revision 1.23 sys/rump/dev/lib/libnetsmb/netsmb_user.c: revision 1.1 sys/rump/dev/lib/libnetsmb/netsmb_user.c: revision 1.2 sys/rump/dev/lib/libnetsmb/netsmb_user.c: revision 1.3 sys/rump/dev/lib/libnetsmb/netsmb_user.h: revision 1.1 sys/netsmb/iconv.c: revision 1.14 external/bsd/smbfs/dist/smbutil/smbutil.1: revision 1.3 sys/fs/smbfs/smbfs_subr.h: revision 1.22 Make rump_smbfs(8) uses host iconv(3) to convert filenames character set on NetBSD hosts. Adjust smbfs/netsmb for filenames byte length changes that come as a result of iconv conversion. Most codes are taken from FreeBSD. Disable unused codes that causes SIGBUS or SIGSEGV if character sets option (-E) is specified to mount_smbfs/rump_smbfs. Adjust man page accordingly. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.6.1 src/external/bsd/smbfs/dist/lib/smb/ctx.c cvs rdiff -u -r1.2 -r1.2.6.1 \ src/external/bsd/smbfs/dist/mount_smbfs/mount_smbfs.8 cvs rdiff -u -r1.2 -r1.2.6.1 src/external/bsd/smbfs/dist/smbutil/smbutil.1 cvs rdiff -u -r1.51 -r1.51.4.1 src/sys/fs/smbfs/smbfs_node.c cvs rdiff -u -r1.44.12.1 -r1.44.12.2 src/sys/fs/smbfs/smbfs_smb.c cvs rdiff -u -r1.16 -r1.16.12.1 src/sys/fs/smbfs/smbfs_subr.c cvs rdiff -u -r1.21 -r1.21.12.1 src/sys/fs/smbfs/smbfs_subr.h cvs rdiff -u -r1.13 -r1.13.4.1 src/sys/netsmb/iconv.c cvs rdiff -u -r1.9 -r1.9.34.1 src/sys/netsmb/mchain.h cvs rdiff -u -r1.36 -r1.36.28.1 src/sys/netsmb/smb_subr.c cvs rdiff -u -r1.22 -r1.22.14.1 src/sys/netsmb/subr_mchain.c cvs rdiff -u -r1.4 -r1.4.4.1 src/sys/rump/dev/lib/libnetsmb/Makefile cvs rdiff -u -r0 -r1.1.4.2 src/sys/rump/dev/lib/libnetsmb/netsmb_iconv.c \ src/sys/rump/dev/lib/libnetsmb/netsmb_user.h cvs rdiff -u -r0 -r1.3.4.2 src/sys/rump/dev/lib/libnetsmb/netsmb_user.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/kern
Module Name:src Committed By: martin Date: Mon Dec 1 09:54:50 UTC 2014 Modified Files: src/sys/kern [netbsd-7]: vfs_syscalls.c Log Message: Pull up following revision(s) (requested by manu in ticket #276): sys/kern/vfs_syscalls.c: revision 1.492 Do not follow symlinks in sys_unmount() There are situations where the underlying filesystem is unreachable (e.g: NFS) causing symlink resolution to hang. Such a situation should be avoided by using umount -f -R (force and raw), but while -R causes the symlink resolution to be skipped in umount(8), the kernel was still doing it in sys_unmount(). This changes fixes that. When the -R flag is not given, umount(8) does symlinks resolution through realpath(3) before calling unmount(2), hence not doing it in the kernel would not change behavior. To generate a diff of this commit: cvs rdiff -u -r1.490 -r1.490.2.1 src/sys/kern/vfs_syscalls.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/netinet
Module Name:src Committed By: martin Date: Mon Dec 1 10:35:37 UTC 2014 Modified Files: src/sys/netinet [netbsd-7]: ip_output.c Log Message: Pull up following revision(s) (requested by ozaki-r in ticket #277): sys/netinet/ip_output.c: revision 1.233 Call looutput with holding KERNEL_LOCK This fixes diagnostic assertion "KERNEL_LOCKED_P()" in if_loop.c. PR kern/49410 To generate a diff of this commit: cvs rdiff -u -r1.230 -r1.230.2.1 src/sys/netinet/ip_output.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/tests/ipf/expected
Module Name:src Committed By: martin Date: Mon Dec 1 10:37:32 UTC 2014 Modified Files: src/tests/ipf/expected [netbsd-7]: n14 n14_6 Log Message: Pull up following revision(s) (requested by ozaki-r in ticket #278): tests/ipf/expected/n14: revision 1.6 tests/ipf/expected/n14_6: revision 1.5 Fix wrong expected outputs IP addresses in the expected outputs looks reversed (in byte order). It seems the expected outputs had been generated based on source code with a bug and the bug was fixed by a commit titled "#534 destination list hashing not endian neutral" by darrenr@. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.10.1 src/tests/ipf/expected/n14 cvs rdiff -u -r1.4 -r1.4.10.1 src/tests/ipf/expected/n14_6 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: martin Date: Mon Dec 1 11:38:43 UTC 2014 Modified Files: src/share/man/man9 [netbsd-7]: callout.9 src/sys/arch/x86/pci [netbsd-7]: fwhrng.c src/sys/arch/x86/x86 [netbsd-7]: via_padlock.c src/sys/dev/bluetooth [netbsd-7]: bcsp.c btkbd.c src/sys/dev/ic [netbsd-7]: nslm7x.c src/sys/dev/ir [netbsd-7]: irframe_tty.c src/sys/dev/isa [netbsd-7]: aps.c src/sys/dev/pci [netbsd-7]: pccbb.c src/sys/dev/pcmcia [netbsd-7]: btbc.c src/sys/dev/sdmmc [netbsd-7]: sdmmc.c src/sys/dev/sysmon [netbsd-7]: sysmon_envsys_events.c sysmonvar.h src/sys/dev/usb [netbsd-7]: ohci.c src/sys/dev/wscons [netbsd-7]: wskbd.c src/sys/kern [netbsd-7]: kern_ktrace.c src/sys/net [netbsd-7]: if_ecosubr.c Log Message: Pull up following revision(s) (requested by ozaki-r in ticket #279): sys/kern/kern_ktrace.c: revision 1.166 sys/dev/isa/aps.c: revision 1.16 sys/dev/sysmon/sysmonvar.h: revision 1.45 sys/dev/ir/irframe_tty.c: revision 1.60 sys/dev/sysmon/sysmon_envsys_events.c: revision 1.111 sys/dev/sysmon/sysmon_envsys_events.c: revision 1.112 sys/dev/pci/pccbb.c: revision 1.207 sys/dev/wscons/wskbd.c: revision 1.135 sys/dev/usb/ohci.c: revision 1.254 sys/net/if_ecosubr.c: revision 1.41 sys/dev/pcmcia/btbc.c: revision 1.17 sys/arch/x86/x86/via_padlock.c: revision 1.23 sys/dev/sdmmc/sdmmc.c: revision 1.23 sys/dev/bluetooth/btkbd.c: revision 1.17 sys/dev/bluetooth/bcsp.c: revision 1.25 sys/arch/x86/pci/fwhrng.c: revision 1.8 sys/dev/ic/nslm7x.c: revision 1.61 share/man/man9/callout.9: revision 1.28 Replace callout_stop with callout_halt In order to call callout_destroy for a callout safely, we have to ensure the function of the callout is not running and pending. To do so, we should use callout_halt, not callout_stop. Discussed with martin@ and riastradh@. Make it clear that we should use not callout_stop but callout_halt before callout_destroy Replace callout_stop with callout_halt In order to call callout_destroy for a callout safely, we have to ensure the function of the callout is not running and pending. To do so, we should use callout_halt, not callout_stop. In this case, we need to pass an interlock to callout_halt to wait for the callout complete. Reviewed by riastradh@. Kill sme_callout_mtx and use sme_mtx instead We can use sme_mtx for the callout as well. Actually we should do so because sme_events_list and some other data that are touched in the callout should be protected by sme_mtx, not sme_callout_mtx. Discussed with riastradh@ in http://mail-index.netbsd.org/tech-kern/2014/11/11/msg017956.html Replace callout_stop with callout_halt In order to call callout_destroy for a callout safely, we have to ensure the function of the callout is not running and pending. To do so, we should use callout_halt, not callout_stop. In this case, we need to pass an interlock to callout_halt to wait for the callout complete. And also we make sure that SME_CALLOUT_INITIALIZED is unset before calling callout_halt to prevent the callout from calling callout_schedule. This is the same as what we did in sys/netinet6/mld6.c@1.61. Reviewed by riastradh@. To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.27.2.1 src/share/man/man9/callout.9 cvs rdiff -u -r1.7 -r1.7.2.1 src/sys/arch/x86/pci/fwhrng.c cvs rdiff -u -r1.22 -r1.22.2.1 src/sys/arch/x86/x86/via_padlock.c cvs rdiff -u -r1.24 -r1.24.2.1 src/sys/dev/bluetooth/bcsp.c cvs rdiff -u -r1.16 -r1.16.4.1 src/sys/dev/bluetooth/btkbd.c cvs rdiff -u -r1.60 -r1.60.4.1 src/sys/dev/ic/nslm7x.c cvs rdiff -u -r1.59 -r1.59.4.1 src/sys/dev/ir/irframe_tty.c cvs rdiff -u -r1.15 -r1.15.14.1 src/sys/dev/isa/aps.c cvs rdiff -u -r1.206 -r1.206.4.1 src/sys/dev/pci/pccbb.c cvs rdiff -u -r1.16 -r1.16.2.1 src/sys/dev/pcmcia/btbc.c cvs rdiff -u -r1.22 -r1.22.4.1 src/sys/dev/sdmmc/sdmmc.c cvs rdiff -u -r1.110 -r1.110.4.1 src/sys/dev/sysmon/sysmon_envsys_events.c cvs rdiff -u -r1.44 -r1.44.12.1 src/sys/dev/sysmon/sysmonvar.h cvs rdiff -u -r1.253 -r1.253.2.1 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.134 -r1.134.2.1 src/sys/dev/wscons/wskbd.c cvs rdiff -u -r1.164 -r1.164.4.1 src/sys/kern/kern_ktrace.c cvs rdiff -u -r1.40 -r1.40.2.1 src/sys/net/if_ecosubr.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys
Module Name:src Committed By: skrll Date: Mon Dec 1 12:38:39 UTC 2014 Modified Files: src/sys/arch/mips/adm5120/dev [nick-nhusb]: ahci.c src/sys/dev/ic [nick-nhusb]: sl811hs.c src/sys/dev/usb [nick-nhusb]: ehci.c motg.c ohci.c uhci.c usb.c usb_subr.c usbdi.c usbdivar.h xhci.c src/sys/external/bsd/dwc2 [nick-nhusb]: dwc2.c src/sys/rump/dev/lib/libugenhc [nick-nhusb]: ugenhc.c Log Message: Add prefixes to method structures member names. No functional change. To generate a diff of this commit: cvs rdiff -u -r1.12.6.2 -r1.12.6.3 src/sys/arch/mips/adm5120/dev/ahci.c cvs rdiff -u -r1.47.6.1 -r1.47.6.2 src/sys/dev/ic/sl811hs.c cvs rdiff -u -r1.234.2.5 -r1.234.2.6 src/sys/dev/usb/ehci.c cvs rdiff -u -r1.12.2.3 -r1.12.2.4 src/sys/dev/usb/motg.c cvs rdiff -u -r1.254.2.4 -r1.254.2.5 src/sys/dev/usb/ohci.c cvs rdiff -u -r1.264.4.4 -r1.264.4.5 src/sys/dev/usb/uhci.c cvs rdiff -u -r1.156 -r1.156.2.1 src/sys/dev/usb/usb.c cvs rdiff -u -r1.198 -r1.198.2.1 src/sys/dev/usb/usb_subr.c cvs rdiff -u -r1.162.2.3 -r1.162.2.4 src/sys/dev/usb/usbdi.c cvs rdiff -u -r1.109.2.2 -r1.109.2.3 src/sys/dev/usb/usbdivar.h cvs rdiff -u -r1.28.2.2 -r1.28.2.3 src/sys/dev/usb/xhci.c cvs rdiff -u -r1.32.2.1 -r1.32.2.2 src/sys/external/bsd/dwc2/dwc2.c cvs rdiff -u -r1.22.4.1 -r1.22.4.2 src/sys/rump/dev/lib/libugenhc/ugenhc.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Dec 1 13:03:05 UTC 2014 Modified Files: src/sys/dev/usb [nick-nhusb]: aubtfwl.c if_upgt.c irmce.c pseye.c stuirda.c udl.c udsir.c ugen.c uhidev.c uirda.c ulpt.c urio.c usbdi_util.c usbdi_util.h uscanner.c ustir.c uvideo.c Log Message: Remove the lbl argument from usbd_{bulk,intr}_transfer. To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.5.10.1 src/sys/dev/usb/aubtfwl.c cvs rdiff -u -r1.12 -r1.12.4.1 src/sys/dev/usb/if_upgt.c cvs rdiff -u -r1.1 -r1.1.32.1 src/sys/dev/usb/irmce.c cvs rdiff -u -r1.21 -r1.21.34.1 src/sys/dev/usb/pseye.c cvs rdiff -u -r1.16.2.1 -r1.16.2.2 src/sys/dev/usb/stuirda.c cvs rdiff -u -r1.11 -r1.11.6.1 src/sys/dev/usb/udl.c cvs rdiff -u -r1.1 -r1.1.14.1 src/sys/dev/usb/udsir.c cvs rdiff -u -r1.126.2.1 -r1.126.2.2 src/sys/dev/usb/ugen.c cvs rdiff -u -r1.61.4.1 -r1.61.4.2 src/sys/dev/usb/uhidev.c cvs rdiff -u -r1.38.6.1 -r1.38.6.2 src/sys/dev/usb/uirda.c cvs rdiff -u -r1.95.4.1 -r1.95.4.2 src/sys/dev/usb/ulpt.c cvs rdiff -u -r1.42.4.1 -r1.42.4.2 src/sys/dev/usb/urio.c cvs rdiff -u -r1.63.2.2 -r1.63.2.3 src/sys/dev/usb/usbdi_util.c cvs rdiff -u -r1.45.6.1 -r1.45.6.2 src/sys/dev/usb/usbdi_util.h cvs rdiff -u -r1.75.4.2 -r1.75.4.3 src/sys/dev/usb/uscanner.c cvs rdiff -u -r1.33.10.1 -r1.33.10.2 src/sys/dev/usb/ustir.c cvs rdiff -u -r1.41 -r1.41.2.1 src/sys/dev/usb/uvideo.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/net/npf
Module Name:src Committed By: martin Date: Mon Dec 1 13:05:26 UTC 2014 Modified Files: src/sys/net/npf [netbsd-7]: npf_conf.c npf_conn.c npf_conn.h npf_impl.h npf_nat.c npf_ruleset.c Log Message: Pull up following revision(s) (requested by rmind in ticket #280): sys/net/npf/npf_ruleset.c: revision 1.40 sys/net/npf/npf_nat.c: revision 1.36 sys/net/npf/npf_nat.c: revision 1.37 sys/net/npf/npf_conn.h: revision 1.7 sys/net/npf/npf_conf.c: revision 1.9 sys/net/npf/npf_ruleset.c: revision 1.39 sys/net/npf/npf_conn.c: revision 1.13 sys/net/npf/npf_impl.h: revision 1.60 NPF: - npf_nat_import: take the port only if using the portmap. - Sprinkle some comments and asserts. - npf_config_load: if loading the connections, do not perform any actice NAT policy take over or or portmap sharing - just replace them all. - npf_config_fini: flush with the empty connection database. - npf_nat_import: fix the stat counter. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.8.2.1 src/sys/net/npf/npf_conf.c cvs rdiff -u -r1.10.2.1 -r1.10.2.2 src/sys/net/npf/npf_conn.c cvs rdiff -u -r1.6 -r1.6.2.1 src/sys/net/npf/npf_conn.h cvs rdiff -u -r1.58.2.1 -r1.58.2.2 src/sys/net/npf/npf_impl.h cvs rdiff -u -r1.32.2.2 -r1.32.2.3 src/sys/net/npf/npf_nat.c cvs rdiff -u -r1.37.2.1 -r1.37.2.2 src/sys/net/npf/npf_ruleset.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/netinet
Module Name:src Committed By: martin Date: Mon Dec 1 13:08:14 UTC 2014 Modified Files: src/sys/netinet [netbsd-7]: in4_cksum.c Log Message: Pull up following revision(s) (requested by christos in ticket #281): sys/netinet/in4_cksum.c: revision 1.20 Only check that the offset < sizeof(struct ip) if nxt != 0, i.e. in the tcp and udp cases. From kre. To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.19.12.1 src/sys/netinet/in4_cksum.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/external/mit/lua/dist/src
Module Name:src Committed By: martin Date: Mon Dec 1 13:11:18 UTC 2014 Modified Files: src/external/mit/lua/dist/src [netbsd-7]: luaconf.h Log Message: Pull up following revision(s) (requested by lneto in ticket #282): external/mit/lua/dist/src/luaconf.h: revision 1.10 lua(4): fixed Lua stack size To generate a diff of this commit: cvs rdiff -u -r1.9 -r1.9.2.1 src/external/mit/lua/dist/src/luaconf.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/modules/lua
Module Name:src Committed By: martin Date: Mon Dec 1 13:13:15 UTC 2014 Modified Files: src/sys/modules/lua [netbsd-7]: lua.c Log Message: Pull up following revision(s) (requested by lneto in ticket #283): sys/modules/lua/lua.c: revision 1.15 lua(4): fixed require To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.13.2.1 src/sys/modules/lua/lua.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/sys/arch/arm/allwinner
Module Name:src Committed By: martin Date: Mon Dec 1 13:23:49 UTC 2014 Modified Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_debe.c awin_fb.c awin_reg.h Added Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_mp.c Log Message: Pull up following revision(s) (requested by jmcneill in ticket #284): sys/arch/arm/allwinner/awin_reg.h: revision 1.56 sys/arch/arm/allwinner/awin_debe.c: revision 1.9-1.10 sys/arch/arm/allwinner/awin_mp.c: revision 1.1 sys/arch/arm/allwinner/awin_fb.c: revision 1.7 hardware cursor support hide the hw cursor when blanking the screen To generate a diff of this commit: cvs rdiff -u -r1.6.2.4 -r1.6.2.5 src/sys/arch/arm/allwinner/awin_debe.c cvs rdiff -u -r1.4.2.4 -r1.4.2.5 src/sys/arch/arm/allwinner/awin_fb.c cvs rdiff -u -r0 -r1.1.2.2 src/sys/arch/arm/allwinner/awin_mp.c cvs rdiff -u -r1.14.2.7 -r1.14.2.8 src/sys/arch/arm/allwinner/awin_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/sys/arch/arm/allwinner
Module Name:src Committed By: martin Date: Mon Dec 1 13:30:37 UTC 2014 Modified Files: src/sys/arch/arm/allwinner [netbsd-7]: awin_fb.c Log Message: Pull up following revision(s) (requested by jmcneill in ticket #285): sys/arch/arm/allwinner/awin_fb.c: revision 1.8 make the full amount of reserved video memory available to userland To generate a diff of this commit: cvs rdiff -u -r1.4.2.5 -r1.4.2.6 src/sys/arch/arm/allwinner/awin_fb.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: martin Date: Mon Dec 1 13:43:14 UTC 2014 Modified Files: src/lib/libc/net [netbsd-7]: rcmd.c src/usr.bin/rsh [netbsd-7]: rsh.c Log Message: Pull up following revision(s) (requested by enami in ticket #286): usr.bin/rsh/rsh.c: revision 1.38 lib/libc/net/rcmd.c: revision 1.71 Changes done in rsh.c rev. 1.36 was incomplete. As chuq pointed in private mail, it broke rcp(1). To achieve the documented behavior and to fix long standing incorrect rsh(1) behavior which I've tried to fix in rev. 1.36, rcmd(1) should have two operation mode; whether it should relay signal information on auxiliary channel or not, depending on the argument `fd2p' passed to rcmd(3). So, make rcmd(1) behave differntly depending on the environment variable and set it when necessary in rcmd(3) according to how auxiliary channel is set up by rcmd(3). To generate a diff of this commit: cvs rdiff -u -r1.69 -r1.69.2.1 src/lib/libc/net/rcmd.c cvs rdiff -u -r1.36 -r1.36.2.1 src/usr.bin/rsh/rsh.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: martin Date: Mon Dec 1 13:45:37 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Tickets #272 - #286 To generate a diff of this commit: cvs rdiff -u -r1.1.2.113 -r1.1.2.114 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/netinet
Module Name:src Committed By: christos Date: Mon Dec 1 17:07:43 UTC 2014 Modified Files: src/sys/netinet: in.c Log Message: Don't pass junk in sin_family and sin_len for SIOCGIFNETMASK, and explain why. XXX: pullup 7? To generate a diff of this commit: cvs rdiff -u -r1.148 -r1.149 src/sys/netinet/in.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/tests/ipf
Module Name:src Committed By: martin Date: Mon Dec 1 19:46:29 UTC 2014 Modified Files: src/tests/ipf: t_nat_exec.sh Log Message: Remove the "broken on BE" mark from the N14 testcase - ozaki-r fixed it recently. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.21 src/tests/ipf/t_nat_exec.sh Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/tests/ipf
Module Name:src Committed By: snj Date: Mon Dec 1 20:03:35 UTC 2014 Modified Files: src/tests/ipf [netbsd-7]: t_nat_exec.sh Log Message: Pull up following revision(s) (requested by martin in ticket #287): tests/ipf/t_nat_exec.sh: revision 1.21 Remove the "broken on BE" mark from the N14 testcase - ozaki-r fixed it recently. To generate a diff of this commit: cvs rdiff -u -r1.20 -r1.20.2.1 src/tests/ipf/t_nat_exec.sh 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: Mon Dec 1 20:07:59 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: 287 To generate a diff of this commit: cvs rdiff -u -r1.1.2.114 -r1.1.2.115 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sbin/route
Module Name:src Committed By: christos Date: Mon Dec 1 20:30:27 UTC 2014 Modified Files: src/sbin/route: route.8 Log Message: Complete the routing argument table by including the ID's used in the routing display. To generate a diff of this commit: cvs rdiff -u -r1.52 -r1.53 src/sbin/route/route.8 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/etc/root
Module Name:src Committed By: martin Date: Mon Dec 1 21:17:21 UTC 2014 Modified Files: src/etc/root [netbsd-7]: dot.cshrc dot.profile Log Message: Pull up following revision(s) (requested by riz in ticket #288): etc/root/dot.cshrc: revision 1.25 etc/root/dot.profile: revision 1.27 Freshen up the commented-out suggested PKG_PATH a bit. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.24.12.1 src/etc/root/dot.cshrc cvs rdiff -u -r1.26 -r1.26.12.1 src/etc/root/dot.profile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [netbsd-7] src/doc
Module Name:src Committed By: martin Date: Mon Dec 1 21:18:23 UTC 2014 Modified Files: src/doc [netbsd-7]: CHANGES-7.0 Log Message: Ticket #288 To generate a diff of this commit: cvs rdiff -u -r1.1.2.115 -r1.1.2.116 src/doc/CHANGES-7.0 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [nick-nhusb] src/sys/dev/usb
Module Name:src Committed By: skrll Date: Mon Dec 1 21:52:00 UTC 2014 Modified Files: src/sys/dev/usb [nick-nhusb]: motgvar.h Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.4.2.1 src/sys/dev/usb/motgvar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/arm/cortex
Module Name:src Committed By: matt Date: Mon Dec 1 22:39:06 UTC 2014 Modified Files: src/sys/arch/arm/cortex: pl310.c Log Message: clean the a9 l2 cache before turning it on. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.16 src/sys/arch/arm/cortex/pl310.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump
Module Name:src Committed By: pooka Date: Mon Dec 1 22:54:32 UTC 2014 Modified Files: src/sys/rump: Makefile.rump Log Message: RUMPCOMP_USER has been deprecated for long enough, remove it. To generate a diff of this commit: cvs rdiff -u -r1.99 -r1.100 src/sys/rump/Makefile.rump Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump
Module Name:src Committed By: pooka Date: Mon Dec 1 22:58:41 UTC 2014 Modified Files: src/sys/rump: Makefile.rump Log Message: define the warnings used for hypercall components once To generate a diff of this commit: cvs rdiff -u -r1.100 -r1.101 src/sys/rump/Makefile.rump Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump
Module Name:src Committed By: pooka Date: Mon Dec 1 23:08:15 UTC 2014 Modified Files: src/sys/rump: Makefile.rump Log Message: need -Wno-unused-parameter with -Wextra To generate a diff of this commit: cvs rdiff -u -r1.101 -r1.102 src/sys/rump/Makefile.rump Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump/librump/rumpkern
Module Name:src Committed By: pooka Date: Tue Dec 2 01:52:13 UTC 2014 Modified Files: src/sys/rump/librump/rumpkern: rump.3 Log Message: most of this manpage moved to rumpkernel.7, so simplify a lot To generate a diff of this commit: cvs rdiff -u -r1.11 -r1.12 src/sys/rump/librump/rumpkern/rump.3 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: pooka Date: Tue Dec 2 01:51:46 UTC 2014 Modified Files: src/distrib/sets/lists/man: mi src/sys/rump/share/man/man7: Makefile Added Files: src/sys/rump/share/man/man7: rumpkernel.7 Log Message: add a high-level rumpkernel.7 manpage To generate a diff of this commit: cvs rdiff -u -r1.1489 -r1.1490 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.1 -r1.2 src/sys/rump/share/man/man7/Makefile cvs rdiff -u -r0 -r1.1 src/sys/rump/share/man/man7/rumpkernel.7 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/rump
Module Name:src Committed By: pooka Date: Tue Dec 2 01:59:17 UTC 2014 Modified Files: src/sys/rump: Makefile.rump src/sys/rump/librump/rumpdev: Makefile.rumpdev src/sys/rump/librump/rumpkern: Makefile.rumpkern src/sys/rump/librump/rumpnet: Makefile.rumpnet src/sys/rump/librump/rumpvfs: Makefile.rumpvfs Removed Files: src/sys/rump/dev/lib/libaudio: shlib_version src/sys/rump/dev/lib/libaudio_ac97: shlib_version src/sys/rump/dev/lib/libbpf: shlib_version src/sys/rump/dev/lib/libcgd: shlib_version src/sys/rump/dev/lib/libdisk: shlib_version src/sys/rump/dev/lib/libdm: shlib_version src/sys/rump/dev/lib/libdrvctl: shlib_version src/sys/rump/dev/lib/libfss: shlib_version src/sys/rump/dev/lib/libhdaudio_hdafg: shlib_version src/sys/rump/dev/lib/libmd: shlib_version src/sys/rump/dev/lib/libmiiphy: shlib_version src/sys/rump/dev/lib/libnetsmb: shlib_version src/sys/rump/dev/lib/libopencrypto: shlib_version src/sys/rump/dev/lib/libpad: shlib_version src/sys/rump/dev/lib/libpci: shlib_version src/sys/rump/dev/lib/libpci_eap: shlib_version src/sys/rump/dev/lib/libpci_hdaudio: shlib_version src/sys/rump/dev/lib/libpci_if_iwn: shlib_version src/sys/rump/dev/lib/libpci_if_pcn: shlib_version src/sys/rump/dev/lib/libpci_if_wm: shlib_version src/sys/rump/dev/lib/libpci_virtio: shlib_version src/sys/rump/dev/lib/libpud: shlib_version src/sys/rump/dev/lib/libputter: shlib_version src/sys/rump/dev/lib/libraidframe: shlib_version src/sys/rump/dev/lib/librnd: shlib_version src/sys/rump/dev/lib/libscsipi: shlib_version src/sys/rump/dev/lib/libsysmon: shlib_version src/sys/rump/dev/lib/libubt: shlib_version src/sys/rump/dev/lib/libucom: shlib_version src/sys/rump/dev/lib/libugenhc: shlib_version src/sys/rump/dev/lib/libulpt: shlib_version src/sys/rump/dev/lib/libumass: shlib_version src/sys/rump/dev/lib/libusb: shlib_version src/sys/rump/dev/lib/libvirtio_if_vioif: shlib_version src/sys/rump/dev/lib/libvirtio_ld: shlib_version src/sys/rump/dev/lib/libvirtio_viornd: shlib_version src/sys/rump/dev/lib/libvnd: shlib_version src/sys/rump/dev/lib/libwscons: shlib_version src/sys/rump/dev/wip/libukbd: shlib_version src/sys/rump/dev/wip/libums: shlib_version src/sys/rump/dev/wip/libusbrum: shlib_version src/sys/rump/fs/lib/libaio: shlib_version src/sys/rump/fs/lib/libcd9660: shlib_version src/sys/rump/fs/lib/libefs: shlib_version src/sys/rump/fs/lib/libext2fs: shlib_version src/sys/rump/fs/lib/libfdesc: shlib_version src/sys/rump/fs/lib/libffs: shlib_version src/sys/rump/fs/lib/libfifovfs: shlib_version src/sys/rump/fs/lib/libhfs: shlib_version src/sys/rump/fs/lib/libkernfs: shlib_version src/sys/rump/fs/lib/liblayervfs: shlib_version src/sys/rump/fs/lib/liblfs: shlib_version src/sys/rump/fs/lib/libmfs: shlib_version src/sys/rump/fs/lib/libmsdos: shlib_version src/sys/rump/fs/lib/libnfs: shlib_version src/sys/rump/fs/lib/libnfsserver: shlib_version src/sys/rump/fs/lib/libnilfs: shlib_version src/sys/rump/fs/lib/libntfs: shlib_version src/sys/rump/fs/lib/libnull: shlib_version src/sys/rump/fs/lib/libptyfs: shlib_version src/sys/rump/fs/lib/libsmbfs: shlib_version src/sys/rump/fs/lib/libsyspuffs: shlib_version src/sys/rump/fs/lib/libsysvbfs: shlib_version src/sys/rump/fs/lib/libtmpfs: shlib_version src/sys/rump/fs/lib/libudf: shlib_version src/sys/rump/fs/lib/libumap: shlib_version src/sys/rump/fs/lib/libunion: shlib_version src/sys/rump/fs/lib/libv7fs: shlib_version src/sys/rump/fs/lib/libzfs: shlib_version src/sys/rump/kern/lib/libcrypto: shlib_version src/sys/rump/kern/lib/libsljit: shlib_version src/sys/rump/kern/lib/libsolaris: shlib_version src/sys/rump/kern/lib/libsys_cygwin: shlib_version src/sys/rump/kern/lib/libsys_linux: shlib_version src/sys/rump/kern/lib/libsys_sunos: shlib_version src/sys/rump/kern/lib/libtty: shlib_version src/sys/rump/kern/lib/libz: shlib_version src/sys/rump/net/lib/libagr: shlib_version src/sys/rump/net/lib/libbpfjit: shlib_version src/sys/rump/net/lib/libbridge: shlib_version src/sys/rump/net/lib/liblocal: shlib_version src/sys/rump/net/lib/libnet: shlib_version src/sys/rump/net/lib/libnet80211: shlib_version src/sys/rump/net/lib/libnetbt: shlib_version src/sys/rump/net/lib/libnetinet: shlib_version src/sys/rump/net/lib/libnetinet6: shlib_version src/sys/rump/net/
CVS commit: src/external/gpl3/gcc/lib/libasan
Module Name:src Committed By: dennis Date: Tue Dec 2 03:20:39 UTC 2014 Modified Files: src/external/gpl3/gcc/lib/libasan: Makefile Log Message: Work around RISC-V compiler bug in gcc 4.8.3 (at least). Should be reconsidered if the compiler is updated. PR toolchain/49425 To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 src/external/gpl3/gcc/lib/libasan/Makefile 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: Tue Dec 2 03:51:49 UTC 2014 Modified Files: src/distrib/sets/lists/man: mi src/share/man/man7: Makefile Log Message: Add missing src(7) reported by Patrick Welche. To generate a diff of this commit: cvs rdiff -u -r1.1490 -r1.1491 src/distrib/sets/lists/man/mi cvs rdiff -u -r1.30 -r1.31 src/share/man/man7/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys
Module Name:src Committed By: ozaki-r Date: Tue Dec 2 04:43:36 UTC 2014 Modified Files: src/sys/kern: uipc_mbuf.c src/sys/net: if.c if.h src/sys/rump/librump/rumpnet: net_stub.c Log Message: Revert "Pull if_drain routine out of m_reclaim" The commit broke dlopen()'d rumpnet on platforms where ld.so does not override weak aliases (e.g. musl, Solaris, potentially OS X, ...). Requested by pooka@. To generate a diff of this commit: cvs rdiff -u -r1.159 -r1.160 src/sys/kern/uipc_mbuf.c cvs rdiff -u -r1.302 -r1.303 src/sys/net/if.c cvs rdiff -u -r1.182 -r1.183 src/sys/net/if.h cvs rdiff -u -r1.19 -r1.20 src/sys/rump/librump/rumpnet/net_stub.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.