i965: Make the driver compile until a proper libdrm can be released.
authorEric Anholt <eric@anholt.net>
Fri, 8 Nov 2013 18:49:47 +0000 (10:49 -0800)
committerKristian Høgsberg <krh@bitplanet.net>
Sat, 9 Nov 2013 21:00:53 +0000 (13:00 -0800)
No depending on unreleased code.

src/mesa/drivers/dri/i965/brw_context.c
src/mesa/drivers/dri/i965/brw_reset.c

index a33e993f2819b1b1ebbc2d36de4064a0ce62b888..bee98e38996a5e6e7e945ee73e75fe06d2e95ac1 100644 (file)
@@ -714,12 +714,10 @@ brwCreateContext(gl_api api,
    }
 
    /* Notification of GPU resets requires hardware contexts and a kernel new
-    * enough to support DRM_IOCTL_I915_GET_RESET_STATS.
+    * enough to support DRM_IOCTL_I915_GET_RESET_STATS, which isn't upstream
+    * yet.
     */
-   if (notify_reset &&
-       (brw->hw_ctx == NULL
-        || drm_intel_get_reset_stats(brw->hw_ctx, &brw->reset_count, NULL,
-                                     NULL))) {
+   if (notify_reset) {
       /* This is the wrong error code, but the correct error code (one that
        * will cause EGL to generate EGL_BAD_MATCH) doesn't seem to exist.
        */
index 7eca1bca0b2f205effb6d9f067e16087fef1daa6..e93b2e253ad543510a567a294dc0078d7c49f3b3 100644 (file)
@@ -42,10 +42,17 @@ brw_get_graphics_reset_status(struct gl_context *ctx)
     */
    assert(brw->hw_ctx != NULL);
 
+#if 0
+   /* This is waiting until the kernel code can be merged and a new libdrm
+    * actually released.
+    */
    err = drm_intel_get_reset_stats(brw->hw_ctx, &reset_count, &active,
                                    &pending);
    if (err)
       return GL_NO_ERROR;
+#else
+   return GL_NO_ERROR;
+#endif
 
    /* A reset was observed while a batch from this context was executing.
     * Assume that this context was at fault.