CVS commit: src/lib/libc/time
Module Name:src Committed By: wiz Date: Sat Apr 20 07:27:40 UTC 2019 Modified Files: src/lib/libc/time: tzset.3 Log Message: Remove 'No' macros with no effect. Add width to table. Fix en-dashes. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 src/lib/libc/time/tzset.3 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/lib/libedit
Module Name:src Committed By: abhinav Date: Sat Apr 20 08:44:10 UTC 2019 Modified Files: src/lib/libedit: filecomplete.c Log Message: PR lib/54131 - declare the loop variable outside the for loop To generate a diff of this commit: cvs rdiff -u -r1.54 -r1.55 src/lib/libedit/filecomplete.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/nvmm/x86
Module Name:src Committed By: maxv Date: Sat Apr 20 08:45:30 UTC 2019 Modified Files: src/sys/dev/nvmm/x86: nvmm_x86_svm.c nvmm_x86_vmx.c Log Message: Ah, take XSAVE into account in ECX too, not just in EBX. Otherwise if the guest relies only on ECX to initialize/copy the FPU state (like NetBSD does), spurious #GPs can be encountered because the bitmap is clobbered. To generate a diff of this commit: cvs rdiff -u -r1.38 -r1.39 src/sys/dev/nvmm/x86/nvmm_x86_svm.c cvs rdiff -u -r1.25 -r1.26 src/sys/dev/nvmm/x86/nvmm_x86_vmx.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/stand/efiboot
Module Name:src Committed By: jmcneill Date: Sat Apr 20 11:23:16 UTC 2019 Modified Files: src/sys/stand/efiboot: efiboot.c Log Message: Skip clearing the screen when efiboot starts, it may end up hiding useful information To generate a diff of this commit: cvs rdiff -u -r1.14 -r1.15 src/sys/stand/efiboot/efiboot.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/stand/efiboot
Module Name:src Committed By: jmcneill Date: Sat Apr 20 11:28:53 UTC 2019 Modified Files: src/sys/stand/efiboot: boot.c Log Message: ST FirmwareRevision field is in a vendor defined format, so just print the raw value To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 src/sys/stand/efiboot/boot.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/hppa/hppa
Module Name:src Committed By: martin Date: Sat Apr 20 13:51:47 UTC 2019 Modified Files: src/sys/arch/hppa/hppa [netbsd-8]: disksubr.c Log Message: Pull up following revision(s) (requested by skrll in ticket #1234): sys/arch/hppa/hppa/disksubr.c: revision 1.4 Get a large enough buffer for the LIF DIR To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.2.12.1 src/sys/arch/hppa/hppa/disksubr.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/hppa
Module Name:src Committed By: martin Date: Sat Apr 20 13:57:24 UTC 2019 Modified Files: src/sys/arch/hppa/conf [netbsd-8]: files.hppa src/sys/arch/hppa/dev [netbsd-8]: dino.c Log Message: Pull up following revision(s) (requested by skrll in ticket #1235): sys/arch/hppa/conf/files.hppa: revision 1.20 sys/arch/hppa/dev/dino.c: revision 1.4 dino depends on gedoens - Re-arrange dino_softc members to improve alignment To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.18.22.1 src/sys/arch/hppa/conf/files.hppa cvs rdiff -u -r1.3 -r1.3.10.1 src/sys/arch/hppa/dev/dino.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: Sat Apr 20 13:58:18 UTC 2019 Modified Files: src/doc [netbsd-8]: CHANGES-8.1 Log Message: Ticket #1234 and #1235 To generate a diff of this commit: cvs rdiff -u -r1.1.2.130 -r1.1.2.131 src/doc/CHANGES-8.1 Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS import: src/crypto/external/bsd/openssh/dist
Module Name:src Committed By: christos Date: Sat Apr 20 17:13:56 UTC 2019 Update of /cvsroot/src/crypto/external/bsd/openssh/dist In directory ivanova.netbsd.org:/tmp/cvs-serv25070 Log Message: Import 8.0: Security This release contains mitigation for a weakness in the scp(1) tool and protocol (CVE-2019-6111): when copying files from a remote system to a local directory, scp(1) did not verify that the filenames that the server sent matched those requested by the client. This could allow a hostile server to create or clobber unexpected local files with attacker-controlled content. This release adds client-side checking that the filenames sent from the server match the command-line request, The scp protocol is outdated, inflexible and not readily fixed. We recommend the use of more modern protocols like sftp and rsync for file transfer instead. Potentially-incompatible changes This release includes a number of changes that may affect existing configurations: * scp(1): Relating to the above changes to scp(1); the scp protocol relies on the remote shell for wildcard expansion, so there is no infallible way for the client's wildcard matching to perfectly reflect the server's. If there is a difference between client and server wildcard expansion, the client may refuse files from the server. For this reason, we have provided a new "-T" flag to scp that disables these client-side checks at the risk of reintroducing the attack described above. * sshd(8): Remove support for obsolete "host/port" syntax. Slash- separated host/port was added in 2001 as an alternative to host:port syntax for the benefit of IPv6 users. These days there are establised standards for this like [::1]:22 and the slash syntax is easily mistaken for CIDR notation, which OpenSSH supports for some things. Remove the slash notation from ListenAddress and PermitOpen; bz#2335 Changes since OpenSSH 7.9 = This release is focused on new features and internal refactoring. New Features * ssh(1), ssh-agent(1), ssh-add(1): Add support for ECDSA keys in PKCS#11 tokens. * ssh(1), sshd(8): Add experimental quantum-computing resistant key exchange method, based on a combination of Streamlined NTRU Prime 4591^761 and X25519. * ssh-keygen(1): Increase the default RSA key size to 3072 bits, following NIST Special Publication 800-57's guidance for a 128-bit equivalent symmetric security level. * ssh(1): Allow "PKCS11Provider=none" to override later instances of the PKCS11Provider directive in ssh_config; bz#2974 * sshd(8): Add a log message for situations where a connection is dropped for attempting to run a command but a sshd_config ForceCommand=internal-sftp restriction is in effect; bz#2960 * ssh(1): When prompting whether to record a new host key, accept the key fingerprint as a synonym for "yes". This allows the user to paste a fingerprint obtained out of band at the prompt and have the client do the comparison for you. * ssh-keygen(1): When signing multiple certificates on a single command-line invocation, allow automatically incrementing the certificate serial number. * scp(1), sftp(1): Accept -J option as an alias to ProxyJump on the scp and sftp command-lines. * ssh-agent(1), ssh-pkcs11-helper(8), ssh-add(1): Accept "-v" command-line flags to increase the verbosity of output; pass verbose flags though to subprocesses, such as ssh-pkcs11-helper started from ssh-agent. * ssh-add(1): Add a "-T" option to allowing testing whether keys in an agent are usable by performing a signature and a verification. * sftp-server(8): Add a "lsets...@openssh.com" protocol extension that replicates the functionality of the existing SSH2_FXP_SETSTAT operation but does not follow symlinks. bz#2067 * sftp(1): Add "-h" flag to chown/chgrp/chmod commands to request they do not follow symlinks. * sshd(8): Expose $SSH_CONNECTION in the PAM environment. This makes the connection 4-tuple available to PAM modules that wish to use it in decision-making. bz#2741 * sshd(8): Add a ssh_config "Match final" predicate Matches in same pass as "Match canonical" but doesn't require hostname canonicalisation be enabled. bz#2906 * sftp(1): Support a prefix of '@' to suppress echo of sftp batch commands; bz#2926 * ssh-keygen(1): When printing certificate contents using "ssh-keygen -Lf /path/certificate", include the algorithm that the CA used to sign the cert. Bugfixes * sshd(8): Fix authentication failures when sshd_config contains "AuthenticationMethods any" inside a Match block that overrides a more restrictive default. * sshd(8): Avoid sending duplicate keepalives when ClientAliveCount is enabled. * sshd(8): Fix two race conditions related to SIGHUP daemon restart. Remnant file descriptors in recently-fork
CVS commit: src/crypto/external/bsd/openssh
Module Name:src Committed By: christos Date: Sat Apr 20 17:16:41 UTC 2019 Modified Files: src/crypto/external/bsd/openssh/bin/ssh-keyscan: Makefile src/crypto/external/bsd/openssh/bin/sshd: Makefile src/crypto/external/bsd/openssh/dist: OVERVIEW PROTOCOL PROTOCOL.certkeys PROTOCOL.mux atomicio.c atomicio.h auth-krb5.c auth-options.c auth-pam.c auth-pam.h auth.c auth.h auth2-hostbased.c auth2-krb5.c auth2-pubkey.c auth2.c authfd.c authfd.h authfile.c channels.c channels.h cipher.c cipher.h clientloop.c crypto_api.h dh.c dh.h digest-openssl.c dispatch.c dispatch.h groupaccess.c kex.c kex.h kexc25519.c kexdh.c kexecdh.c kexgen.c kexgex.c kexgexc.c kexgexs.c kexsntrup4591761x25519.c krl.c krl.h match.c match.h misc.c misc.h moduli.c monitor.c monitor.h monitor_wrap.c monitor_wrap.h mux.c myproposal.h namespace.h nchan.c packet.c packet.h pfilter.c progressmeter.c progressmeter.h readconf.c readconf.h readpass.c scp.1 scp.c servconf.c servconf.h serverloop.c session.c session.h sftp-client.c sftp-client.h sftp-common.c sftp-server.c sftp.1 sftp.c sntrup4591761.c ssh-add.1 ssh-add.c ssh-agent.c ssh-dss.c ssh-ecdsa.c ssh-keygen.1 ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh-pkcs11-client.c ssh-pkcs11-helper.8 ssh-pkcs11-helper.c ssh-pkcs11.c ssh-pkcs11.h ssh-rsa.c ssh.1 ssh.c ssh.h ssh2.h ssh_api.c ssh_config ssh_config.5 sshbuf-getput-crypto.c sshbuf.c sshbuf.h sshconnect.c sshconnect.h sshconnect2.c sshd.c sshd_config.5 sshkey.c sshkey.h version.h src/crypto/external/bsd/openssh/dist/moduli-gen: moduli.3072 moduli.4096 moduli.6144 moduli.7680 moduli.8192 src/crypto/external/bsd/openssh/lib: Makefile shlib_version Removed Files: src/crypto/external/bsd/openssh/dist: kexc25519c.c kexc25519s.c kexdhc.c kexdhs.c kexecdhc.c kexecdhs.c opacket.c opacket.h Log Message: merge conflicts. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 \ src/crypto/external/bsd/openssh/bin/ssh-keyscan/Makefile cvs rdiff -u -r1.16 -r1.17 src/crypto/external/bsd/openssh/bin/sshd/Makefile cvs rdiff -u -r1.7 -r1.8 src/crypto/external/bsd/openssh/dist/OVERVIEW \ src/crypto/external/bsd/openssh/dist/atomicio.h \ src/crypto/external/bsd/openssh/dist/digest-openssl.c \ src/crypto/external/bsd/openssh/dist/dispatch.h \ src/crypto/external/bsd/openssh/dist/kexc25519.c \ src/crypto/external/bsd/openssh/dist/kexdh.c \ src/crypto/external/bsd/openssh/dist/kexecdh.c \ src/crypto/external/bsd/openssh/dist/namespace.h \ src/crypto/external/bsd/openssh/dist/ssh_api.c cvs rdiff -u -r1.12 -r1.13 src/crypto/external/bsd/openssh/dist/PROTOCOL \ src/crypto/external/bsd/openssh/dist/cipher.h \ src/crypto/external/bsd/openssh/dist/moduli.c \ src/crypto/external/bsd/openssh/dist/sshconnect.h cvs rdiff -u -r1.10 -r1.11 \ src/crypto/external/bsd/openssh/dist/PROTOCOL.certkeys \ src/crypto/external/bsd/openssh/dist/dh.h \ src/crypto/external/bsd/openssh/dist/match.c \ src/crypto/external/bsd/openssh/dist/monitor.h \ src/crypto/external/bsd/openssh/dist/progressmeter.c \ src/crypto/external/bsd/openssh/dist/sftp-client.h \ src/crypto/external/bsd/openssh/dist/sftp-common.c \ src/crypto/external/bsd/openssh/dist/sshbuf.h cvs rdiff -u -r1.9 -r1.10 src/crypto/external/bsd/openssh/dist/PROTOCOL.mux \ src/crypto/external/bsd/openssh/dist/dispatch.c \ src/crypto/external/bsd/openssh/dist/match.h \ src/crypto/external/bsd/openssh/dist/nchan.c \ src/crypto/external/bsd/openssh/dist/sshbuf.c cvs rdiff -u -r1.8 -r1.9 src/crypto/external/bsd/openssh/dist/atomicio.c \ src/crypto/external/bsd/openssh/dist/auth-pam.h \ src/crypto/external/bsd/openssh/dist/auth2-krb5.c \ src/crypto/external/bsd/openssh/dist/groupaccess.c \ src/crypto/external/bsd/openssh/dist/session.h \ src/crypto/external/bsd/openssh/dist/ssh-pkcs11-helper.8 \ src/crypto/external/bsd/openssh/dist/sshbuf-getput-crypto.c \ src/crypto/external/bsd/openssh/dist/sshkey.h cvs rdiff -u -r1.13 -r1.14 src/crypto/external/bsd/openssh/dist/auth-krb5.c \ src/crypto/external/bsd/openssh/dist/kexgexc.c \ src/crypto/external/bsd/openssh/dist/krl.c \ src/crypto/external/bsd/openssh/dist/ssh-add.1 \ src/crypto/external/bsd/openssh/dist/ssh-ecdsa.c cvs rdiff -u -r1.19 -r1.20 \ src/crypto/external/bsd/openssh/dist/auth-options.c \ src/crypto/external/bsd/openssh/dist/misc.c \ src/crypto/external/bsd/openssh/dist/sftp-server.c cvs rdiff -u -r1.18 -r1.19 src/crypto/external/bsd/openssh/dist/auth-pam.c \ src/crypto/external/bsd/openssh/dist/auth.h \ src/crypto/external/bsd/openssh/dist/auth2.c \ src/crypto/external/bsd/openssh/dist/kex
CVS commit: src/distrib/sets/lists
Module Name:src Committed By: christos Date: Sat Apr 20 17:24:06 UTC 2019 Modified Files: src/distrib/sets/lists/base: shl.mi src/distrib/sets/lists/debug: shl.mi Log Message: bump libssh To generate a diff of this commit: cvs rdiff -u -r1.861 -r1.862 src/distrib/sets/lists/base/shl.mi cvs rdiff -u -r1.220 -r1.221 src/distrib/sets/lists/debug/shl.mi Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: christos Date: Sat Apr 20 17:25:14 UTC 2019 Modified Files: src/doc: 3RDPARTY CHANGES Log Message: new OpenSSH To generate a diff of this commit: cvs rdiff -u -r1.1612 -r1.1613 src/doc/3RDPARTY cvs rdiff -u -r1.2525 -r1.2526 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/openssh/dist
Module Name:src Committed By: christos Date: Sat Apr 20 17:28:19 UTC 2019 Modified Files: src/crypto/external/bsd/openssh/dist: version.h Log Message: put back hpn/lpk strings To generate a diff of this commit: cvs rdiff -u -r1.27 -r1.28 src/crypto/external/bsd/openssh/dist/version.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/external/mit/xorg/lib
Module Name:src Committed By: maya Date: Sat Apr 20 17:31:22 UTC 2019 Modified Files: src/external/mit/xorg/lib/libEGL: Makefile src/external/mit/xorg/lib/libgbm: Makefile Log Message: Add missing file. Allows linking webkit-gtk (which has a process link against libEGL/libgbm). Thanks leot@ for the report! To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 src/external/mit/xorg/lib/libEGL/Makefile cvs rdiff -u -r1.4 -r1.5 src/external/mit/xorg/lib/libgbm/Makefile 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: pgoyette Date: Sat Apr 20 22:16:47 UTC 2019 Modified Files: src/sys/net: if.c Log Message: Typos in comments. NFCI. To generate a diff of this commit: cvs rdiff -u -r1.450 -r1.451 src/sys/net/if.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/crypto/external/bsd/openssh/dist
Module Name:src Committed By: kre Date: Sun Apr 21 01:32:04 UTC 2019 Modified Files: src/crypto/external/bsd/openssh/dist: sshconnect2.c Log Message: Put declaration of 'userauth_kerberos' inside #if KRB5 where it belongs. To generate a diff of this commit: cvs rdiff -u -r1.33 -r1.34 src/crypto/external/bsd/openssh/dist/sshconnect2.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/pckbport
Module Name:src Committed By: blymn Date: Sun Apr 21 02:40:35 UTC 2019 Modified Files: src/sys/dev/pckbport: synaptics.c Log Message: Fix minor comment nit. To generate a diff of this commit: cvs rdiff -u -r1.46 -r1.47 src/sys/dev/pckbport/synaptics.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys
Module Name:src Committed By: isaki Date: Sun Apr 21 04:28:59 UTC 2019 Modified Files: src/sys/dev [isaki-audio2]: auconv.c auconv.h audio_if.h audiobell.c audiovar.h files.audio mulaw.h src/sys/dev/pad [isaki-audio2]: pad.c padvar.h src/sys/sys [isaki-audio2]: audioio.h file.h Added Files: src/sys/dev/audio [isaki-audio2]: alaw.c audio.c audiodef.h audiofil.h audiovar.h linear.c linear.h mulaw.c mulaw.h Removed Files: src/sys/dev [isaki-audio2]: audio.c audiobelldata.h aurateconv.c auvolconv.c auvolconv.h mulaw.c Log Message: Reimplement audio subsystem. http://mail-index.netbsd.org/tech-kern/2019/04/01/msg024944.html At first step, audio and devices tightly coupled to audio. audio.c -> dev/audio.c: completely rewritten. mulaw.c -> audio/mulaw.c, audio/alaw.c: improve quality. audiovar.h, mulaw.h: should be removed. audio/linear.c: efficient new linear-linear converter. auconv.[ch]: should be removed but need some functions for now. aurateconv, auvolconv: removed (new audio.c handles it). audiobell.c: efficient and small new bell driver. audiobelldata.h: removed 4KB sine wave data. pad/pad.c: catch up audio, but not cloneable for now. To generate a diff of this commit: cvs rdiff -u -r1.37 -r1.37.2.1 src/sys/dev/auconv.c cvs rdiff -u -r1.21 -r1.21.8.1 src/sys/dev/auconv.h cvs rdiff -u -r1.459 -r0 src/sys/dev/audio.c cvs rdiff -u -r1.70 -r1.70.24.1 src/sys/dev/audio_if.h cvs rdiff -u -r1.26 -r1.26.2.1 src/sys/dev/audiobell.c cvs rdiff -u -r1.1 -r0 src/sys/dev/audiobelldata.h src/sys/dev/auvolconv.h cvs rdiff -u -r1.68 -r1.68.8.1 src/sys/dev/audiovar.h cvs rdiff -u -r1.23 -r0 src/sys/dev/aurateconv.c cvs rdiff -u -r1.4 -r0 src/sys/dev/auvolconv.c cvs rdiff -u -r1.11 -r1.11.16.1 src/sys/dev/files.audio cvs rdiff -u -r1.34 -r0 src/sys/dev/mulaw.c cvs rdiff -u -r1.25 -r1.25.8.1 src/sys/dev/mulaw.h cvs rdiff -u -r0 -r1.1.2.1 src/sys/dev/audio/alaw.c src/sys/dev/audio/audio.c \ src/sys/dev/audio/audiodef.h src/sys/dev/audio/audiofil.h \ src/sys/dev/audio/audiovar.h src/sys/dev/audio/linear.c \ src/sys/dev/audio/linear.h src/sys/dev/audio/mulaw.c \ src/sys/dev/audio/mulaw.h cvs rdiff -u -r1.58 -r1.58.2.1 src/sys/dev/pad/pad.c cvs rdiff -u -r1.11 -r1.11.10.1 src/sys/dev/pad/padvar.h cvs rdiff -u -r1.37 -r1.37.16.1 src/sys/sys/audioio.h cvs rdiff -u -r1.84 -r1.84.2.1 src/sys/sys/file.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys
Module Name:src Committed By: isaki Date: Sun Apr 21 05:11:22 UTC 2019 Modified Files: src/sys/arch/arm/xscale [isaki-audio2]: pxa2x0_ac97.c src/sys/arch/dreamcast/dev/g2 [isaki-audio2]: aica.c src/sys/arch/macppc/dev [isaki-audio2]: awacs.c snapper.c src/sys/arch/sgimips/mace [isaki-audio2]: mavb.c src/sys/arch/usermode/dev [isaki-audio2]: vaudio.c src/sys/arch/zaurus/dev [isaki-audio2]: wm8750_zaudio.c src/sys/dev/bluetooth [isaki-audio2]: btsco.c src/sys/dev/ic [isaki-audio2]: arcofi.c uda1341.c src/sys/dev/isa [isaki-audio2]: ess.c src/sys/dev/pci [isaki-audio2]: auacer.c auich.c auixpvar.h autri.c auvia.c cmpci.c eap.c emuxki.c esa.c esm.c eso.c fms.c gcscaudio.c neo.c sv.c yds.c src/sys/dev/sbus [isaki-audio2]: dbri.c Log Message: Use C99 style struct initializer to audio_format. To generate a diff of this commit: cvs rdiff -u -r1.15 -r1.15.2.1 src/sys/arch/arm/xscale/pxa2x0_ac97.c cvs rdiff -u -r1.25 -r1.25.2.1 src/sys/arch/dreamcast/dev/g2/aica.c cvs rdiff -u -r1.46 -r1.46.2.1 src/sys/arch/macppc/dev/awacs.c cvs rdiff -u -r1.49 -r1.49.2.1 src/sys/arch/macppc/dev/snapper.c cvs rdiff -u -r1.12 -r1.12.2.1 src/sys/arch/sgimips/mace/mavb.c cvs rdiff -u -r1.4 -r1.4.32.1 src/sys/arch/usermode/dev/vaudio.c cvs rdiff -u -r1.2 -r1.2.4.1 src/sys/arch/zaurus/dev/wm8750_zaudio.c cvs rdiff -u -r1.38 -r1.38.2.1 src/sys/dev/bluetooth/btsco.c cvs rdiff -u -r1.1 -r1.1.28.1 src/sys/dev/ic/arcofi.c cvs rdiff -u -r1.1 -r1.1.56.1 src/sys/dev/ic/uda1341.c cvs rdiff -u -r1.84 -r1.84.2.1 src/sys/dev/isa/ess.c cvs rdiff -u -r1.36 -r1.36.2.1 src/sys/dev/pci/auacer.c cvs rdiff -u -r1.154 -r1.154.2.1 src/sys/dev/pci/auich.c cvs rdiff -u -r1.8 -r1.8.42.1 src/sys/dev/pci/auixpvar.h cvs rdiff -u -r1.56 -r1.56.2.1 src/sys/dev/pci/autri.c cvs rdiff -u -r1.82 -r1.82.2.1 src/sys/dev/pci/auvia.c cvs rdiff -u -r1.53 -r1.53.2.1 src/sys/dev/pci/cmpci.c cvs rdiff -u -r1.99 -r1.99.2.1 src/sys/dev/pci/eap.c cvs rdiff -u -r1.67 -r1.67.2.1 src/sys/dev/pci/emuxki.c cvs rdiff -u -r1.63 -r1.63.2.1 src/sys/dev/pci/esa.c cvs rdiff -u -r1.61 -r1.61.2.1 src/sys/dev/pci/esm.c src/sys/dev/pci/yds.c cvs rdiff -u -r1.69 -r1.69.2.1 src/sys/dev/pci/eso.c cvs rdiff -u -r1.45 -r1.45.2.1 src/sys/dev/pci/fms.c cvs rdiff -u -r1.16 -r1.16.2.1 src/sys/dev/pci/gcscaudio.c cvs rdiff -u -r1.52 -r1.52.2.1 src/sys/dev/pci/neo.c cvs rdiff -u -r1.54 -r1.54.2.1 src/sys/dev/pci/sv.c cvs rdiff -u -r1.39 -r1.39.2.1 src/sys/dev/sbus/dbri.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys/dev/hdaudio
Module Name:src Committed By: isaki Date: Sun Apr 21 05:22:57 UTC 2019 Modified Files: src/sys/dev/hdaudio [isaki-audio2]: hdafg.c Log Message: Adapt to audio2. - Fix wrong blocksize restrictions. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.16.2.1 src/sys/dev/hdaudio/hdafg.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys
Module Name:src Committed By: isaki Date: Sun Apr 21 06:00:00 UTC 2019 Modified Files: src/sys/arch/amiga/dev [isaki-audio2]: toccata.c src/sys/arch/prep/isa [isaki-audio2]: paud_isa.c src/sys/dev/ebus [isaki-audio2]: cs4231_ebus.c src/sys/dev/ic [isaki-audio2]: ad1848.c ad1848var.h interwave.c interwavevar.h src/sys/dev/isa [isaki-audio2]: gus.c wss.c ym.c src/sys/dev/isapnp [isaki-audio2]: gus_isapnp.c src/sys/dev/sbus [isaki-audio2]: cs4231_sbus.c Log Message: Adapt ad1848/cs4231 families to audio2. To generate a diff of this commit: cvs rdiff -u -r1.18 -r1.18.2.1 src/sys/arch/amiga/dev/toccata.c cvs rdiff -u -r1.17 -r1.17.2.1 src/sys/arch/prep/isa/paud_isa.c cvs rdiff -u -r1.38 -r1.38.2.1 src/sys/dev/ebus/cs4231_ebus.c cvs rdiff -u -r1.31 -r1.31.54.1 src/sys/dev/ic/ad1848.c cvs rdiff -u -r1.18 -r1.18.54.1 src/sys/dev/ic/ad1848var.h cvs rdiff -u -r1.40 -r1.40.2.1 src/sys/dev/ic/interwave.c cvs rdiff -u -r1.18 -r1.18.42.1 src/sys/dev/ic/interwavevar.h cvs rdiff -u -r1.115 -r1.115.2.1 src/sys/dev/isa/gus.c cvs rdiff -u -r1.72 -r1.72.2.1 src/sys/dev/isa/wss.c cvs rdiff -u -r1.45 -r1.45.2.1 src/sys/dev/isa/ym.c cvs rdiff -u -r1.39 -r1.39.2.1 src/sys/dev/isapnp/gus_isapnp.c cvs rdiff -u -r1.51 -r1.51.2.1 src/sys/dev/sbus/cs4231_sbus.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys/dev/isa
Module Name:src Committed By: isaki Date: Sun Apr 21 06:09:01 UTC 2019 Modified Files: src/sys/dev/isa [isaki-audio2]: aria.c Log Message: Adapt to audio2. - Drop FULLDUPLEX property. The driver doesn't seem to be written as full duplex. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.39.2.1 src/sys/dev/isa/aria.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys/dev/isa
Module Name:src Committed By: isaki Date: Sun Apr 21 06:17:03 UTC 2019 Modified Files: src/sys/dev/isa [isaki-audio2]: sbdsp.c Log Message: Not yet fully adapted to audio2 but make it compilable. - Drop FULLDUPLEX property. It is done in a tricky way. To generate a diff of this commit: cvs rdiff -u -r1.139 -r1.139.2.1 src/sys/dev/isa/sbdsp.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/sys/arch/x86/x86
Module Name:src Committed By: maxv Date: Sun Apr 21 06:37:21 UTC 2019 Modified Files: src/sys/arch/x86/x86: bus_dma.c db_memrw.c kgdb_machdep.c svs.c x86_tlb.c Log Message: Rename the PTE bits. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 src/sys/arch/x86/x86/bus_dma.c cvs rdiff -u -r1.10 -r1.11 src/sys/arch/x86/x86/db_memrw.c cvs rdiff -u -r1.4 -r1.5 src/sys/arch/x86/x86/kgdb_machdep.c cvs rdiff -u -r1.24 -r1.25 src/sys/arch/x86/x86/svs.c cvs rdiff -u -r1.6 -r1.7 src/sys/arch/x86/x86/x86_tlb.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: maxv Date: Sun Apr 21 06:46:03 UTC 2019 Modified Files: src/doc: CHANGES Log Message: Note removal of COMPAT_OSF1. To generate a diff of this commit: cvs rdiff -u -r1.2526 -r1.2527 src/doc/CHANGES Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: src/doc
Module Name:src Committed By: maxv Date: Sun Apr 21 06:48:37 UTC 2019 Modified Files: src/doc: TODO.nvmm Log Message: update To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/doc/TODO.nvmm Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
CVS commit: [isaki-audio2] src/sys
Module Name:src Committed By: isaki Date: Sun Apr 21 06:55:34 UTC 2019 Modified Files: src/sys/arch/hp300/dev [isaki-audio2]: arcofi_dio.c src/sys/dev/ic [isaki-audio2]: arcofi.c arcofivar.h Log Message: Adapt to audio2. - Use mulaw as default format. HW supports slinear_be:16 actually but it's hard to use due to several hardware restrictions. - Improve data transfer and interrupt. Tested by tsutsui@ (a few months ago). Thank you. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.1.26.1 src/sys/arch/hp300/dev/arcofi_dio.c cvs rdiff -u -r1.1.28.1 -r1.1.28.2 src/sys/dev/ic/arcofi.c cvs rdiff -u -r1.1 -r1.1.28.1 src/sys/dev/ic/arcofivar.h Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.