svn commit: r315968 - head/sys/x86/iommu

2017-03-25 Thread Konstantin Belousov
Author: kib Date: Sun Mar 26 00:40:35 2017 New Revision: 315968 URL: https://svnweb.freebsd.org/changeset/base/315968 Log: Provide less laborius way to enable busdma DMAR to only short list of devices. Kernel environment variable hw.busdma.default can take values 'bounce' and 'dmar' and s

Re: svn commit: r315957 - in head/sys: amd64/linux amd64/linux32 compat/linux i386/linux

2017-03-25 Thread Konstantin Belousov
On Sat, Mar 25, 2017 at 03:47:30PM +, Dmitry Chagin wrote: > Author: dchagin > Date: Sat Mar 25 15:47:29 2017 > New Revision: 315957 > URL: https://svnweb.freebsd.org/changeset/base/315957 > > Log: > Implement Linux mincore() system call. > This is necessary for the upcoming drm-next. > +i

svn commit: r315967 - head/sys/arm/broadcom/bcm2835

2017-03-25 Thread Oleksandr Tymoshenko
Author: gonzo Date: Sat Mar 25 22:58:37 2017 New Revision: 315967 URL: https://svnweb.freebsd.org/changeset/base/315967 Log: [rpi] Use compatibility string from upstream DTB for I2C controller FreeBSD uses upstream DTB for RPi3 build and compatibility string for i2c device is different th

svn commit: r315966 - head/sys/dev/iwn

2017-03-25 Thread Andriy Voskoboinyk
Author: avos Date: Sat Mar 25 22:07:21 2017 New Revision: 315966 URL: https://svnweb.freebsd.org/changeset/base/315966 Log: iwn: fix return code conflict in iwn_init_locked() Do not try to use errno(2) codes here; instead, just return unique value (1) when radio is disabled via hardware s

svn commit: r315964 - head/usr.sbin/ppp

2017-03-25 Thread Sevan Janiyan
Author: sevan (doc committer) Date: Sat Mar 25 21:33:48 2017 New Revision: 315964 URL: https://svnweb.freebsd.org/changeset/base/315964 Log: ftp.microsoft.com is dead and the document was not archived, point to the full protocol spec document instead. Fix spelling mistake flagged by igor.

Re: svn commit: r315948 - in head: bin/csh contrib/tcsh contrib/tcsh/config contrib/tcsh/nls contrib/tcsh/nls/C contrib/tcsh/nls/et contrib/tcsh/nls/finnish contrib/tcsh/nls/french contrib/tcsh/nls/ge

2017-03-25 Thread Ed Maste
On 25 March 2017 at 16:19, Chagin Dmitry wrote: >> > Log: >> > Update to tcsh 6.20.00 >> >> Relnotes: yes >> > don't think it matters, In general I'd expect release notes to mention the version numbers for all updated third-party software components. _

Re: svn commit: r315948 - in head: bin/csh contrib/tcsh contrib/tcsh/config contrib/tcsh/nls contrib/tcsh/nls/C contrib/tcsh/nls/et contrib/tcsh/nls/finnish contrib/tcsh/nls/french contrib/tcsh/nls/ge

2017-03-25 Thread Chagin Dmitry
On Sat, Mar 25, 2017 at 10:45:30AM -0700, Ngie Cooper wrote: > > > On Mar 25, 2017, at 06:32, Dmitry Chagin wrote: > > > > Author: dchagin > > Date: Sat Mar 25 13:32:28 2017 > > New Revision: 315948 > > URL: https://svnweb.freebsd.org/changeset/base/315948 > > > > Log: > > Update to tcsh 6.20.

svn commit: r315961 - head/sys/dev/sound/pci/hda

2017-03-25 Thread Sean Bruno
Author: sbruno Date: Sat Mar 25 19:12:09 2017 New Revision: 315961 URL: https://svnweb.freebsd.org/changeset/base/315961 Log: Add ids for ALC233 found on Intel Skull Mountain NUC. Modified: head/sys/dev/sound/pci/hda/hdac.h head/sys/dev/sound/pci/hda/hdacc.c Modified: head/sys/dev/sound/pc

