On Tue, Mar 27, 2012 at 12:47 AM, Yuanhan Liu <span dir="ltr">&lt;<a href="mailto:yuanhan.liu@linux.intel.com">yuanhan.liu@linux.intel.com</a>&gt;</span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

<div class="im">On Mon, Feb 27, 2012 at 11:45:46AM -0800, Anuj Phogat wrote:<br>
&gt; This patch handles a case when mapping a large texture fails<br>
&gt; in drm_intel_gem_bo_map_gtt(). These changes avoid assertion<br>
&gt; failure later in the driver as reported in following bugs:<br>
&gt;<br>
&gt; <a href="https://bugs.freedesktop.org/show_bug.cgi?id=44970" target="_blank">https://bugs.freedesktop.org/show_bug.cgi?id=44970</a><br>
&gt; <a href="https://bugs.freedesktop.org/show_bug.cgi?id=46303" target="_blank">https://bugs.freedesktop.org/show_bug.cgi?id=46303</a><br>
&gt;<br>
&gt; Signed-off-by: Anuj Phogat &lt;<a href="mailto:anuj.phogat@gmail.com">anuj.phogat@gmail.com</a>&gt;<br>
&gt; --<br>
</div>[..]<br>
<div class="im">&gt;  void<br>
&gt; diff --git a/src/mesa/drivers/dri/intel/intel_regions.c b/src/mesa/drivers/dri/intel/intel_regions.c<br>
&gt; index bc83649..982d6cb 100644<br>
&gt; --- a/src/mesa/drivers/dri/intel/intel_regions.c<br>
&gt; +++ b/src/mesa/drivers/dri/intel/intel_regions.c<br>
&gt; @@ -124,7 +124,7 @@ intel_region_map(struct intel_context *intel, struct intel_region *region,<br>
&gt;      */<br>
&gt;<br>
&gt;     _DBG(&quot;%s %p\n&quot;, __FUNCTION__, region);<br>
&gt; -   if (!region-&gt;map_refcount++) {<br>
&gt; +   if (!region-&gt;map_refcount) {<br>
&gt;        intel_flush(&amp;intel-&gt;ctx);<br>
&gt;<br>
&gt;        if (region-&gt;tiling != I915_TILING_NONE)<br>
&gt; @@ -133,7 +133,10 @@ intel_region_map(struct intel_context *intel, struct intel_region *region,<br>
&gt;        drm_intel_bo_map(region-&gt;bo, true);<br>
&gt;<br>
&gt;        region-&gt;map = region-&gt;bo-&gt;virtual;<br>
&gt; -      ++intel-&gt;num_mapped_regions;<br>
&gt; +      if (region-&gt;map) {<br>
&gt; +         ++intel-&gt;num_mapped_regions;<br>
&gt; +      region-&gt;map_refcount++;<br>
&gt; +      }<br>
&gt;     }<br>
</div>Hi Anuj,<br>
<br>
The above change will make the map_refcount un-blanced since you removed<br>
the increase to the successfully mapped region, here is a patch to fix<br>
this issue:<br>
<br>
----<br>