Comment 7 for bug 1918855

Revision history for this message
You-Sheng Yang (vicamo) wrote : Re: Xorg xserver got signal 6 to abort

https://gitlab.freedesktop.org/mesa/mesa/-/issues/4275#note_796719:
```
   if (ret < 0) {
#ifdef DEBUG
      const bool color = INTEL_DEBUG & DEBUG_COLOR;
      fprintf(stderr, "%siris: Failed to submit batchbuffer: %-80s%s\n",
              color ? "\e[1;41m" : "", strerror(-ret), color ? "\e[0m" : "");
#endif
      abort();
   }
```
which means `submit_batch` failed, which means `DRM_IOCTL_I915_GEM_EXECBUFFER2` failed.

(keep a note here)