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

2016-04-12 Thread Oleksandr Tymoshenko
Author: gonzo Date: Wed Apr 13 05:28:27 2016 New Revision: 297911 URL: https://svnweb.freebsd.org/changeset/base/297911 Log: Multiple fixes in VCHI audio driver: - Pre-buffer audio data to VideoCore so there are no audible glitches when driver is too late to provide samples - Start

svn commit: r297910 - head/sys/dev/urtwn

2016-04-12 Thread Adrian Chadd
Author: adrian Date: Wed Apr 13 05:19:16 2016 New Revision: 297910 URL: https://svnweb.freebsd.org/changeset/base/297910 Log: [urtwn] use/track the last good RSSI for a given node, rather than no RSSI. Now that we're decap'ing A-MPDU frame, the firmware is only giving us PHY status

Re: svn commit: r297898 - head/sys/dev/bxe

2016-04-12 Thread Sepherosa Ziehau
On Wed, Apr 13, 2016 at 12:15 PM, David Somayajulu wrote: > HI Sepherosa, > I have checked in the fix. https://svnweb.freebsd.org/changeset/base/297909 Thanks! > > Apologies for the screw up earlier. Sorry for the inconvenience. > > Cheers > David S. > >

Re: svn commit: r297902 - head

2016-04-12 Thread NGie Cooper
> On Apr 12, 2016, at 20:02, Bryan Drewery wrote: > >> On 4/12/2016 8:00 PM, Steve Wills wrote: >>> On 04/12/16 09:59 PM, Ian Lepore wrote: >>> >>> More succinctly: >>> >>> .if empty(SVN) >>> SVN!= which svn || which svnlite >>> .endif >> >> Fair enough, that's

svn commit: r297909 - head/sys/dev/bxe

2016-04-12 Thread David C Somayajulu
Author: davidcs Date: Wed Apr 13 04:13:36 2016 New Revision: 297909 URL: https://svnweb.freebsd.org/changeset/base/297909 Log: Fix build failure on i386. Need to typecast a bunch of variables to (uintmax_t) MFC after:5 days Modified: head/sys/dev/bxe/bxe.c Modified:

Re: svn commit: r297898 - head/sys/dev/bxe

2016-04-12 Thread Sepherosa Ziehau
Great! Thanks! On Wed, Apr 13, 2016 at 11:48 AM, David Somayajulu wrote: > Hi Sepherosa, > I just saw it and am taking a look at it. Give me a few minutes and I will > get back. > Thanks > David S. > > -Original Message- > From: Sepherosa Ziehau

svn commit: r297908 - head/sys/dev/hyperv/vmbus

2016-04-12 Thread Sepherosa Ziehau
Author: sephe Date: Wed Apr 13 03:45:39 2016 New Revision: 297908 URL: https://svnweb.freebsd.org/changeset/base/297908 Log: hyperv/vmbus: Merge duplicated version check for events Submitted by: Jun Su Reviewed by: sephe MFC after:1 week Sponsored by: Microsoft OSTC

Re: svn commit: r297898 - head/sys/dev/bxe

2016-04-12 Thread Sepherosa Ziehau
Hi David, BLOGI(sc, "cdu_context i %d paddr %#jx vaddr %p size 0x%zx\n", i, sc->context[i].vcxt_dma.paddr, sc->context[i].vcxt_dma.vaddr, sc->context[i].size); This breaks i386 building. I think you need to do (uintmax_t)paddr for %jx:

svn commit: r297907 - head/usr.sbin/ypldap

2016-04-12 Thread Marcelo Araujo
Author: araujo Date: Wed Apr 13 03:36:34 2016 New Revision: 297907 URL: https://svnweb.freebsd.org/changeset/base/297907 Log: Convert ypldap_addr list to a tailq(queue(3)). Obtained from:OpenBSD r1.11, r1.17 and r1.36 Modified: head/usr.sbin/ypldap/ldapclient.c

Re: svn commit: r297902 - head

2016-04-12 Thread Bryan Drewery
On 4/12/2016 8:00 PM, Steve Wills wrote: > On 04/12/16 09:59 PM, Ian Lepore wrote: >> >> More succinctly: >> >> .if empty(SVN) >> SVN!= which svn || which svnlite >> .endif >> > > Fair enough, that's basically the intent. I think we like to avoid !=, > at least in ports, and I wanted the logic

Re: svn commit: r297902 - head

2016-04-12 Thread Steve Wills
On 04/12/16 09:59 PM, Ian Lepore wrote: > > More succinctly: > > .if empty(SVN) > SVN!= which svn || which svnlite > .endif > Fair enough, that's basically the intent. I think we like to avoid !=, at least in ports, and I wanted the logic between src and ports to match in this case. Steve

Re: svn commit: r297897 - in head/usr.bin: . resizewin

2016-04-12 Thread Conrad Meyer
On Tue, Apr 12, 2016 at 5:30 PM, Conrad E. Meyer wrote: > Author: cem > Date: Wed Apr 13 00:30:42 2016 > New Revision: 297897 > URL: https://svnweb.freebsd.org/changeset/base/297897 > > Log: > Add a small tool, resizewin(1), to query terminal for window size Whoops. The

Re: svn commit: r297902 - head

2016-04-12 Thread Ian Lepore
On Wed, 2016-04-13 at 01:47 +, Steve Wills wrote: > Author: swills (ports committer) > Date: Wed Apr 13 01:47:04 2016 > New Revision: 297902 > URL: https://svnweb.freebsd.org/changeset/base/297902 > > Log: > Try harder to find svn > > While here, elliminate last references to

svn commit: r297905 - head/usr.bin/fmt

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Wed Apr 13 01:57:06 2016 New Revision: 297905 URL: https://svnweb.freebsd.org/changeset/base/297905 Log: fmt(1): for pointers use NULL instead of 0 While here clean excessive not lint comment indentation. Modified: head/usr.bin/fmt/fmt.c Modified:

svn commit: r297903 - head/usr.sbin/ypldap

2016-04-12 Thread Marcelo Araujo
Author: araujo Date: Wed Apr 13 01:54:33 2016 New Revision: 297903 URL: https://svnweb.freebsd.org/changeset/base/297903 Log: Apply revisions 1.4 and 1.5 from ldapd's ber.c to ypldap's copy, so it can deal with messages that haven't been fully read from the server yet. Obtained from:

svn commit: r297904 - stable/10/lib/libc/db/hash

2016-04-12 Thread Bryan Drewery
Author: bdrewery Date: Wed Apr 13 01:54:36 2016 New Revision: 297904 URL: https://svnweb.freebsd.org/changeset/base/297904 Log: MFC r297626: Follow-up r295924: Only sync hash-based db files open for writing when closing. Modified: stable/10/lib/libc/db/hash/hash.c Directory

Re: svn commit: r297889 - in vendor/Juniper/libxo/dist: . libxo

2016-04-12 Thread Phil Shafer
NGie Cooper writes: >> Log: >> import libso 0.4.6 > >I think you meant libxo... Doh! Thanks ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to

svn commit: r297902 - head

2016-04-12 Thread Steve Wills
Author: swills (ports committer) Date: Wed Apr 13 01:47:04 2016 New Revision: 297902 URL: https://svnweb.freebsd.org/changeset/base/297902 Log: Try harder to find svn While here, elliminate last references to CVS_UPDATE and SUP_UPDATE Reviewed by: gjb Approved by: gjb Modified:

svn commit: r297901 - head/usr.bin/fmt

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Wed Apr 13 01:46:48 2016 New Revision: 297901 URL: https://svnweb.freebsd.org/changeset/base/297901 Log: fmt(1): reformat with indent(1). Failed attempt to get nearer to style(9) and the format from the original OpenBSD code. At least it should be readable now. No

Re: svn commit: r297889 - in vendor/Juniper/libxo/dist: . libxo

2016-04-12 Thread NGie Cooper
> On Apr 12, 2016, at 16:03, Phil Shafer wrote: > > Author: phil > Date: Tue Apr 12 23:03:01 2016 > New Revision: 297889 > URL: https://svnweb.freebsd.org/changeset/base/297889 > > Log: > import libso 0.4.6 I think you meant libxo... > > Added: >

svn commit: r297898 - head/sys/dev/bxe

2016-04-12 Thread David C Somayajulu
Author: davidcs Date: Wed Apr 13 00:53:04 2016 New Revision: 297898 URL: https://svnweb.freebsd.org/changeset/base/297898 Log: 1. modify fwdump (a.k.a grcdump) memory is allocated and freed on as needed basis. 2. grcdump can be taken at failure points by invoking bxe_grc_dump() when

svn commit: r297897 - in head/usr.bin: . resizewin

2016-04-12 Thread Conrad E. Meyer
Author: cem Date: Wed Apr 13 00:30:42 2016 New Revision: 297897 URL: https://svnweb.freebsd.org/changeset/base/297897 Log: Add a small tool, resizewin(1), to query terminal for window size Submitted by: Daniel O'Connor Reviewed by: kan, wblock, cem Sponsored by: EMC / Isilon Storage

Re: svn commit: r297889 - in vendor/Juniper/libxo/dist: . libxo

2016-04-12 Thread Simon J. Gerraty
Bryan Drewery wrote: > Are files missing from this? It seems quite small for a release and the > .svnignore makes me think there's a missing m4 directory. The m4 directory was deliberately excluded along with some other junk which is not relevant to FreeBSD.

svn commit: r297895 - vendor/Juniper/libxo

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:38:10 2016 New Revision: 297895 URL: https://svnweb.freebsd.org/changeset/base/297895 Log: add FreeBSD header to copied files Modified: vendor/Juniper/libxo/import.sh Modified: vendor/Juniper/libxo/import.sh

svn commit: r297894 - in head: contrib/libxo contrib/libxo/doc contrib/libxo/libxo contrib/libxo/m4 lib/libxo

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:30:56 2016 New Revision: 297894 URL: https://svnweb.freebsd.org/changeset/base/297894 Log: Merge libxo 0.4.6 Reviewed by: sjg Approved by: sjg (mentor) Added: head/contrib/libxo/.gitignore - copied unchanged from r297891,

Re: svn commit: r297889 - in vendor/Juniper/libxo/dist: . libxo

2016-04-12 Thread Bryan Drewery
On 4/12/2016 4:03 PM, Phil Shafer wrote: > Author: phil > Date: Tue Apr 12 23:03:01 2016 > New Revision: 297889 > URL: https://svnweb.freebsd.org/changeset/base/297889 > > Log: > import libso 0.4.6 > > Added: > vendor/Juniper/libxo/dist/libxo/xo_config.h.in (contents, props changed) >

svn commit: r297893 - vendor/Juniper/libxo

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:22:32 2016 New Revision: 297893 URL: https://svnweb.freebsd.org/changeset/base/297893 Log: add "svn up" after tagging Modified: vendor/Juniper/libxo/import.sh Modified: vendor/Juniper/libxo/import.sh

svn commit: r297892 - vendor/Juniper/libxo

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:20:50 2016 New Revision: 297892 URL: https://svnweb.freebsd.org/changeset/base/297892 Log: import libxo 0.4.6 Added: vendor/Juniper/libxo/.svnignore Replaced: vendor/Juniper/libxo/import.sh - copied, changed from r296971, vendor/NetBSD/bmake/import.sh

svn commit: r297889 - in vendor/Juniper/libxo/dist: . libxo

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:03:01 2016 New Revision: 297889 URL: https://svnweb.freebsd.org/changeset/base/297889 Log: import libso 0.4.6 Added: vendor/Juniper/libxo/dist/libxo/xo_config.h.in (contents, props changed) Modified: vendor/Juniper/libxo/dist/.svnignore Directory

svn commit: r297890 - vendor/Juniper/libxo/0.4.6

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 23:03:37 2016 New Revision: 297890 URL: https://svnweb.freebsd.org/changeset/base/297890 Log: Tag libxo 0.4.6 Added: - copied from r297889, vendor/Juniper/libxo/dist/ Directory Properties: vendor/Juniper/libxo/0.4.6/ (props changed)

svn commit: r297888 - head/lib/libc/gen

2016-04-12 Thread Ed Maste
Author: emaste Date: Tue Apr 12 22:59:20 2016 New Revision: 297888 URL: https://svnweb.freebsd.org/changeset/base/297888 Log: Remove PS_STRINGS fallback from setproctitle In r103767 the kern.ps_strings sysctl was added as the preferred way to locate the ps_strings struct and is available

svn commit: r297886 - head/sbin/fsck_ffs

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Tue Apr 12 22:55:47 2016 New Revision: 297886 URL: https://svnweb.freebsd.org/changeset/base/297886 Log: fsck_ffs for pointers replace 0 with NULL. Found with devel/coccinelle. Reviewed by: mckusick Modified: head/sbin/fsck_ffs/dir.c head/sbin/fsck_ffs/fsutil.c

svn commit: r297885 - in vendor/Juniper/libxo/dist: . doc libxo m4

2016-04-12 Thread Phil Shafer
Author: phil Date: Tue Apr 12 22:54:19 2016 New Revision: 297885 URL: https://svnweb.freebsd.org/changeset/base/297885 Log: Import libxo 0.4.6 Added: vendor/Juniper/libxo/dist/.gitignore vendor/Juniper/libxo/dist/.svnignore vendor/Juniper/libxo/dist/doc/libxo-manual.html (contents,

svn commit: r297884 - head/sys/dev/bxe

2016-04-12 Thread David C Somayajulu
Author: davidcs Date: Tue Apr 12 22:31:48 2016 New Revision: 297884 URL: https://svnweb.freebsd.org/changeset/base/297884 Log: Add support for Flash Update Submitted by:nrapendra.si...@qlogic.com;vaishali.kulka...@qlogic.com;davi...@freebsd.org Approved by:davi...@freebsd.org MFC

svn commit: r297883 - head/sys/dev/cxgbe

2016-04-12 Thread Navdeep Parhar
Author: np Date: Tue Apr 12 22:11:29 2016 New Revision: 297883 URL: https://svnweb.freebsd.org/changeset/base/297883 Log: cxgbe(4): Always dispatch all work requests that have been written to the descriptor ring before leaving drain_wrq_wr_list. Modified: head/sys/dev/cxgbe/t4_sge.c

svn commit: r297880 - head/sys/netinet

2016-04-12 Thread Michael Tuexen
Author: tuexen Date: Tue Apr 12 21:40:54 2016 New Revision: 297880 URL: https://svnweb.freebsd.org/changeset/base/297880 Log: Refactor the handling of ICMP/IPv4 packets for SCTP/IPv4. This cleansup the code and prepares upcoming handling of ICMP/IPv4 packets for SCTP/UDP/IPv4 packets.

svn commit: r297879 - head/sys/contrib/rdma/krping

2016-04-12 Thread Navdeep Parhar
Author: np Date: Tue Apr 12 21:34:04 2016 New Revision: 297879 URL: https://svnweb.freebsd.org/changeset/base/297879 Log: Add fastreg support to krping (ported from upstream). Submitted by: Krishnamraju Eraparaju @ Chelsio Sponsored by: Chelsio Communications Differential Revision:

svn commit: r297877 - in head/sys/amd64: conf include

2016-04-12 Thread John Baldwin
Author: jhb Date: Tue Apr 12 21:23:44 2016 New Revision: 297877 URL: https://svnweb.freebsd.org/changeset/base/297877 Log: Enable DEVICE_NUMA with up to 8 domains by default on amd64. 8 memory domains should handle a quad-socket board with dual-domain processors. Reviewed by: kib

svn commit: r297875 - head/sys/dev/cxgbe/common

2016-04-12 Thread Navdeep Parhar
Author: np Date: Tue Apr 12 21:17:19 2016 New Revision: 297875 URL: https://svnweb.freebsd.org/changeset/base/297875 Log: cxgbe(4): Always read the entire mailbox into the reply buffer. The size of the reply can be different from the size of the command in case a debug firmware asserts.

Re: svn commit: r296548 - in head/sys: dev/agp dev/drm2 dev/drm2/i915 modules/drm2/i915kms

2016-04-12 Thread Oliver Pinter
On 4/12/16, Edward Tomasz Napierała wrote: > I have the exact same problem on T420. Switching consoles back and forth > works as a workaround. I have the same issue on my HP Probook 430G1 (Haswell GPU). > > On 0411T1633, Adrian Chadd wrote: >> hiya, >> >> My x230 backlight

svn commit: r297873 - head/sys/dev/bxe

2016-04-12 Thread David C Somayajulu
Author: davidcs Date: Tue Apr 12 21:00:38 2016 New Revision: 297873 URL: https://svnweb.freebsd.org/changeset/base/297873 Log: 1. Process tx completions in bxe_periodic_callout_func() and restart transmissions if possible. 2. For SIOCSIFFLAGS call bxe_init_locked() only if

svn commit: r297872 - head/sys/boot/efi/boot1

2016-04-12 Thread Ed Maste
Author: emaste Date: Tue Apr 12 20:59:25 2016 New Revision: 297872 URL: https://svnweb.freebsd.org/changeset/base/297872 Log: boot1: regenerate FAT templates after r297871 Sponsored by: The FreeBSD Foundation Modified: head/sys/boot/efi/boot1/Makefile.fat

svn commit: r297871 - head/sys/boot/efi/boot1

2016-04-12 Thread Ed Maste
Author: emaste Date: Tue Apr 12 20:52:28 2016 New Revision: 297871 URL: https://svnweb.freebsd.org/changeset/base/297871 Log: boot1.efifat: provide a fallback startup.nsh In case the firmware falls through to executing startup.sh, populate it with the name of our boot loader. In normal

svn commit: r297869 - head/sys/fs/nfsserver

2016-04-12 Thread Rick Macklem
Author: rmacklem Date: Tue Apr 12 20:23:09 2016 New Revision: 297869 URL: https://svnweb.freebsd.org/changeset/base/297869 Log: If the VOP_SETATTR() call that saves the exclusive create verifier failed, the NFS server would leave the newly created vnode locked. This could result in a file

svn commit: r297868 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2016-04-12 Thread Alan Somers
Author: asomers Date: Tue Apr 12 19:11:14 2016 New Revision: 297868 URL: https://svnweb.freebsd.org/changeset/base/297868 Log: Fix rare double free in vdev_geom_attrchanged sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c Don't drop the g_topology_lock before freeing

svn commit: r297867 - head/sys/dev/isp

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 18:50:37 2016 New Revision: 297867 URL: https://svnweb.freebsd.org/changeset/base/297867 Log: Make all CT Pass-Through (name server requests) asynchronous. Previously we had to do it synchronously because we could not drop the lock due to potential scratch

svn commit: r297866 - head/libexec/bootpd

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Tue Apr 12 18:24:02 2016 New Revision: 297866 URL: https://svnweb.freebsd.org/changeset/base/297866 Log: Restore some comments in previous commit. Modified: head/libexec/bootpd/readfile.c Modified: head/libexec/bootpd/readfile.c

svn commit: r297865 - in head/libexec/bootpd: . tools/bootptest

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Tue Apr 12 18:18:26 2016 New Revision: 297865 URL: https://svnweb.freebsd.org/changeset/base/297865 Log: bootpd(8): De-register and minor cleanups. For bootptest(8) also remuve an unused variable and replace 0 with a NULL for a pointer. Modified:

svn commit: r297864 - head/sys/kern

2016-04-12 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Apr 12 18:13:24 2016 New Revision: 297864 URL: https://svnweb.freebsd.org/changeset/base/297864 Log: Fix overflow checking. There are some other potential problems related to overflowing racct counters; I'll revisit those later. Submitted by: Pieter de Goeje

svn commit: r297863 - head/sys/dev/cxgbe/common

2016-04-12 Thread John Baldwin
Author: jhb Date: Tue Apr 12 17:44:34 2016 New Revision: 297863 URL: https://svnweb.freebsd.org/changeset/base/297863 Log: Rename the 'M_B' macro in t4_regs.h to 'CXGBE_M_B'. This fixes a conflict with the M_B macro in powerpc's exposed by the recent addition of DDB commands to the

svn commit: r297862 - in head/sys/dev: mn mpt mrsas mvs nxge/xgehal sound/isa sound/midi sound/pci vxge/vxgehal

2016-04-12 Thread Pedro F. Giffuni
Author: pfg Date: Tue Apr 12 17:23:03 2016 New Revision: 297862 URL: https://svnweb.freebsd.org/changeset/base/297862 Log: Replace 0 with NULL for pointers in misc. device drivers. Found with devel/coccinelle. Modified: head/sys/dev/mn/if_mn.c head/sys/dev/mpt/mpt_raid.c

Re: svn commit: r296548 - in head/sys: dev/agp dev/drm2 dev/drm2/i915 modules/drm2/i915kms

2016-04-12 Thread John Baldwin
On Tuesday, April 12, 2016 08:17:35 AM Adrian Chadd wrote: > So, if I suspend in /xorg/, it works. but if I suspend now in vt, it > doesn't work. > > (Yes, vt + i915kms..) I can confirm the same on my x220 (and this is a regression). Switching over to another ttyv and back "fixes" it as trasz@

svn commit: r297860 - head/usr.sbin/ctld

2016-04-12 Thread Edward Tomasz Napierala
Author: trasz Date: Tue Apr 12 16:07:41 2016 New Revision: 297860 URL: https://svnweb.freebsd.org/changeset/base/297860 Log: Make the usage() mention the -u option added in r295212. MFC after:1 month Sponsored by: The FreeBSD Foundation Modified: head/usr.sbin/ctld/ctld.c

Re: svn commit: r296548 - in head/sys: dev/agp dev/drm2 dev/drm2/i915 modules/drm2/i915kms

2016-04-12 Thread Adrian Chadd
So, if I suspend in /xorg/, it works. but if I suspend now in vt, it doesn't work. (Yes, vt + i915kms..) -a ___ svn-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to

svn commit: r297859 - head/sys/dev/isp

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 14:43:17 2016 New Revision: 297859 URL: https://svnweb.freebsd.org/changeset/base/297859 Log: Switch isp_getpdb() to synchronous IOCB DMA area. While technically it is not IOCB, it is synchronous and can be called from different places, so calling

svn commit: r297858 - head/sys/dev/isp

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 14:19:19 2016 New Revision: 297858 URL: https://svnweb.freebsd.org/changeset/base/297858 Log: Allocate separate DMA area for synchronous IOCB execution. Usually IOCBs should be put on queue for asynchronous processing and should not require additional DMA

svn commit: r297857 - in head/sys: amd64/amd64 i386/i386 x86/include x86/x86

2016-04-12 Thread Andriy Gapon
Author: avg Date: Tue Apr 12 13:30:39 2016 New Revision: 297857 URL: https://svnweb.freebsd.org/changeset/base/297857 Log: re-enable AMD Topology extension on certain models if disabled by BIOS Some BIOSes disable AMD Topology extension on AMD Family 15h notebook processors. We

svn commit: r297856 - head/sys/dev/isp

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 12:31:41 2016 New Revision: 297856 URL: https://svnweb.freebsd.org/changeset/base/297856 Log: Reimplement ISP_TSK_MGMT IOCTL via asynchronous request. I am not sure this code is not completely dead, but it used DMA scratch are without good reason and asked to

svn commit: r297854 - head/sys/dev/isp

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 11:48:50 2016 New Revision: 297854 URL: https://svnweb.freebsd.org/changeset/base/297854 Log: Add couple missing memory barriers. Modified: head/sys/dev/isp/isp.c Modified: head/sys/dev/isp/isp.c

svn commit: r297855 - head/sys/netinet

2016-04-12 Thread Michael Tuexen
Author: tuexen Date: Tue Apr 12 11:48:54 2016 New Revision: 297855 URL: https://svnweb.freebsd.org/changeset/base/297855 Log: When processing an ICMP packet containing an SCTP packet, it is required to check the verification tag. However, this requires the verification tag to be not 0.

svn commit: r297853 - head/lib/libthr/thread

2016-04-12 Thread Konstantin Belousov
Author: kib Date: Tue Apr 12 10:25:44 2016 New Revision: 297853 URL: https://svnweb.freebsd.org/changeset/base/297853 Log: If off-page lookup failed, there is no memory to perform shared_mutex_init() upon. Sponsored by: The FreeBSD Foundation Modified:

