Hello community, here is the log from the commit of package Mesa for openSUSE:Factory checked in at 2012-08-08 21:55:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Mesa (Old) and /work/SRC/openSUSE:Factory/.Mesa.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Mesa", Maintainer is "[email protected]" Changes: -------- --- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes 2012-07-14 11:50:54.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes 2012-08-08 21:55:55.000000000 +0200 @@ -1,0 +2,6 @@ +Wed Aug 8 15:43:20 CEST 2012 - [email protected] + +- U_i965-gen7-Reduce-GT1-WM-thread-count-according-to-up.patch + * Fix GPU hang with IVB GT1 desktop (bnc#775048) + +------------------------------------------------------------------- New: ---- U_i965-gen7-Reduce-GT1-WM-thread-count-according-to-up.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Mesa.spec ++++++ --- /var/tmp/diff_new_pack.fBn2mN/_old 2012-08-08 21:55:56.000000000 +0200 +++ /var/tmp/diff_new_pack.fBn2mN/_new 2012-08-08 21:55:56.000000000 +0200 @@ -95,6 +95,7 @@ Patch13: u_mesa-8.0.1-fix-16bpp.patch # Patch to remove OS ABI tag from libGL, so it is no longer preferred over libGLs without OS ABI tag Patch14: u_remove-os-abi-tag.patch +Patch15: U_i965-gen7-Reduce-GT1-WM-thread-count-according-to-up.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build %description @@ -477,6 +478,7 @@ %patch12 -p1 %patch13 -p1 %patch14 -p1 +%patch15 -p1 %build ++++++ U_i965-gen7-Reduce-GT1-WM-thread-count-according-to-up.patch ++++++ >From 539a02b9a73276a6d012436e296cfab55d5257a3 Mon Sep 17 00:00:00 2001 From: Eric Anholt <[email protected]> Date: Fri, 27 Jul 2012 11:34:07 -0700 Subject: [PATCH 03/11] i965/gen7: Reduce GT1 WM thread count according to updated BSpec. Acked-by: Kenneth Graunke <[email protected]> https://bugs.freedesktop.org/show_bug.cgi?id=52382 (cherry picked from commit fbf86c7f0f1f12e52b927e3870535073879d0a4d) --- src/mesa/drivers/dri/i965/brw_context.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/drivers/dri/i965/brw_context.c b/src/mesa/drivers/dri/i965/brw_context.c index a66ccc7..78bc6f9 100644 --- a/src/mesa/drivers/dri/i965/brw_context.c +++ b/src/mesa/drivers/dri/i965/brw_context.c @@ -240,7 +240,7 @@ brwCreateContext(int api, /* WM maximum threads is number of EUs times number of threads per EU. */ if (intel->gen >= 7) { if (intel->gt == 1) { - brw->max_wm_threads = 86; + brw->max_wm_threads = 48; brw->max_vs_threads = 36; brw->max_gs_threads = 36; brw->urb.size = 128; -- 1.7.11.4 -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
