[prev in list] [next in list] [prev in thread] [next in thread] 

List:       freedesktop-xorg
Subject:    Re: RADEON(0): [drm] Failed to open DRM device: No such file	or	directory error
From:       "StompDagger1 () yahoo ! com" <stompdagger1 () yahoo ! com>
Date:       2014-03-25 6:37:49
Message-ID: 1395729469.73920.YahooMailNeo () web125504 ! mail ! ne1 ! yahoo ! com
[Download RAW message or body]

[Attachment #2 (multipart/alternative)]


On Monday, March 24, 2014 2:23 PM, Fred <heitkamp@ameritech.net> wrote:
 
On 03/15/14 04:34, StompDagger1@yahoo.com wrote:

here is a simple test case that reproduces the issue on my machine:
> dagg@NCC-5001-D ~/workspace $ cat open_example.c
> #include <unistd.h>
> #include <fcntl.h>
> #include <stdio.h>
> #include <errno.h>
> #include <string.h>
> 
> int main()
> {
> char *param1 = "ok";
> char *param2 = ".";
> int filedesc = open("/dev/dri/card1", O_RDWR, 0);
> if (filedesc) {
> param1 = "ERROR: ";
> param2 = strerror(errno);
> }
> printf("fd = %d, status = %s%s\n", filedesc, param1,
        param2);
> close(filedesc);
> 
> return 0;
> }dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o
        open_example && ./open_example 
> fd = -1, status = ERROR: Invalid argument
> 
> 
> 
> 
> On Friday, March 14, 2014 4:22 PM, "StompDagger1@yahoo.com" \
> <stompdagger1@yahoo.com> wrote: 
> On Tuesday, March 11, 2014 8:45 AM, "StompDagger1@yahoo.com" \
> <stompdagger1@yahoo.com> wrote: 
> > On Tuesday, March 11, 2014 5:16 AM, Michel Dänzer <michel@daenzer.net> wrote:
> 
> > On Mon, 2014-03-10 at 08:23 -0700, StompDagger1@yahoo.com wrote: 
> > 
> > > 
> > > 
> > > > On
                                                  Monday, March 10, 2014
                                                  5:58 AM, Michel Dänzer
                                                  <michel@daenzer.net>
> > > wrote:
> > > 
> > > > On Sam,
                                                  2014-03-08 at 11:41
                                                  -0800, StompDagger1@yahoo.com \
wrote:
> > > > 
> > > > > 
                                                  >On Sat, Mar 8,
                                                  2014 at 2:56 AM, \
StompDagger1@yahoo.com
> > > > > > 
> > > > > 
                                                  >> [    51.829]
                                                  (EE) RADEON(0): [drm]
                                                  Failed to open DRM
                                                  device for
> > > > > 
                                                  >>
                                                  pci:0000:06:00.0: No
                                                  such file or directory
> > > > 
> > > > 'No such
                                                  file or directory'
                                                  sounds like something
                                                  is deleting
> > > > your
                                                  /dev/dri/card* files,
                                                  or not creating them
                                                  in the first place.
> > > > Maybe
                                                  check your udev setup.
> > > > 
> > > > If it
                                                  only happens with a
                                                  3.13 kernel but not
                                                  with a 3.12 one,
> > > another
> > > > option is
                                                  to bisect the kernel.
> .> 
> .> Greetings
                                                  Michel,
> .> 
> .> dri node do
                                                  exists, see:
> > > dagg@NCC-5001-D ~ $ ll /dev/dri
> > > total 0
> > > crw-rw----+ 1
                                                  root video 226,  0 Mar
                                                  10 09:27 card0
> > > crw-rw----+ 1
                                                  root video 226,  1 Mar
                                                  10 09:27 card1
> > > crw-rw----+ 1
                                                  root video 226,  2 Mar
                                                  10 09:27 card2
> > > crw-rw----  1
                                                  root video 226, 64 Mar
                                                  10 09:27 controlD64
> > > crw-rw----  1
                                                  root video 226, 65 Mar
                                                  10 09:27 controlD65
> > > crw-rw----  1
                                                  root video 226, 66 Mar
                                                  10 09:27 controlD66
> > > 
> > > I think that
                                                  the way to find the
                                                  cause on my part is to
                                                  check the
> > > origin of
                                                  that msg in Xorg.log.
> > > 
> > > is that a
                                                  xserver msg or
                                                  xf86-video-ati msg?
> 
> > 
> > The message is from
                                                the radeon driver, but
                                                it's because drmOpen()
                                                in
> > libdrm fails. It
                                                would indeed be
                                                interesting to track
                                                down where the 'No
> > such file or
                                                directory' error
                                                originates from.
> 
> will do, when I'll have
                                                more info, I'll update.
> 
> Greetings Michel,
> 
> I've tried to track the source if that
                              error, I've enabled dbg prints in libdrm
                              and found this:
> (II) [KMS] Kernel modesetting enabled.
> drmOpenDevice: node name is /dev/dri/card0
> drmOpenDevice: open result is 11, (OK)
> drmOpenByBusid: Searching for BusID
                              pci:0000:06:00.0
> drmOpenDevice: node name is /dev/dri/card0
> drmOpenDevice: open result is 11, (OK)
> drmOpenByBusid: drmOpenMinor returns 11
> drmOpenByBusid: drmGetBusid reports
                              pci:0000:00:02.0
> drmOpenDevice: node name is /dev/dri/card1
> drmOpenDevice: open result is -1, (Invalid
                              argument)
> drmOpenByBusid: drmOpenMinor returns -22
> drmOpenDevice: node name is /dev/dri/card2
> drmOpenDevice: open result is -1, (Invalid
                              argument)
> 
> looking in the code I see this:
> fd = open(buf, O_RDWR, 0);
> drmMsg("drmOpenDevice: open result is
                              %d, (%s)\n",
> fd, fd < 0 ?
                              strerror(errno) : "OK");
> if (fd >= 0)
> return fd;
> 
> I think that the issue might be that the
                              file cannot be opened for that mode as the
                              path is printed above and it is ok.
> 
> any ideas what might it be?
> 
> 
I had a similar problem over the last weeks using kernel 3.13.x  Not sure it happened \
before with older kernels. I am using a "from scratch" distro.  It's using systemd \
and  glibc-2.19, with relatively recent Xorg and Mesa development.
I have a Radeon 4870.  I don't think it's the video card.
Tentatively what happens is I lose the /dev/dri/card0 and the
    display goes black.  I get "no usable screens found" in the
    Xorg.0.log file. 
Anyway what seems to be causing the problem is If I leave a music CD
    in the CD drive, upon booting, timing issues or something cause the
    dri/card0 device to go away.   There are a lot of messages in the
    kernel log, where it's  trying to find out about the music CD.
X seems to come up fine with no music CD in the drive.

Fred



_______________________________________________
> xorg@lists.x.org: X.Org support
> Archives: http://lists.freedesktop.org/archives/xorg
> Info: http://lists.x.org/mailman/listinfo/xorg
> Your subscription address: %(user_address)s
> 
> 
> 
> 
> 
> 
> _______________________________________________ xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg Info: \
http://lists.x.org/mailman/listinfo/xorg Your subscription address: %(user_address)s \
Greetings Fred,

not sure how the cd is relevant for the issue but following patches fixes the issue \
on my setup:

http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9babd35ad72af631547c7ca294bc2e931cc40e58 \
http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=7848865914c6a63ead674f0f5604b77df7d3874f



[Attachment #5 (text/html)]

<html><body><div style="color:#000; background-color:#fff; font-family:HelveticaNeue, \
Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt"><div \
style="display: block;" class="yahoo_quoted"><font face="Arial" size="2">On Monday, \
March 24, 2014 2:23 PM, Fred &lt;heitkamp@ameritech.net&gt; wrote:<br> </font> <div \
style="font-family: HelveticaNeue, Helvetica Neue, Helvetica, Arial, Lucida Grande, \
sans-serif; font-size: 8pt;"><div style="font-family: HelveticaNeue, Helvetica Neue, \
Helvetica, Arial, Lucida Grande, sans-serif; font-size: 12pt;">  <div \
class="y_msg_container"><div id="yiv4615946017"><div>  <div \
class="yiv4615946017moz-cite-prefix">On 03/15/14 04:34,  <a rel="nofollow" \
shape="rect" class="yiv4615946017moz-txt-link-abbreviated" \
ymailto="mailto:StompDagger1@yahoo.com" target="_blank" \
href="mailto:StompDagger1@yahoo.com">StompDagger1@yahoo.com</a> wrote:<br \
clear="none">  </div>
    <blockquote type="cite">
      <div style="color:#000;background-color:#fff;font-family:HelveticaNeue, \
Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;">here is a \
simple test  case that reproduces the issue on my machine:<br clear="none">
        dagg@NCC-5001-D ~/workspace $ cat open_example.c<br clear="none">
        #include &lt;unistd.h&gt;<br clear="none">
        #include &lt;fcntl.h&gt;<br clear="none">
        #include &lt;stdio.h&gt;<br clear="none">
        #include &lt;errno.h&gt;<br clear="none">
        #include &lt;string.h&gt;<br clear="none">
        &nbsp;<br clear="none">
        int main()<br clear="none">
        {<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char *param1 = "ok";<br \
                clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; char *param2 = ".";<br \
                clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; int filedesc = \
                open("/dev/dri/card1", O_RDWR, 0);<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (filedesc) {<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
                param1 = "ERROR: ";<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
param2 = strerror(errno);<br clear="none">  \
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; printf("fd = %d, status = %s%s\n", \
filedesc, param1,  param2);<br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; close(filedesc);<br clear="none">
        <br clear="none">
        &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return 0;<br clear="none">
        }dagg@NCC-5001-D ~/workspace $ gcc open_example.c -o
        open_example &amp;&amp; ./open_example <br clear="none">
        fd = -1, status = ERROR: Invalid argument<br clear="none">
        <div class="yiv4615946017yahoo_quoted" style="display:block;"> <br \
clear="none">  <br clear="none">
          <div style="font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, \
                Lucida Grande, sans-serif;font-size:8pt;">
            <div style="font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, \
Lucida Grande, sans-serif;font-size:12pt;">  <div dir="ltr"> <font face="Arial" \
size="2"> On Friday,  March 14, 2014 4:22 PM, <a rel="nofollow" shape="rect" \
class="yiv4615946017moz-txt-link-rfc2396E" ymailto="mailto:StompDagger1@yahoo.com" \
target="_blank" href="mailto:StompDagger1@yahoo.com">"StompDagger1@yahoo.com"</a>  <a \
rel="nofollow" shape="rect" class="yiv4615946017moz-txt-link-rfc2396E" \
ymailto="mailto:stompdagger1@yahoo.com" target="_blank" \
href="mailto:stompdagger1@yahoo.com">&lt;stompdagger1@yahoo.com&gt;</a> wrote:<br \
clear="none">  </font> </div>
              <div class="yiv4615946017y_msg_container">
                <div id="yiv4615946017">
                  <div>
                    <div \
style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, \
                Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;">
                      <div class="yiv4615946017yahoo_quoted" \
style="display:block;"><font face="Arial" size="2">On Tuesday, March 11, 2014 8:45 \
AM,  <a rel="nofollow" shape="rect" class="yiv4615946017moz-txt-link-rfc2396E" \
ymailto="mailto:StompDagger1@yahoo.com" target="_blank" \
href="mailto:StompDagger1@yahoo.com">"StompDagger1@yahoo.com"</a>  <a rel="nofollow" \
shape="rect" class="yiv4615946017moz-txt-link-rfc2396E" \
ymailto="mailto:stompdagger1@yahoo.com" target="_blank" \
href="mailto:stompdagger1@yahoo.com">&lt;stompdagger1@yahoo.com&gt;</a> wrote:<br \
clear="none">  </font>
                        <div style="font-family:HelveticaNeue, Helvetica Neue, \
                Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;">
                          <div style="font-family:HelveticaNeue, Helvetica Neue, \
Helvetica, Arial, Lucida Grande, sans-serif;font-size:12pt;">  <div \
                class="yiv4615946017y_msg_container">
                              <div class="yiv4615946017yqt4047487418" \
id="yiv4615946017yqt30079">  <div id="yiv4615946017">
                                  <div>
                                    <div \
style="color:#000;background-color:#fff;font-family:HelveticaNeue, Helvetica Neue, \
                Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;">
                                      <div class="yiv4615946017yqt6353500749" \
                id="yiv4615946017yqtfd77593">
                                        <div class="yiv4615946017yahoo_quoted" \
style="display:block;"><font face="Arial" size="2">&gt;On  Tuesday, March 11, 2014 \
5:16  AM, Michel Dänzer
                                            <a rel="nofollow" shape="rect" \
class="yiv4615946017moz-txt-link-rfc2396E" ymailto="mailto:michel@daenzer.net" \
target="_blank" href="mailto:michel@daenzer.net">&lt;michel@daenzer.net&gt;</a>  \
wrote:<br clear="none">  </font>
                                          <div style="font-family:HelveticaNeue, \
                Helvetica Neue, Helvetica, Arial, Lucida Grande, \
                sans-serif;font-size:8pt;">
                                            <div style="font-family:HelveticaNeue, \
                Helvetica Neue, Helvetica, Arial, Lucida Grande, \
                sans-serif;font-size:12pt;">
                                              <div \
class="yiv4615946017y_msg_container">&gt;On  Mon, 2014-03-10 at 08:23
                                                -0700, <a rel="nofollow" shape="rect" \
ymailto="mailto:StompDagger1@yahoo.com" target="_blank" \
href="mailto:StompDagger1@yahoo.com">StompDagger1@yahoo.com</a>  wrote:
                                                <div \
                class="yiv4615946017yqt6550552023" \
                id="yiv4615946017yqtfd90884">&gt;<br clear="none">
                                                  &gt;&gt; <br clear="none">
                                                  &gt;&gt; <br clear="none">
                                                  &gt;&gt; &gt;On
                                                  Monday, March 10, 2014
                                                  5:58 AM, Michel Dänzer
                                                  &lt;<a rel="nofollow" shape="rect" \
ymailto="mailto:michel@daenzer.net" target="_blank" \
                href="mailto:michel@daenzer.net">michel@daenzer.net</a>&gt;<br \
                clear="none">
                                                  &gt;&gt; wrote:<br clear="none">
                                                  &gt;&gt; <br clear="none">
                                                  &gt;&gt; &gt;On Sam,
                                                  2014-03-08 at 11:41
                                                  -0800, <a rel="nofollow" \
shape="rect" ymailto="mailto:StompDagger1@yahoo.com" target="_blank" \
href="mailto:StompDagger1@yahoo.com">StompDagger1@yahoo.com</a>  wrote:<br \
                clear="none">
                                                  &gt;&gt; &gt;<br clear="none">
                                                  &gt;&gt; &gt;&gt;
                                                  &gt;On Sat, Mar 8,
                                                  2014 at 2:56 AM, <a rel="nofollow" \
shape="rect" ymailto="mailto:StompDagger1@yahoo.com" target="_blank" \
                href="mailto:StompDagger1@yahoo.com">StompDagger1@yahoo.com</a><br \
                clear="none">
                                                  &gt;&gt; &gt;&gt; &gt;<br \
clear="none">  &gt;&gt; &gt;&gt;
                                                  &gt;&gt; [&nbsp; &nbsp; 51.829]
                                                  (EE) RADEON(0): [drm]
                                                  Failed to open DRM
                                                  device for<br clear="none">
                                                  &gt;&gt; &gt;&gt;
                                                  &gt;&gt;
                                                  pci:0000:06:00.0: No
                                                  such file or directory<br \
                clear="none">
                                                  &gt;&gt; &gt;<br clear="none">
                                                  &gt;&gt; &gt;'No such
                                                  file or directory'
                                                  sounds like something
                                                  is deleting<br clear="none">
                                                  &gt;&gt; &gt;your
                                                  /dev/dri/card* files,
                                                  or not creating them
                                                  in the first place.<br \
clear="none">  &gt;&gt; &gt;Maybe
                                                  check your udev setup.<br \
                clear="none">
                                                  &gt;&gt; &gt;<br clear="none">
                                                  &gt;&gt; &gt;If it
                                                  only happens with a
                                                  3.13 kernel but not
                                                  with a 3.12 one,<br clear="none">
                                                  &gt;&gt; another<br clear="none">
                                                  &gt;&gt; &gt;option is
                                                  to bisect the kernel.<br \
                clear="none">
                                                  .&gt; <br clear="none">
                                                  .&gt; Greetings
                                                  Michel,<br clear="none">
                                                  .&gt; <br clear="none">
                                                  .&gt; dri node do
                                                  exists, see:<br clear="none">
                                                  &gt;&gt; <a rel="nofollow" \
shape="rect" ymailto="mailto:dagg@NCC-5001-D" target="_blank" \
                href="mailto:dagg@NCC-5001-D">dagg@NCC-5001-D</a>
                                                  ~ $ ll /dev/dri<br clear="none">
                                                  &gt;&gt; total 0<br clear="none">
                                                  &gt;&gt; crw-rw----+ 1
                                                  root video 226,&nbsp; 0 Mar
                                                  10 09:27 card0<br clear="none">
                                                  &gt;&gt; crw-rw----+ 1
                                                  root video 226,&nbsp; 1 Mar
                                                  10 09:27 card1<br clear="none">
                                                  &gt;&gt; crw-rw----+ 1
                                                  root video 226,&nbsp; 2 Mar
                                                  10 09:27 card2<br clear="none">
                                                  &gt;&gt; crw-rw----&nbsp; 1
                                                  root video 226, 64 Mar
                                                  10 09:27 controlD64<br \
                clear="none">
                                                  &gt;&gt; crw-rw----&nbsp; 1
                                                  root video 226, 65 Mar
                                                  10 09:27 controlD65<br \
                clear="none">
                                                  &gt;&gt; crw-rw----&nbsp; 1
                                                  root video 226, 66 Mar
                                                  10 09:27 controlD66<br \
                clear="none">
                                                  &gt;&gt; <br clear="none">
                                                  &gt;&gt; I think that
                                                  the way to find the
                                                  cause on my part is to
                                                  check the<br clear="none">
                                                  &gt;&gt; origin of
                                                  that msg in Xorg.log.<br \
                clear="none">
                                                  &gt;&gt; <br clear="none">
                                                  &gt;&gt; is that a
                                                  xserver msg or
                                                  xf86-video-ati msg?</div>
                                                &gt;<br clear="none">
                                                &gt;<br clear="none">
                                                &gt;The message is from
                                                the radeon driver, but
                                                it's because drmOpen()
                                                in<br clear="none">
                                                &gt;libdrm fails. It
                                                would indeed be
                                                interesting to track
                                                down where the 'No<br clear="none">
                                                &gt;such file or
                                                directory' error
                                                originates from.<br clear="none">
                                                <br clear="none">
                                                will do, when I'll have
                                                more info, I'll update.<br \
clear="none">  </div>
                                            </div>
                                          </div>
                                        </div>
                                      </div>
                                    </div>
                                  </div>
                                </div>
                              </div>
                              <br clear="none">
                              Greetings Michel,<br clear="none">
                              <br clear="none">
                              I've tried to track the source if that
                              error, I've enabled dbg prints in libdrm
                              and found this:<br clear="none">
                              (II) [KMS] Kernel modesetting enabled.<br clear="none">
                              drmOpenDevice: node name is /dev/dri/card0<br \
                clear="none">
                              drmOpenDevice: open result is 11, (OK)<br clear="none">
                              drmOpenByBusid: Searching for BusID
                              pci:0000:06:00.0<br clear="none">
                              drmOpenDevice: node name is /dev/dri/card0<br \
                clear="none">
                              drmOpenDevice: open result is 11, (OK)<br clear="none">
                              drmOpenByBusid: drmOpenMinor returns 11<br \
clear="none">  drmOpenByBusid: drmGetBusid reports
                              pci:0000:00:02.0<br clear="none">
                              drmOpenDevice: node name is /dev/dri/card1<br \
clear="none">  drmOpenDevice: open result is -1, (Invalid
                              argument)<br clear="none">
                              drmOpenByBusid: drmOpenMinor returns -22<br \
                clear="none">
                              drmOpenDevice: node name is /dev/dri/card2<br \
clear="none">  drmOpenDevice: open result is -1, (Invalid
                              argument)<br clear="none">
                              <br clear="none">
                              looking in the code I see this:<br clear="none">
                              &nbsp;&nbsp;&nbsp; fd = open(buf, O_RDWR, 0);<br \
                clear="none">
                              &nbsp;&nbsp;&nbsp; drmMsg("drmOpenDevice: open result \
is  %d, (%s)\n",<br clear="none">
                              \
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; \
fd, fd &lt; 0 ?  strerror(errno) : "OK");<br clear="none">
                              &nbsp;&nbsp;&nbsp; if (fd &gt;= 0)<br clear="none">
                              &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return \
fd;<br clear="none">  <br clear="none">
                              I think that the issue might be that the
                              file cannot be opened for that mode as the
                              path is printed above and it is ok.<br clear="none">
                              <br clear="none">
                              any ideas what might it be?<br clear="none">
                            </div>
                          </div>
                        </div>
                      </div>
                    </div>
                  </div>
                </div>
                <br clear="none">
              </div>
            </div>
          </div>
        </div>
      </div>
    </blockquote>
    I had a similar problem over the last weeks using kernel 3.13.x&nbsp; Not
    sure it happened before with older kernels.<br clear="none">
    I am using a "from scratch" distro.&nbsp; It's using systemd and
    glibc-2.19, with relatively recent Xorg and Mesa development.<br clear="none">
    I have a Radeon 4870.&nbsp; I don't think it's the video card.<br clear="none">
    Tentatively what happens is I lose the /dev/dri/card0 and the
    display goes black.&nbsp; I get "no usable screens found" in the
    Xorg.0.log file. <br clear="none">
    Anyway what seems to be causing the problem is If I leave a music CD
    in the CD drive, upon booting, timing issues or something cause the
    dri/card0 device to go away.&nbsp;&nbsp; There are a lot of messages in the
    kernel log, where it's&nbsp; trying to find out about the music CD.<br \
clear="none">  X seems to come up fine with no music CD in the drive.<br \
clear="none">  <br clear="none">
    Fred<br clear="none">
    <br clear="none">
    <br clear="none">
    <blockquote type="cite">
      <div style="color:#000;background-color:#fff;font-family:HelveticaNeue, \
Helvetica Neue, Helvetica, Arial, Lucida Grande, sans-serif;font-size:8pt;">  <div \
                class="yiv4615946017yahoo_quoted" style="display:block;">
          <div style="font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, \
                Lucida Grande, sans-serif;font-size:8pt;">
            <div style="font-family:HelveticaNeue, Helvetica Neue, Helvetica, Arial, \
Lucida Grande, sans-serif;font-size:12pt;">  <div \
                class="yiv4615946017y_msg_container">
                <div class="yiv4615946017yqt4047487418" \
id="yiv4615946017yqt97083">_______________________________________________<br \
                clear="none">
                  <a rel="nofollow" shape="rect" ymailto="mailto:xorg@lists.x.org" \
target="_blank" href="mailto:xorg@lists.x.org">xorg@lists.x.org</a>:  X.Org \
support<br clear="none">  Archives: <a rel="nofollow" shape="rect" target="_blank" \
href="http://lists.freedesktop.org/archives/xorg">http://lists.freedesktop.org/archives/xorg</a><br \
clear="none">  Info: <a rel="nofollow" shape="rect" target="_blank" \
href="http://lists.x.org/mailman/listinfo/xorg">http://lists.x.org/mailman/listinfo/xorg</a><br \
clear="none">  Your subscription address: %(user_address)s</div>
                <div class="yiv4615946017yqt5474415555" \
id="yiv4615946017yqtfd73610"><br clear="none">  <br clear="none">
              </div></div><div class="yiv4615946017yqt5474415555" \
                id="yiv4615946017yqtfd13444">
            </div></div><div class="yiv4615946017yqt5474415555" \
                id="yiv4615946017yqtfd96418">
          </div></div><div class="yiv4615946017yqt5474415555" \
                id="yiv4615946017yqtfd17911">
        </div></div><div class="yiv4615946017yqt5474415555" \
                id="yiv4615946017yqtfd81355">
      </div></div><div class="yiv4615946017yqt5474415555" \
id="yiv4615946017yqtfd28785">  <br clear="none">
      <fieldset class="yiv4615946017mimeAttachmentHeader"></fieldset>
      <br clear="none">
      <pre>_______________________________________________
<a rel="nofollow" shape="rect" class="yiv4615946017moz-txt-link-abbreviated" \
ymailto="mailto:xorg@lists.x.org" target="_blank" \
                href="mailto:xorg@lists.x.org">xorg@lists.x.org</a>: X.Org support
Archives: <a rel="nofollow" shape="rect" class="yiv4615946017moz-txt-link-freetext" \
target="_blank" href="http://lists.freedesktop.org/archives/xorg">http://lists.freedesktop.org/archives/xorg</a>
                
Info: <a rel="nofollow" shape="rect" class="yiv4615946017moz-txt-link-freetext" \
target="_blank" href="http://lists.x.org/mailman/listinfo/xorg">http://lists.x.org/mailman/listinfo/xorg</a>
 Your subscription address: %(user_address)s</pre>
    </div></blockquote><div class="yiv4615946017yqt5474415555" \
id="yiv4615946017yqtfd20269">  <br clear="none">
  </div></div></div>Greetings Fred,<br><br>not sure how the cd is relevant for the \
issue but following patches fixes the issue on my setup:<br><pre \
class="bz_comment_text" id="comment_text_16"><a \
href="http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9babd3 \
5ad72af631547c7ca294bc2e931cc40e58">http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=9babd35ad72af631547c7ca294bc2e931cc40e58</a>
 <a href="http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/?id=78 \
48865914c6a63ead674f0f5604b77df7d3874f">http://git.kernel.org/cgit/linux/kernel/git/to \
rvalds/linux.git/commit/?id=7848865914c6a63ead674f0f5604b77df7d3874f</a></pre><br></div> \
</div> </div>  </div> </div></body></html>



_______________________________________________
xorg@lists.x.org: X.Org support
Archives: http://lists.freedesktop.org/archives/xorg
Info: http://lists.x.org/mailman/listinfo/xorg
Your subscription address: %(user_address)s

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic