Processed: Move bug to proper package

2018-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 891674 libpciaccess 0.13.4-1+b2
Bug #891674 [xserver-xorg-core] xserver-xorg-core: crashes if started as root
Bug reassigned from package 'xserver-xorg-core' to 'libpciaccess'.
No longer marked as found in versions xorg-server/2:1.19.6-1.
Ignoring request to alter fixed versions of bug #891674 to the same values 
previously set
Bug #891674 [libpciaccess] xserver-xorg-core: crashes if started as root
There is no source info for the package 'libpciaccess' at version '0.13.4-1+b2' 
with architecture ''
Unable to make a source version for version '0.13.4-1+b2'
Marked as found in versions 0.13.4-1+b2.
> quit
Stopping processing here.

Please contact me if you need assistance.
-- 
891674: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891674
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#891674: Patch to fix the problem

2018-02-27 Thread Peter.Chubb
The linux kernel treats PCI domains as 32 bit ints.

diff -ru libpciaccess-0.13.4/include/pciaccess.h 
libpciaccess-0.13.4-fixed/include/pciaccess.h
--- libpciaccess-0.13.4/include/pciaccess.h 2015-05-01 14:44:47.0 
+1000
+++ libpciaccess-0.13.4-fixed/include/pciaccess.h   2018-02-28 
12:21:12.280963252 +1100
@@ -321,7 +321,7 @@
  * the domain will always be zero.
  */
 /*@{*/
-uint16_tdomain;
+uint32_tdomain;
 uint8_t bus;
 uint8_t dev;
 uint8_t func;
diff -ru libpciaccess-0.13.4/src/linux_sysfs.c 
libpciaccess-0.13.4-fixed/src/linux_sysfs.c
--- libpciaccess-0.13.4/src/linux_sysfs.c   2015-05-01 14:44:47.0 
+1000
+++ libpciaccess-0.13.4-fixed/src/linux_sysfs.c 2018-02-28 12:21:32.676941130 
+1100
@@ -157,7 +157,7 @@
(struct pci_device_private *) >devices[i];
 
 
-   sscanf(devices[i]->d_name, "%04x:%02x:%02x.%1u",
+   sscanf(devices[i]->d_name, "%x:%02x:%02x.%1u",
   & dom, & bus, & dev, & func);
 
device->base.domain = dom;

-- 
Dr Peter Chubb Tel: +61 2 9490 5852  http://ts.data61.csiro.au/
Trustworthy Systems Group   Data61 (formerly NICTA)


Bug#891674: More info

2018-02-27 Thread Peter.Chubb

I built Xorg from source so I could get debugging symbols.

The crash is in  xf86VGAarbiterInit(), when it calls
pci_device_vgaarb_init().  This function can read /dev/vga_arbiter
which ordinary users cannot.

# head -1 < /dev/vga_arbiter 
count:1,PCI::65:00.0,decodes=io+mem,owns=none,locks=none(0:0)

pci_sys->devices is null.

The problem appears to be a bad scan format in
line 160 of linux_sysfs.c
   sscanf(devices[i]->d_name, "%04x:%02x:%02x.%1u",

ls /sys/bus/pci/devices shows devices with a BUS > 0x taking 5
digits.


ls /sys/bus/pci/devices
:00:00.0  :00:1f.2  :16:0e.4  :64:09.0  :64:0d.1
:00:04.0  :00:1f.3  :16:0e.5  :64:0a.0  :64:0d.2
:00:04.1  :00:1f.4  :16:0e.6  :64:0a.1  :64:0d.3
:00:04.2  :00:1f.6  :16:0e.7  :64:0a.2  :65:00.0
:00:04.3  :02:00.0  :16:0f.0  :64:0a.3  :65:00.1
:00:04.4  :16:05.0  :16:0f.1  :64:0a.4  :b2:05.0
:00:04.5  :16:05.2  :16:1d.0  :64:0a.5  :b2:05.2
:00:04.6  :16:05.4  :16:1d.1  :64:0a.6  :b2:05.4
:00:04.7  :16:08.0  :16:1d.2  :64:0a.7  :b2:05.5
:00:05.0  :16:08.1  :16:1d.3  :64:0b.0  :b2:12.0
:00:05.2  :16:08.2  :16:1e.0  :64:0b.1  :b2:12.1
:00:05.4  :16:08.3  :16:1e.1  :64:0b.2  :b2:12.2
:00:08.0  :16:08.4  :16:1e.2  :64:0b.3  :b2:15.0
:00:08.1  :16:08.5  :16:1e.3  :64:0c.0  :b2:16.0
:00:08.2  :16:08.6  :16:1e.4  :64:0c.1  :b2:16.4
:00:14.0  :16:08.7  :16:1e.5  :64:0c.2  :b2:17.0
:00:14.2  :16:09.0  :16:1e.6  :64:0c.3  1:00:02.0
:00:16.0  :16:09.1  :64:00.0  :64:0c.4  1:00:03.0
:00:17.0  :16:0e.0  :64:05.0  :64:0c.5  1:01:00.0
:00:1c.0  :16:0e.1  :64:05.2  :64:0c.6
:00:1c.6  :16:0e.2  :64:05.4  :64:0c.7
:00:1f.0  :16:0e.3  :64:08.0  :64:0d.0



-- 
Dr Peter Chubb Tel: +61 2 9490 5852  http://ts.data61.csiro.au/
Trustworthy Systems Group   Data61 (formerly NICTA)


Processed: reassign 891056 to src:mesa, found 891056 in mesa/17.3.5-1, fixed 891056 in mesa/17.3.6-1

2018-02-27 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 891056 src:mesa
Bug #891056 [src:linux] Reproducible Intel GPU hang on rcs0 with ecode 
9:0:0x86dd
Bug reassigned from package 'src:linux' to 'src:mesa'.
No longer marked as found in versions linux/4.14.17-1, linux/4.14.13-1, 
linux/4.15.4-1, and linux/4.14.7-1.
Ignoring request to alter fixed versions of bug #891056 to the same values 
previously set
> found 891056 mesa/17.3.5-1
Bug #891056 [src:mesa] Reproducible Intel GPU hang on rcs0 with ecode 
9:0:0x86dd
Marked as found in versions mesa/17.3.5-1.
> fixed 891056 mesa/17.3.6-1
Bug #891056 [src:mesa] Reproducible Intel GPU hang on rcs0 with ecode 
9:0:0x86dd
Marked as fixed in versions mesa/17.3.6-1.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
891056: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=891056
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#891674: xserver-xorg-core: crashes if started as root

2018-02-27 Thread Peter.Chubb
Package: xserver-xorg-core
Version: 2:1.19.6-1
Severity: important

Dear Maintainer,

I can start Xorg using startx as an ordinary user (it uses 
the modesetting driver).
But when the display manager starts it (as root) it crashes.

The only `interesting' thing about this machine I'm aware of (apart
from it being a very recent Skylake architecture machine) is that all
the storage is under a VMD domain.  I've appended the output of lspci,
as the crash occurs when scanning the PCI bus as root.

GDB shows
(gdb) bt
#0  0x77019cc8 in pci_device_next ()
   from /usr/lib/x86_64-linux-gnu/libpciaccess.so.0
#1  0x77019d4b in pci_device_find_by_slot ()
   from /usr/lib/x86_64-linux-gnu/libpciaccess.so.0
#2  0x7701b9ca in pci_device_vgaarb_init ()
   from /usr/lib/x86_64-linux-gnu/libpciaccess.so.0
#3  0x55604d99 in ?? ()
#4  0x555de8e2 in xf86BusConfig ()
#5  0x555ecb68 in InitOutput ()
#6  0x555aab83 in ?? ()
#7  0x75362f2a in __libc_start_main (main=0x55594a00, argc=2, 
argv=0x7fffec38, init=, fini=, 
rtld_fini=, stack_end=0x7fffec28)
at ../csu/libc-start.c:310
#8  0x55594a3a in _start ()




-- Package-specific info:
/etc/X11/X does not exist.
/etc/X11/X is not a symlink.
/etc/X11/X is not executable.

VGA-compatible devices on PCI bus:
--
:65:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF119 [NVS 
315] [10de:107c] (rev a1)

/etc/X11/xorg.conf does not exist.

Contents of /etc/X11/xorg.conf.d:
-
total 0

/etc/modprobe.d contains no KMS configuration files.

Kernel version (/proc/version):
---
Linux version 4.15.0-1-amd64 (debian-ker...@lists.debian.org) (gcc version 
7.3.0 (Debian 7.3.0-3)) #1 SMP Debian 4.15.4-1 (2018-02-18)

Xorg X server log files on system:
--
-rw-r--r-- 1 peterc peterc 56283 Feb 28 07:58 
/home/peterc/.local/share/xorg/Xorg.0.log
-rw-r--r-- 1 root   root5054 Feb 28 08:05 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file (/var/log/Xorg.0.log):
-
[ 60011.801] 
X.Org X Server 1.19.6
Release Date: 2017-12-20
[ 60011.801] X Protocol Version 11, Revision 0
[ 60011.801] Build Operating System: Linux 4.9.0-5-amd64 x86_64 Debian
[ 60011.801] Current Operating System: Linux wolf-un 4.15.0-1-amd64 #1 SMP 
Debian 4.15.4-1 (2018-02-18) x86_64
[ 60011.801] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-1-amd64 
root=UUID=2cc1510e-8bb0-4e82-b22b-6bb508493d1f ro quiet
[ 60011.801] Build Date: 26 January 2018  04:30:21PM
[ 60011.801] xorg-server 2:1.19.6-1 (https://www.debian.org/support) 
[ 60011.801] Current version of pixman: 0.34.0
[ 60011.801]Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 60011.801] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 60011.801] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Feb 28 08:05:36 
2018
[ 60011.801] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 60011.801] (==) No Layout section.  Using the first Screen section.
[ 60011.801] (==) No screen section available. Using defaults.
[ 60011.801] (**) |-->Screen "Default Screen Section" (0)
[ 60011.801] (**) |   |-->Monitor ""
[ 60011.802] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 60011.802] (==) Automatically adding devices
[ 60011.802] (==) Automatically enabling devices
[ 60011.802] (==) Automatically adding GPU devices
[ 60011.802] (==) Max clients allowed: 256, resource mask: 0x1f
[ 60011.802] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 60011.802]Entry deleted from font path.
[ 60011.802] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 60011.802] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 60011.802] (II) The server relies on udev to provide the list of input 
devices.
If no devices become available, reconfigure udev or disable 
AutoAddDevices.
[ 60011.802] (II) Loader magic: 0x55996de0
[ 60011.802] (II) Module ABI versions:
[ 60011.802]X.Org ANSI C Emulation: 0.4
[ 60011.802]X.Org Video Driver: 23.0
[ 60011.802]X.Org XInput driver : 24.1
[ 60011.802]X.Org Server Extension : 10.0
[ 60011.802] (--) using VT number 2

[ 60011.802] (II) systemd-logind: logind integration requires -keeptty and 
-keeptty was not provided, disabling logind integration
[ 60011.803] (II) xfree86: Adding drm device 

mesa_17.3.6-1_source.changes ACCEPTED into unstable

2018-02-27 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 27 Feb 2018 09:41:37 +0100
Source: mesa
Binary: libxatracker2 libxatracker-dev libgbm1 libgbm-dev libegl-mesa0 
libegl1-mesa libegl1-mesa-dev libwayland-egl1-mesa libgles2-mesa 
libgles2-mesa-dev libglapi-mesa libglx-mesa0 libgl1-mesa-glx libgl1-mesa-dri 
libgl1-mesa-dev mesa-common-dev libosmesa6 libosmesa6-dev mesa-va-drivers 
mesa-vdpau-drivers mesa-vulkan-drivers mesa-opencl-icd
Architecture: source
Version: 17.3.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Andreas Boll 
Description:
 libegl-mesa0 - free implementation of the EGL API -- Mesa vendor library
 libegl1-mesa - transitional dummy package
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-glx - transitional dummy package
 libglapi-mesa - free implementation of the GL API -- shared library
 libgles2-mesa - transitional dummy package
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- 
development files
 libglx-mesa0 - free implementation of the OpenGL API -- GLX vendor library
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libwayland-egl1-mesa - implementation of the Wayland EGL platform -- runtime
 libxatracker-dev - X acceleration library -- development files
 libxatracker2 - X acceleration library -- runtime
 mesa-common-dev - Developer documentation for Mesa
 mesa-opencl-icd - free implementation of the OpenCL API -- ICD runtime
 mesa-va-drivers - Mesa VA-API video acceleration drivers
 mesa-vdpau-drivers - Mesa VDPAU video acceleration drivers
 mesa-vulkan-drivers - Mesa Vulkan graphics drivers
Closes: 890866
Changes:
 mesa (17.3.6-1) unstable; urgency=medium
 .
   * New upstream release.
 - Fixes GPU hangs in the i965 driver (Closes: #890866).
Checksums-Sha1:
 1596719e965c21942ddffe9efcfa3fa8b04e2800 4920 mesa_17.3.6-1.dsc
 2f79319c3d865196632a5b9cda8964754891e879 18321140 mesa_17.3.6.orig.tar.gz
 f05fd275953075366edcf80e6767483cbdabb0a3 116347 mesa_17.3.6-1.diff.gz
Checksums-Sha256:
 b5b7ef26da73297b075400b5a3c307303c4c0d3b07a8e528b02b5d4fe030afad 4920 
mesa_17.3.6-1.dsc
 d5e10ea3f0d11b06d2b0b235bba372a04278c39bc0e712090bda1f61842db188 18321140 
mesa_17.3.6.orig.tar.gz
 6f5de9cbc9b441d5c1e812f086033d2f88a9035a56064676267b69a4eb1f54d6 116347 
mesa_17.3.6-1.diff.gz
Files:
 905dcc1c107f3c6e4d47796434baa56e 4920 graphics optional mesa_17.3.6-1.dsc
 c82d3db4d29b33d50ff6f25247f3da91 18321140 graphics optional 
mesa_17.3.6.orig.tar.gz
 1fde665f92aca7254cc5232baceee5b1 116347 graphics optional mesa_17.3.6-1.diff.gz

-BEGIN PGP SIGNATURE-

iQJPBAEBCgA5FiEE45C5cAWC+uqVmsrUHu9T04o6nGcFAlqVGhgbHGFuZHJlYXMu
Ym9sbC5kZXZAZ21haWwuY29tAAoJEB7vU9OKOpxn5GoP/05FW2E/gIFIno0K5BmH
9tgY4SMqhgg6nCp4s42EI7PDB06BOcseeTUGFrc0vrpz3DPQMY3tIP07uRW3oqGm
ORD8kixzngEEMdi7hL0fMjLcgdpQNViMr8lGxero17bibma8fBC4E6sNt+/Yxrb9
0fdnpZvS+9W74akAi7osURoi6L+sgAcbz+e1Q5EJSq30EyhWCBREbjjYRhvOoxoZ
bxBySmRhapYPaS5hPPCDBZOG1N0UvL4K2SeATTlZe4r3slXUtkng+5Lb98BwLX67
xQr/ez1SwJHg0M6KAboRu+97CzFqpKw75/M+Qd+0gb9en+9KmlgQ/Q/9ioU9L2cZ
N5PfAiaJq55dYPmPiBaQWj5D1kKUkoCyGqrndZxxeZy8WdvOziGPobzcJKBfZOth
rzisntV4I777Vt2o/MwMk/HPLoGREqV2edMosklcOKleOt62uWTjYM5aXzfK+ZG6
elaRHaVB/3gw7qfZgOFHJ6v1/F8F9CbilDKN4SjUbuEJigT2SzBh5NAf4f82r1xk
tTHyD5sbQK1KLfvgLyHXehwfcKW5TtsA1K1ZKtoZs7VfoVii3L+YJ8DWua2oGsHA
OEYHqw4o4+LKiCqkfEmFP4QuZ0R7qES0xIMYXyCJkQMNh1ZyAzRFvFya0deT8TB6
MfnKLfkf8PTGfqOljTcEWH8r
=OlhJ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#890866: marked as done (mesa: regression vs mesa 17.3.3-1: crash on i915 triggered by running emacs)

2018-02-27 Thread Debian Bug Tracking System
Your message dated Tue, 27 Feb 2018 09:20:07 +
with message-id 
and subject line Bug#890866: fixed in mesa 17.3.6-1
has caused the Debian Bug report #890866,
regarding mesa: regression vs mesa 17.3.3-1: crash on i915 triggered by running 
emacs
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
890866: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=890866
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Source: mesa
Version: 17.3.4-1
Severity: important

Dear Maintainer,

After upgrading to Mesa 17.3.4-1, starting emacs (in X11) would reliably
cause the X server to crash.   Reverting to mesa 17.3.3-1 with the
following packages:

libegl1-mesa_17.3.3-1_amd64.deb
libegl-mesa0_17.3.3-1_amd64.deb
libgbm1_17.3.3-1_amd64.deb
libgl1-mesa-dri_17.3.3-1_amd64.deb
libgl1-mesa-glx_17.3.3-1_amd64.deb
libglapi-mesa_17.3.3-1_amd64.deb
libglx-mesa0_17.3.3-1_amd64.deb
libwayland-egl1-mesa_17.3.3-1_amd64.deb
mesa-va-drivers_17.3.3-1_amd64.deb
mesa-vdpau-drivers_17.3.3-1_amd64.deb

Causes the problem to go away.  This was running on a 2018 Dell XPS 13
(model number 9370) with a 4k display.  Found in dmesg was the
following:

Feb 19 14:07:00 cwcc kernel: [ 1740.829003] [drm] GPU HANG: ecode 
9:0:0x85df3cff, in Xorg [1098], reason: Hang on rcs0, action: reset
Feb 19 14:07:00 cwcc kernel: [ 1740.829111] [drm] GPU hangs can indicate a bug 
anywhere in the entire gfx stack, including userspace.
Feb 19 14:07:00 cwcc kernel: [ 1740.829112] [drm] Please file a _new_ bug 
report on bugs.freedesktop.org against DRI -> DRM/Intel
Feb 19 14:07:00 cwcc kernel: [ 1740.829113] [drm] drm/i915 developers can then 
reassign to the right component if it's not a kernel issue.
Feb 19 14:07:00 cwcc kernel: [ 1740.829114] [drm] The gpu crash dump is 
required to analyze gpu hangs, so please always attach it.
Feb 19 14:07:00 cwcc kernel: [ 1740.829115] [drm] GPU crash dump saved to 
/sys/class/drm/card0/error
Feb 19 14:07:00 cwcc kernel: [ 1740.829123] i915 :00:02.0: Resetting rcs0 
after gpu hang
Feb 19 14:07:08 cwcc kernel: [ 1748.819899] i915 :00:02.0: Resetting rcs0 
after gpu hang

And attached please find the contents of /sys/class/drm/card0/error

-- System Information:
Debian Release: buster/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'testing-debug'), (500, 
'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 4.14.0-3-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8), 
LANGUAGE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
GPU HANG: ecode 9:0:0x85df, in Xorg [1555], reason: Hang on rcs0, action: 
reset
Kernel: 4.14.0-3-amd64
Time: 1519086048 s 628402 us
Boottime: 128 s 796155 us
Uptime: 119 s 301934 us
Active process (on ring render): Xorg [1555], score 0
Reset count: 0
Suspend count: 0
Platform: KABYLAKE
PCI ID: 0x5917
PCI Revision: 0x07
PCI Subsystem: 1028:07e6
IOMMU enabled?: 0
DMC loaded: yes
DMC fw version: 1.1
GT awake: yes
RPM wakelock: yes
PM suspended: no
EIR: 0x
IER: 0x0800
GTIER[0]: 0x01010101
GTIER[1]: 0x01010101
GTIER[2]: 0x0070
GTIER[3]: 0x0101
PGTBL_ER: 0x
FORCEWAKE: 0x00010001
DERRMR: 0x2077efef
CCID: 0x
Missed interrupts: 0x
  fence[0] = 300030003
  fence[1] = 300403b0261
  fence[2] = 
  fence[3] = 
  fence[4] = 
  fence[5] = 20b900402088003
  fence[6] = 
  fence[7] = 
  fence[8] = 330032003
  fence[9] = 318a00903005003
  fence[10] = 1e001e003
  fence[11] = 
  fence[12] = 20872060003
  fence[13] = 
  fence[14] = 
  fence[15] = 340034003
  fence[16] = 360035003
  fence[17] = 
  fence[18] = 
  fence[19] = 202100202010003
  fence[20] = 
  fence[21] = 370037003
  fence[22] = 2d002d003
  fence[23] = 
  fence[24] = 1f001f003
  fence[25] = 
  fence[26] = 222b004021fa003
  fence[27] = 25dc00802499003
  fence[28] = 200e200e003
  fence[29] = 200f200f003
  fence[30] = 21f9004021f5003
  fence[31] = 
ERROR: 0x
FAULT_TLB_DATA: 0x0011 0xe4bf2b9a
DONE_REG: 0x
render command stream:
  START: 0x00011000
  HEAD:  0x02a03100 [0x30a8]
  TAIL:  0x3420 [0x3100, 0x3128]
  CTL:   0x3001
  MODE:  0x
  HWS:   0xfffe8000
  ACTHD: 0x 02a03100
  IPEIR: 0x
  IPEHR: 0x7a04
  INSTDONE: 0xffdb
  SC_INSTDONE: 0xd790
  

Accepted mesa 17.3.6-1 (source) into unstable

2018-02-27 Thread Andreas Boll
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 27 Feb 2018 09:41:37 +0100
Source: mesa
Binary: libxatracker2 libxatracker-dev libgbm1 libgbm-dev libegl-mesa0 
libegl1-mesa libegl1-mesa-dev libwayland-egl1-mesa libgles2-mesa 
libgles2-mesa-dev libglapi-mesa libglx-mesa0 libgl1-mesa-glx libgl1-mesa-dri 
libgl1-mesa-dev mesa-common-dev libosmesa6 libosmesa6-dev mesa-va-drivers 
mesa-vdpau-drivers mesa-vulkan-drivers mesa-opencl-icd
Architecture: source
Version: 17.3.6-1
Distribution: unstable
Urgency: medium
Maintainer: Debian X Strike Force 
Changed-By: Andreas Boll 
Description:
 libegl-mesa0 - free implementation of the EGL API -- Mesa vendor library
 libegl1-mesa - transitional dummy package
 libegl1-mesa-dev - free implementation of the EGL API -- development files
 libgbm-dev - generic buffer management API -- development files
 libgbm1- generic buffer management API -- runtime
 libgl1-mesa-dev - free implementation of the OpenGL API -- GLX development 
files
 libgl1-mesa-dri - free implementation of the OpenGL API -- DRI modules
 libgl1-mesa-glx - transitional dummy package
 libglapi-mesa - free implementation of the GL API -- shared library
 libgles2-mesa - transitional dummy package
 libgles2-mesa-dev - free implementation of the OpenGL|ES 2.x API -- 
development files
 libglx-mesa0 - free implementation of the OpenGL API -- GLX vendor library
 libosmesa6 - Mesa Off-screen rendering extension
 libosmesa6-dev - Mesa Off-screen rendering extension -- development files
 libwayland-egl1-mesa - implementation of the Wayland EGL platform -- runtime
 libxatracker-dev - X acceleration library -- development files
 libxatracker2 - X acceleration library -- runtime
 mesa-common-dev - Developer documentation for Mesa
 mesa-opencl-icd - free implementation of the OpenCL API -- ICD runtime
 mesa-va-drivers - Mesa VA-API video acceleration drivers
 mesa-vdpau-drivers - Mesa VDPAU video acceleration drivers
 mesa-vulkan-drivers - Mesa Vulkan graphics drivers
Closes: 890866
Changes:
 mesa (17.3.6-1) unstable; urgency=medium
 .
   * New upstream release.
 - Fixes GPU hangs in the i965 driver (Closes: #890866).
Checksums-Sha1:
 1596719e965c21942ddffe9efcfa3fa8b04e2800 4920 mesa_17.3.6-1.dsc
 2f79319c3d865196632a5b9cda8964754891e879 18321140 mesa_17.3.6.orig.tar.gz
 f05fd275953075366edcf80e6767483cbdabb0a3 116347 mesa_17.3.6-1.diff.gz
Checksums-Sha256:
 b5b7ef26da73297b075400b5a3c307303c4c0d3b07a8e528b02b5d4fe030afad 4920 
mesa_17.3.6-1.dsc
 d5e10ea3f0d11b06d2b0b235bba372a04278c39bc0e712090bda1f61842db188 18321140 
mesa_17.3.6.orig.tar.gz
 6f5de9cbc9b441d5c1e812f086033d2f88a9035a56064676267b69a4eb1f54d6 116347 
mesa_17.3.6-1.diff.gz
Files:
 905dcc1c107f3c6e4d47796434baa56e 4920 graphics optional mesa_17.3.6-1.dsc
 c82d3db4d29b33d50ff6f25247f3da91 18321140 graphics optional 
mesa_17.3.6.orig.tar.gz
 1fde665f92aca7254cc5232baceee5b1 116347 graphics optional mesa_17.3.6-1.diff.gz

-BEGIN PGP SIGNATURE-

iQJPBAEBCgA5FiEE45C5cAWC+uqVmsrUHu9T04o6nGcFAlqVGhgbHGFuZHJlYXMu
Ym9sbC5kZXZAZ21haWwuY29tAAoJEB7vU9OKOpxn5GoP/05FW2E/gIFIno0K5BmH
9tgY4SMqhgg6nCp4s42EI7PDB06BOcseeTUGFrc0vrpz3DPQMY3tIP07uRW3oqGm
ORD8kixzngEEMdi7hL0fMjLcgdpQNViMr8lGxero17bibma8fBC4E6sNt+/Yxrb9
0fdnpZvS+9W74akAi7osURoi6L+sgAcbz+e1Q5EJSq30EyhWCBREbjjYRhvOoxoZ
bxBySmRhapYPaS5hPPCDBZOG1N0UvL4K2SeATTlZe4r3slXUtkng+5Lb98BwLX67
xQr/ez1SwJHg0M6KAboRu+97CzFqpKw75/M+Qd+0gb9en+9KmlgQ/Q/9ioU9L2cZ
N5PfAiaJq55dYPmPiBaQWj5D1kKUkoCyGqrndZxxeZy8WdvOziGPobzcJKBfZOth
rzisntV4I777Vt2o/MwMk/HPLoGREqV2edMosklcOKleOt62uWTjYM5aXzfK+ZG6
elaRHaVB/3gw7qfZgOFHJ6v1/F8F9CbilDKN4SjUbuEJigT2SzBh5NAf4f82r1xk
tTHyD5sbQK1KLfvgLyHXehwfcKW5TtsA1K1ZKtoZs7VfoVii3L+YJ8DWua2oGsHA
OEYHqw4o4+LKiCqkfEmFP4QuZ0R7qES0xIMYXyCJkQMNh1ZyAzRFvFya0deT8TB6
MfnKLfkf8PTGfqOljTcEWH8r
=OlhJ
-END PGP SIGNATURE-



Processing of mesa_17.3.6-1_source.changes

2018-02-27 Thread Debian FTP Masters
mesa_17.3.6-1_source.changes uploaded successfully to localhost
along with the files:
  mesa_17.3.6-1.dsc
  mesa_17.3.6.orig.tar.gz
  mesa_17.3.6-1.diff.gz

Greetings,

Your Debian queue daemon (running on host usper.debian.org)



[Git][xorg-team/lib/mesa] Pushed new tag mesa-17.3.6-1

2018-02-27 Thread Andreas Boll
Andreas Boll pushed new tag mesa-17.3.6-1 at X Strike Force / lib / mesa

---
View it on GitLab: 
https://salsa.debian.org/xorg-team/lib/mesa/tree/mesa-17.3.6-1
You're receiving this email because of your account on salsa.debian.org.