<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [BAT][BXT,BSW] Spurious SKIP in igt@gem_ringfill@basic-default(-forked)?"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=101915#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [BAT][BXT,BSW] Spurious SKIP in igt@gem_ringfill@basic-default(-forked)?"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=101915">bug 101915</a>
              from <span class="vcard"><a class="email" href="mailto:chris@chris-wilson.co.uk" title="Chris Wilson <chris@chris-wilson.co.uk>"> <span class="fn">Chris Wilson</span></a>
</span></b>
        <pre>diff --git a/tests/gem_ringfill.c b/tests/gem_ringfill.c
index b52996a4..01cbd0a9 100644
--- a/tests/gem_ringfill.c
+++ b/tests/gem_ringfill.c
@@ -288,10 +288,15 @@ static unsigned int measure_ring_size(int fd)
        obj[1].handle = gem_create(fd, 4096);
        gem_write(fd, obj[1].handle, 0, &bbe, sizeof(bbe));

+       memset(&execbuf, 0, sizeof(execbuf));
+       execbuf.buffers_ptr = to_user_pointer(obj + 1);
+       execbuf.buffer_count = 1;
+       gem_execbuf(fd, &execbuf);
+       gem_sync(fd, obj[1].handle);
+
        plug(fd, &c);
        obj[0].handle = c.handle;

-       memset(&execbuf, 0, sizeof(execbuf));
        execbuf.buffers_ptr = to_user_pointer(obj);
        execbuf.buffer_count = 2;

@@ -302,7 +307,8 @@ static unsigned int measure_ring_size(int fd)
        itv.it_value.tv_usec = 1000;
        setitimer(ITIMER_REAL, &itv, NULL);

-       last = count = 0;
+       last = -1;
+       count = 0;
        do {
                if (__execbuf(fd, &execbuf) == 0) {
                        count++;</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
          <li>You are the QA Contact for the bug.</li>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>