<html>
    <head>
      <base href="https://bugs.freedesktop.org/">
    </head>
    <body>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [patch][crash] Xorg is crashing on startup in xinerama configuration"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=108495#c4">Comment # 4</a>
              on <a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [patch][crash] Xorg is crashing on startup in xinerama configuration"
   href="https://bugs.freedesktop.org/show_bug.cgi?id=108495">bug 108495</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>Try

diff --git a/src/sna/sna_display.c b/src/sna/sna_display.c
index 96e7b1bc..76e1e75b 100644
--- a/src/sna/sna_display.c
+++ b/src/sna/sna_display.c
@@ -7743,7 +7743,10 @@ bool sna_mode_pre_init(ScrnInfoPtr scrn, struct sna
*sna)
                }
        }
        sort_config_outputs(sna);
-       TimerSet(NULL, 0, COLDPLUG_DELAY_MS, sna_mode_coldplug, sna);
+
+       /* Simulate a hotplug event on wakeup to force a RR probe */
+       if (rrGetScrPriv(screen))
+               TimerSet(NULL, 0, COLDPLUG_DELAY_MS, sna_mode_coldplug, sna);

        sna_setup_provider(scrn);
        return scrn->modes != NULL;</pre>
        </div>
      </p>


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

      <ul>
          <li>You are the QA Contact for the bug.</li>
      </ul>
    </body>
</html>