<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    <div class="moz-cite-prefix">Am 16.05.2013 00:05, schrieb Jamey
      Sharp:<br>
    </div>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">[SNIP]

</pre>
      <blockquote type="cite">
        <pre wrap="">Yeah but nobody prevents other XCB users (like the OpenGL and/or
VDPAU implementation in mesa) to be called with the display-lock
held.
</pre>
      </blockquote>
      <pre wrap="">
Nothing prevents it except the fact that the callers won't work if they
try it. If you want to call XCB-based API, make sure Xlib is not holding
the internal Display lock on the current thread.
</pre>
    </blockquote>
    <br>
    Well then please tell me how a library that links to XCB and NOT to
    libX11 should make sure of that?<br>
    <br>
    My problem is that VDPAU (or OpenGL) should be completely
    independent, so application developers using VDPAU don't see any
    reason why they should drop the display lock around VDPAU calls. So
    it is indeed possible and actually quite likely that xcb functions
    get called with the display lock held.<br>
    <br>
    So far I only see three possible solutions:<br>
    1. VDPAU uses libX11 instead of XCB (which kind of sucks badly).<br>
    2. We fix all applications all around the world to not call VDPAU
    with the X display lock held.<br>
    3. We fix XCB to allow calling XCB function with the displaylock
    held.<br>
    <br>
    While solution 1 and 2 are rather unlikely, solution 3 is actually
    pretty simple to implement.<br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">That's the rule for xcb_take_socket. If you want a different rule, we
should have a different discussion. :-)
</pre>
    </blockquote>
    <br>
    Well the problem is that we force any caller of any xcb function to
    make sure that the X display lock isn't held here, and so creating
    an dependency to libX11. If that's really true than we should indeed
    document that clearly, but I really think that this XCB behavior is
    not intentional.<br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">Note that although there are lots of mentions of GL and VDPAU in #20708,
none of the test programs call anything outside core libX11. I don't see
how #20708 is about whatever bug you're seeing.
</pre>
    </blockquote>
    <br>
    Because that's the original reason why Thomas created the bugreport.
    Please see the discussion on the mesa list here:
    <a class="moz-txt-link-freetext" href="http://old.nabble.com/forum/ViewPost.jtp?post=22548486&framed=y">http://old.nabble.com/forum/ViewPost.jtp?post=22548486&framed=y</a><br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite"><br>
      <pre wrap="">[SNIP]
</pre>
      <pre wrap="">
I've just re-read the comments and all three test programs in #20708,
and I don't see how any of them are locking-order deadlocks. You say
this is "clear"; could you demonstrate how, please?
</pre>
    </blockquote>
    <br>
    Ok, sorry maybe not so clear if you don't know the initial
    discussion on the mesa list.<br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">
The second test program demonstrated that we'd broken Xlib's crazy
nested-lock implementation. Uli and I both wrote equivalent patches to
fix that, and I closed the bug.

Reinhard re-opened with a different bug, which most likely was being
masked by the earlier bug. Although that bug's stack traces aren't
clearly a result of #30450, it still seems like the most plausible
candidate. Please help me understand why that's not true.
</pre>
    </blockquote>
    <br>
    That's the reason why I didn't reopened the bug report, cause I
    think that those bug reports have seen more than enough confusion
    for now.<br>
    <br>
    Anyway the current still open bug reports are definitely not about
    the problem I'm trying to fix with that patch, but I think from the
    mesa list discussion that this is the bug Thomas initially ran into.<br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">
</pre>
      <blockquote type="cite">
        <pre wrap="">Currently my testcase only triggers the deadlock fixed with this
patch (pretty complicated stuff involving XBMC, VDPAU and mesas
OpenGL implementation). But I'm pretty sure that once I get this one
upstream we are going to run into the other one also.
</pre>
      </blockquote>
      <pre wrap="">
Do you have a minimal test case you can share?</pre>
    </blockquote>
    <br>
    Uli come up with this example, and it indeed seems to describe the
    problem consistently:<br>
    <br>
        - X11 has taken the socket<br>
        - Thread A has locked the display.<br>
        - Thread B does xcb_no_operation() and thus ends up in libX11's
    return_socket(),<br>
          waiting for the display lock.<br>
        - Thread A calls e.g. xcb_no_operation(), too, ends up in
    return_socket() and<br>
          because socket_moving == 1, ends up waiting for thread B<br>
    <br>
        => Deadlock<br>
    <br>
    <br>
    <br>
    Christian.<br>
    <br>
    <blockquote cite="mid:20130515220520.GA5960@oh.minilop.net"
      type="cite">
      <pre wrap="">

Thanks for taking the time to investigate this,
Jamey
</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Xcb mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Xcb@lists.freedesktop.org">Xcb@lists.freedesktop.org</a>
<a class="moz-txt-link-freetext" href="http://lists.freedesktop.org/mailman/listinfo/xcb">http://lists.freedesktop.org/mailman/listinfo/xcb</a></pre>
    </blockquote>
    <br>
  </body>
</html>