svn commit: r315960 - head/sys/kern

2017-03-25 Thread Andriy Gapon
Author: avg Date: Sat Mar 25 19:08:51 2017 New Revision: 315960 URL: https://svnweb.freebsd.org/changeset/base/315960 Log: dtrace sched:::preempt should fire only when there is preemption The probe fire on any thread switch before. Reviewed by: markj MFC after:1 week Sponsored

svn commit: r315959 - in head/sys: amd64/amd64 amd64/vmm amd64/vmm/amd i386/i386 x86/include x86/x86 x86/xen

2017-03-25 Thread Andriy Gapon
Author: avg Date: Sat Mar 25 18:45:09 2017 New Revision: 315959 URL: https://svnweb.freebsd.org/changeset/base/315959 Log: specific end of interrupt implementation for AMD Local APIC The change is more intrusive than I would like because the feature requires that a vector number is writte

Re: svn commit: r315948 - in head: bin/csh contrib/tcsh contrib/tcsh/config contrib/tcsh/nls contrib/tcsh/nls/C contrib/tcsh/nls/et contrib/tcsh/nls/finnish contrib/tcsh/nls/french contrib/tcsh/nls/ge

2017-03-25 Thread Ngie Cooper
> On Mar 25, 2017, at 06:32, Dmitry Chagin wrote: > > Author: dchagin > Date: Sat Mar 25 13:32:28 2017 > New Revision: 315948 > URL: https://svnweb.freebsd.org/changeset/base/315948 > > Log: > Update to tcsh 6.20.00 Relnotes: yes Should this be MFCed? Thanks! -Ngie _

svn commit: r315958 - head/sys/dev/iwn

2017-03-25 Thread Andriy Voskoboinyk
Author: avos Date: Sat Mar 25 15:57:47 2017 New Revision: 315958 URL: https://svnweb.freebsd.org/changeset/base/315958 Log: iwn: do not try to update node configuration when the node does not exist. Firmware will just respond with status '0x8' (node does not exist) or will hang -> cause '

svn commit: r315957 - in head/sys: amd64/linux amd64/linux32 compat/linux i386/linux

2017-03-25 Thread Dmitry Chagin
Author: dchagin Date: Sat Mar 25 15:47:29 2017 New Revision: 315957 URL: https://svnweb.freebsd.org/changeset/base/315957 Log: Implement Linux mincore() system call. This is necessary for the upcoming drm-next. Suggested by: hselasky@ MFC after:1 month Modified: head/sys/amd64/li

svn commit: r315956 - in head/sys: netinet netinet6

2017-03-25 Thread Mike Karels
Author: karels Date: Sat Mar 25 15:06:28 2017 New Revision: 315956 URL: https://svnweb.freebsd.org/changeset/base/315956 Log: Fix reference count leak with L2 caching. ip_forward, TCP/IPv6, and probably SCTP leaked references to L2 cache entry because they used their own routes on the sta

svn commit: r315952 - head/contrib/tcsh

2017-03-25 Thread Dmitry Chagin
Author: dchagin Date: Sat Mar 25 14:14:11 2017 New Revision: 315952 URL: https://svnweb.freebsd.org/changeset/base/315952 Log: MFV r315950: Update vendor/tcsh to git b605cb561d Vendor changes: 1. PR/471: Daiki Ueno: Delay interpreting arginp until we've processed our startup fil

svn commit: r315948 - in head: bin/csh contrib/tcsh contrib/tcsh/config contrib/tcsh/nls contrib/tcsh/nls/C contrib/tcsh/nls/et contrib/tcsh/nls/finnish contrib/tcsh/nls/french contrib/tcsh/nls/ger...

2017-03-25 Thread Dmitry Chagin
Author: dchagin Date: Sat Mar 25 13:32:28 2017 New Revision: 315948 URL: https://svnweb.freebsd.org/changeset/base/315948 Log: Update to tcsh 6.20.00 Added: head/contrib/tcsh/dotlock.c - copied unchanged from r315512, vendor/tcsh/dist/dotlock.c head/contrib/tcsh/dotlock.h - copied

svn commit: r315947 - head/contrib/libcxxrt

2017-03-25 Thread Dimitry Andric
Author: dim Date: Sat Mar 25 13:17:48 2017 New Revision: 315947 URL: https://svnweb.freebsd.org/changeset/base/315947 Log: Import libcxxrt master 8a853717e61d5d55cbdf74d9d0a7545da5d5ff92. Interesting fixes which were not already merged: 0c7c611 Merge C++ demangler bug fixes from ELF Tool

svn commit: r315946 - head/sys/dev/iwn

2017-03-25 Thread Andriy Voskoboinyk
Author: avos Date: Sat Mar 25 13:15:43 2017 New Revision: 315946 URL: https://svnweb.freebsd.org/changeset/base/315946 Log: iwn: add few missing notification types into iwn_intr_str() Modified: head/sys/dev/iwn/if_iwn_debug.h Modified: head/sys/dev/iwn/if_iwn_debug.h

Re: svn commit: r315773 - head/sbin/devd

2017-03-25 Thread Dag-Erling Smørgrav
Warner Losh writes: > Log: > Implement quote escaping. String values may now contain " if you > it is preceded by \. If you're interested, openpam_readword(3) implements the full POSIX shell quoting rules, including line continuations and multi-line quoted strings, and should be fairly easy t

svn commit: r315935 - head/usr.sbin/pw/tests

2017-03-25 Thread Baptiste Daroussin
Author: bapt Date: Sat Mar 25 10:47:58 2017 New Revision: 315935 URL: https://svnweb.freebsd.org/changeset/base/315935 Log: Add a regression test for r31512 fix PR: 217934 MFC after:1 week Modified: head/usr.sbin/pw/tests/pw_useradd_test.sh Modified: head/usr.sbin/pw/tes

svn commit: r315934 - head/sys/x86/iommu

2017-03-25 Thread Konstantin Belousov
Author: kib Date: Sat Mar 25 10:47:35 2017 New Revision: 315934 URL: https://svnweb.freebsd.org/changeset/base/315934 Log: Avoid leaking allocated but unused context after creation race. As noted in the comment, nothing special needs to be done to destroy the unneeded context after the al

svn commit: r315933 - head/sys/x86/iommu

2017-03-25 Thread Konstantin Belousov
Author: kib Date: Sat Mar 25 10:45:16 2017 New Revision: 315933 URL: https://svnweb.freebsd.org/changeset/base/315933 Log: Do not create RMRR entries for identity-mapped domains. It does not make sense since identity mapping already provides the required mapping for RMRR ranges. More, si

svn commit: r315932 - head/sys/x86/iommu

2017-03-25 Thread Konstantin Belousov
Author: kib Date: Sat Mar 25 10:42:10 2017 New Revision: 315932 URL: https://svnweb.freebsd.org/changeset/base/315932 Log: Slight cleanup of the comment. Sponsored by: The FreeBSD Foundation MFC after:1 week Modified: head/sys/x86/iommu/intel_dmar.h Modified: head/sys/x86/iommu/in

svn commit: r315931 - head/sys/arm/allwinner

2017-03-25 Thread Ganbold Tsagaankhuu
Author: ganbold Date: Sat Mar 25 10:39:24 2017 New Revision: 315931 URL: https://svnweb.freebsd.org/changeset/base/315931 Log: Fix and add comments to match selected frequency sample. Add debug printfs when bootverbose is used. No functional changes. Modified: head/sys/arm/allwinner/aw_ci

Re: svn commit: r315925 - head/sys/dev/iwm

2017-03-25 Thread Chagin Dmitry
On Sat, Mar 25, 2017 at 02:49:20AM +, Adrian Chadd wrote: > Author: adrian > Date: Sat Mar 25 02:49:20 2017 > New Revision: 315925 > URL: https://svnweb.freebsd.org/changeset/base/315925 > > Log: > [iwm] Enable Energy Based Scan (EBS). > > This can significantly reduce scan duration thu