Re: svn commit: r296548 - in head/sys: dev/agp dev/drm2 dev/drm2/i915 modules/drm2/i915kms

2016-04-12 Thread Edward Tomasz Napierała
I have the exact same problem on T420. Switching consoles back and forth works as a workaround. On 0411T1633, Adrian Chadd wrote: > hiya, > > My x230 backlight doesn't come back on after I suspend/resume :( Any > ideas? does it work fine for you? > > > > -adrian > > > On 9 March 2016 at

Re: svn commit: r296548 - in head/sys: dev/agp dev/drm2 dev/drm2/i915 modules/drm2/i915kms

2016-04-12 Thread Jean-Sébastien Pédron
On 12/04/2016 01:33, Adrian Chadd wrote: > hiya, Hi! > My x230 backlight doesn't come back on after I suspend/resume :( Any > ideas? does it work fine for you? I don't know, I never had a single laptop where suspend/resume worked :( -- Jean-Sébastien Pédron signature.asc Description:

svn commit: r297852 - in stable/10/sys/dev: sound/pci/hda usb/controller

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 07:54:55 2016 New Revision: 297852 URL: https://svnweb.freebsd.org/changeset/base/297852 Log: MFC r297387: Add some device IDs found on AMD FCH shipsets. Modified: stable/10/sys/dev/sound/pci/hda/hdac.c stable/10/sys/dev/sound/pci/hda/hdac.h

svn commit: r297851 - in stable/10: share/man/man4 sys/dev/amdsbwd

2016-04-12 Thread Alexander Motin
Author: mav Date: Tue Apr 12 07:54:03 2016 New Revision: 297851 URL: https://svnweb.freebsd.org/changeset/base/297851 Log: MFC r297386: Add support for AMD FCH watchdog timers. Modified: stable/10/share/man/man4/amdsbwd.4 stable/10/sys/dev/amdsbwd/amdsbwd.c Directory Properties:

svn commit: r297850 - head/sys/mips/mediatek

2016-04-12 Thread Stanislav Galabov
Author: sgalabov Date: Tue Apr 12 07:21:22 2016 New Revision: 297850 URL: https://svnweb.freebsd.org/changeset/base/297850 Log: Move Mediatek/Ralink PCIe to NEW_PCIB This revision fixes minor issues and moves the Mediatek/Ralink PCIe support to use NEW_PCIB.

svn commit: r297849 - head/sys/mips/include

2016-04-12 Thread Stanislav Galabov
Author: sgalabov Date: Tue Apr 12 07:18:48 2016 New Revision: 297849 URL: https://svnweb.freebsd.org/changeset/base/297849 Log: Define PCI_RES_BUS for MIPS. This is done as part of the work on D5908, but as a separate commit. Approved by: adrian (mentor) Sponsored by: Smartcom -

svn commit: r297848 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2016-04-12 Thread Andriy Gapon
Author: avg Date: Tue Apr 12 06:56:35 2016 New Revision: 297848 URL: https://svnweb.freebsd.org/changeset/base/297848 Log: l2arc: make sure that all writes honor ashift of a cache device Previously uncompressed buffers did not obey that rule. Type of b_asize is changed to uint64_t for

svn commit: r297847 - head/sys/cddl/contrib/opensolaris/uts/common/fs/zfs

2016-04-12 Thread Andriy Gapon
Author: avg Date: Tue Apr 12 06:54:18 2016 New Revision: 297847 URL: https://svnweb.freebsd.org/changeset/base/297847 Log: Revert r297396 Modify "4958 zdb trips assert on pools with ashift >= 0xe" A better fix is following. Modified:

svn commit: r297846 - head/sys/amd64/amd64

2016-04-12 Thread Andriy Gapon
Author: avg Date: Tue Apr 12 06:46:54 2016 New Revision: 297846 URL: https://svnweb.freebsd.org/changeset/base/297846 Log: [amd64] dtrace_invop handler is to be called only for kernel exceptions DTrace-related exceptions in userland code are handled elsewhere. One practical problem was a