[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

intel-gpu-tools: Changes to 'debian-unstable'



 debian/changelog                                                              |    6 +
 debian/patches/0001-tests-pm_pc8-Fix-invalid-pointer-to-integer-casting.patch |   39 ++++++++++
 debian/patches/series                                                         |    2 
 3 files changed, 46 insertions(+), 1 deletion(-)

New commits:
commit 10b0f6b73402abf0a4d1b63d059cf7a3eca47dc2
Author: Vincent Cheng <vcheng@debian.org>
Date:   Wed Apr 29 18:06:10 2015 -0700

    add patch to fix FTBFS on i386

diff --git a/debian/changelog b/debian/changelog
index cbcfd2b..f31172c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+intel-gpu-tools (1.10-2) unstable; urgency=medium
+
+  * Backport upstream commit 217bd8d to fix FTBFS on i386.
+
+ -- Vincent Cheng <vcheng@debian.org>  Wed, 29 Apr 2015 18:05:35 -0700
+
 intel-gpu-tools (1.10-1) unstable; urgency=medium
 
   * New upstream release.
diff --git a/debian/patches/0001-tests-pm_pc8-Fix-invalid-pointer-to-integer-casting.patch b/debian/patches/0001-tests-pm_pc8-Fix-invalid-pointer-to-integer-casting.patch
new file mode 100644
index 0000000..7b47ee6
--- /dev/null
+++ b/debian/patches/0001-tests-pm_pc8-Fix-invalid-pointer-to-integer-casting.patch
@@ -0,0 +1,39 @@
+From 217bd8d55e723d8bd6911d6c2ec8a9c42bdc8272 Mon Sep 17 00:00:00 2001
+From: Chris Wilson <chris@chris-wilson.co.uk>
+Date: Thu, 14 Nov 2013 09:47:47 +0000
+Subject: [PATCH] tests/pm_pc8: Fix invalid pointer-to-integer casting
+
+Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=71592
+Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
+---
+ tests/pm_pc8.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/tests/pm_pc8.c b/tests/pm_pc8.c
+index e17be1b..bf4f19f 100644
+--- a/tests/pm_pc8.c
++++ b/tests/pm_pc8.c
+@@ -1015,9 +1015,9 @@ static void submit_blt_cmd(uint32_t dst_handle, uint32_t x, uint32_t y,
+ 
+ 	objs[1].handle = batch_handle;
+ 	objs[1].relocation_count = 1;
+-	objs[1].relocs_ptr = (uint64_t) relocs;
++	objs[1].relocs_ptr = (uintptr_t)relocs;
+ 
+-	execbuf.buffers_ptr = (uint64_t) objs;
++	execbuf.buffers_ptr = (uintptr_t)objs;
+ 	execbuf.buffer_count = 2;
+ 	execbuf.batch_len = batch_size;
+ 	execbuf.flags = I915_EXEC_BLT;
+@@ -1160,7 +1160,7 @@ static void gem_execbuf_stress_subtest(void)
+ 
+ 	objs[0].handle = handle;
+ 
+-	execbuf.buffers_ptr = (uint64_t) objs;
++	execbuf.buffers_ptr = (uintptr_t)objs;
+ 	execbuf.buffer_count = 1;
+ 	execbuf.batch_len = batch_size;
+ 	execbuf.flags = I915_EXEC_RENDER;
+-- 
+2.1.4
+
diff --git a/debian/patches/series b/debian/patches/series
index a82d1b4..1f7693d 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1 +1 @@
-#placeholder
+0001-tests-pm_pc8-Fix-invalid-pointer-to-integer-casting.patch


Reply to: