svn commit: r328485 - stable/10/sys/dev/atkbdc

2018-01-27 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Sat Jan 27 17:24:59 2018 New Revision: 328485 URL: https://svnweb.freebsd.org/changeset/base/328485 Log: psm: Log syncmask[1], not syncmask[0] twice MFC of: r328208 Modified: stable/10/sys/dev/atkbdc/psm.c Directory Properties: stable/10/ (props c

svn commit: r297575 - in stable/10/sys/cam: ata scsi

2016-04-05 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Tue Apr 5 08:37:21 2016 New Revision: 297575 URL: https://svnweb.freebsd.org/changeset/base/297575 Log: CAM: Generalize 4k quirk to all Samsung MZ7* SSDs This adds Samsung PM851 to the list. It can be found in Lenovo Thinkpad T440 for instance. MFC of:

svn commit: r297046 - stable/10/sys/dev/drm2

2016-03-18 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Fri Mar 18 22:52:11 2016 New Revision: 297046 URL: https://svnweb.freebsd.org/changeset/base/297046 Log: drm: Fix dev->ioctl_count references leak This fixes the following error: kernel: error: [drm:pid1167:drm_release] *ERROR* Device busy: 2 Because of that, d

svn commit: r295623 - in stable/10/sys/dev/drm2: . i915

2016-02-14 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Mon Feb 15 07:35:40 2016 New Revision: 295623 URL: https://svnweb.freebsd.org/changeset/base/295623 Log: drm/i915: Restore pci_enable_busmaster() call in the init path This fixes a GPU hang on i945GM. While here, merge some minor fixes to DRM core and i915: *

Re: svn commit: r293857 - stable/10/sys/dev/drm2/i915

2016-02-12 Thread Jean-Sébastien Pédron
On 08/02/2016 13:29, Slawa Olhovchenkov wrote: > On Mon, Jan 25, 2016 at 01:49:09PM +0100, Jean-Sébastien Pédron wrote: > >> On 25/01/2016 11:50, Andriy Voskoboinyk wrote: >>> Try to apply https://svnweb.freebsd.org/base?view=revision&revision=288653 >>>

Re: svn commit: r293857 - stable/10/sys/dev/drm2/i915

2016-01-25 Thread Jean-Sébastien Pédron
On 25/01/2016 11:50, Andriy Voskoboinyk wrote: > Try to apply https://svnweb.freebsd.org/base?view=revision&revision=288653 > (as for me, head/sys/dev/drm2/i915/i915_dma.c change fixes this) If this fixes the problem, perfect, I will merge it. -- Jean-Sébastien Pédron sig

Re: svn commit: r293857 - stable/10/sys/dev/drm2/i915

2016-01-25 Thread Jean-Sébastien Pédron
Speaking of it, could you please test it? https://wiki.freebsd.org/Graphics/Update%20i915%20GPU%20driver%20to%20Linux%203.8 -- Jean-Sébastien Pédron signature.asc Description: OpenPGP digital signature

svn commit: r294490 - stable/10/sys/dev/iicbus

2016-01-21 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Thu Jan 21 08:32:11 2016 New Revision: 294490 URL: https://svnweb.freebsd.org/changeset/base/294490 Log: iicbus: Use device_delete_children() instead of explicit child removal If the bus is detached and deleted by a call to device_delete_child() or device_delete_chi

svn commit: r294489 - stable/10/sys/dev/iicbus

2016-01-21 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Thu Jan 21 08:24:54 2016 New Revision: 294489 URL: https://svnweb.freebsd.org/changeset/base/294489 Log: iicbus: Remove trailing whitespaces MFC of: r289656 Modified: stable/10/sys/dev/iicbus/iicbus.c Directory Properties: stable/10/ (props change

svn commit: r293857 - stable/10/sys/dev/drm2/i915

2016-01-13 Thread Jean-Sébastien Pédron
Author: dumbbell Date: Wed Jan 13 21:56:48 2016 New Revision: 293857 URL: https://svnweb.freebsd.org/changeset/base/293857 Log: drm/i915: Remove "Attempting to unbind pinned buffer" message This error message is removed in later versions of Linux and currently, it spams users. PR: