Hello community,

here is the log from the commit of package intel-gpu-tools for openSUSE:Factory 
checked in at 2015-03-19 20:45:25
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/intel-gpu-tools (Old)
 and      /work/SRC/openSUSE:Factory/.intel-gpu-tools.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "intel-gpu-tools"

Changes:
--------
--- /work/SRC/openSUSE:Factory/intel-gpu-tools/intel-gpu-tools.changes  
2015-01-22 21:48:50.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.intel-gpu-tools.new/intel-gpu-tools.changes     
2015-03-19 20:45:26.000000000 +0100
@@ -1,0 +2,25 @@
+Tue Mar 17 09:58:24 UTC 2015 - sndir...@suse.com
+
+- u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
+  * fixes build on 32bit 
+
+-------------------------------------------------------------------
+Mon Mar 16 11:53:56 UTC 2015 - sndir...@suse.com
+
+- Update to version 1.10
+  * New frequency manipulation tool (intel_gpu_frequency)
+  * Adjustments for the Solaris port (Alan Coopersmith).
+  * Remove tests/NAMING-CONVENTION since it's all in the docbook now,
+    to avoid divergent conventions.
+  * New CRITICAL log level for really serious stuff (Thomas Wood).
+  * Interactive test mode can now be enabled by the shared cmdline
+    option --interactive-debug=$var (Rodrigo Vivi).
+  * Improved logging to kmsg to better line up test runs with kernel
+    messages (Chris Wilson).
+  * Record all log levels (including disabled levels) in a ringbuffer
+    and dump that on test failures for quicker diagnostics of automated
+    test run results (Thomas Wood).
+  * A lot of small polish all over the test library.
+  * Piles of new testcases and improvements to existing ones as usual.
+
+-------------------------------------------------------------------

Old:
----
  intel-gpu-tools-1.9.tar.bz2

New:
----
  intel-gpu-tools-1.10.tar.bz2
  u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ intel-gpu-tools.spec ++++++
--- /var/tmp/diff_new_pack.QmIqxd/_old  2015-03-19 20:45:27.000000000 +0100
+++ /var/tmp/diff_new_pack.QmIqxd/_new  2015-03-19 20:45:27.000000000 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package intel-gpu-tools
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           intel-gpu-tools
-Version:        1.9
+Version:        1.10
 Release:        0
 Summary:        Collection of tools for development and testing of the Intel 
DRM driver
 License:        MIT
@@ -27,6 +27,7 @@
 Patch0:         n_disable-build-of-pm_rpm.patch
 Patch1:         u_build-fixes.patch
 Patch2:         u_%{name}-1.7-fix-bashisms.patch
+Patch3:         u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch
 BuildRequires:  i2c-tools
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -54,6 +55,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 autoreconf -fi

++++++ intel-gpu-tools-1.9.tar.bz2 -> intel-gpu-tools-1.10.tar.bz2 ++++++
++++ 26497 lines of diff (skipped)

++++++ u_Fix-pointer-cast-in-order-to-fix-build-on-32bit-arch.patch ++++++
>From 5daab5104f74493790ce0df62a104d480902b913 Mon Sep 17 00:00:00 2001
From: Stefan Dirsch <sndir...@suse.de>
Date: Tue, 17 Mar 2015 10:53:47 +0100
Subject: [PATCH] Fix pointer cast in order to fix build on 32bit arches.

Patch by Led <led...@gmail.com>
---
 lib/intel_batchbuffer.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index 666c323..c1c27a6 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -548,7 +548,7 @@ fill_object(struct drm_i915_gem_exec_object2 *obj, uint32_t 
gem_handle,
        memset(obj, 0, sizeof(*obj));
        obj->handle = gem_handle;
        obj->relocation_count = count;
-       obj->relocs_ptr = (uint64_t)relocs;
+       obj->relocs_ptr = (uintptr_t)relocs;
 }
 
 static void exec_blit(int fd,
@@ -557,7 +557,7 @@ static void exec_blit(int fd,
 {
        struct drm_i915_gem_execbuffer2 exec;
 
-       exec.buffers_ptr = (uint64_t)objs;
+       exec.buffers_ptr = (uintptr_t)objs;
        exec.buffer_count = count;
        exec.batch_start_offset = 0;
        exec.batch_len = batch_len * 4;
-- 
1.8.4.5

++++++ u_intel-gpu-tools-1.7-fix-bashisms.patch ++++++
--- /var/tmp/diff_new_pack.QmIqxd/_old  2015-03-19 20:45:28.000000000 +0100
+++ /var/tmp/diff_new_pack.QmIqxd/_new  2015-03-19 20:45:28.000000000 +0100
@@ -1,10 +1,9 @@
-Index: intel-gpu-tools-1.9/tools/intel_gpu_abrt
-===================================================================
---- intel-gpu-tools-1.9.orig/tools/intel_gpu_abrt
-+++ intel-gpu-tools-1.9/tools/intel_gpu_abrt
+diff -u -r intel-gpu-tools-1.10.orig/tools/intel_gpu_abrt 
intel-gpu-tools-1.10/tools/intel_gpu_abrt
+--- intel-gpu-tools-1.10.orig/tools/intel_gpu_abrt     2015-03-16 
12:59:27.206858000 +0100
++++ intel-gpu-tools-1.10/tools/intel_gpu_abrt  2015-03-16 12:59:54.602862000 
+0100
 @@ -1,4 +1,4 @@
 -#!/bin/sh
 +#!/bin/bash
  
- if [[ $UID -ne 0 ]]; then
+ if [ $(id -ru) -ne 0 ]; then
      echo "$0 must be run as root"

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org

Reply via email to