<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <br>
    <div class="moz-cite-prefix">Am 2014-08-13 20:03, schrieb Nick
      Krause:<br>
    </div>
    <blockquote
cite="mid:CAPDOMVh3mWRikT6P8L=1Cg6tR2ez8LFXW5StUG9XSEd_4aT5BQ@mail.gmail.com"
      type="cite">
      <pre wrap="">On Wed, Aug 13, 2014 at 12:55 PM, Nick Krause <a class="moz-txt-link-rfc2396E" href="mailto:xerofoify@gmail.com">&lt;xerofoify@gmail.com&gt;</a> wrote:
</pre>
      <blockquote type="cite">
        <pre wrap="">On Wed, Aug 13, 2014 at 12:02 PM,  <a class="moz-txt-link-rfc2396E" href="mailto:Valdis.Kletnieks@vt.edu">&lt;Valdis.Kletnieks@vt.edu&gt;</a> wrote:
</pre>
        <blockquote type="cite">
          <pre wrap="">On Wed, 13 Aug 2014 18:50:43 +0400, Max Filippov said:

</pre>
          <blockquote type="cite">
            <pre wrap="">No need to trigger it, faking it would be enough, e.g.:
</pre>
          </blockquote>
          <pre wrap="">
</pre>
          <blockquote type="cite">
            <pre wrap="">+                if (++i &lt; 3)
+                        skb  = dev_alloc_skb(frag_length + 4);
+                else
+                        skb = NULL;
</pre>
          </blockquote>
          <pre wrap="">
Don't bet on this triggering on a real system without some additional
scaffolding - take a look at what the function is doing, and ask yourself
how many times it will be called on the average system :)
</pre>
        </blockquote>
        <pre wrap="">Seems to be called a lot. In addition I can only build test this as I
don't have the hardware.
Cheers Nick
</pre>
      </blockquote>
      <pre wrap="">

I did test my patch by doing a kernel build and I get this error,
drivers/staging/rtl8192e/rtl8192e/r8192E_firmware.c:66:4: error:
implicit declaration of function &#8216;skb_quene_purge&#8217;
[-Werror=implicit-function-declaration]
    skb_quene_purge(&amp;priv-&gt;rtllib-&gt;skb_waitQ[tcb_desc-&gt;queue_index]);
I am wondering how do I fix this, I will attach my patch so I can fix
this out and send a proper patch :).
By the way thanks for the help guys :).
Nick
</pre>
      <br>
      <fieldset class="mimeAttachmentHeader"></fieldset>
      <br>
      <pre wrap="">_______________________________________________
Kernelnewbies mailing list
<a class="moz-txt-link-abbreviated" href="mailto:Kernelnewbies@kernelnewbies.org">Kernelnewbies@kernelnewbies.org</a>
<a class="moz-txt-link-freetext" href="http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies">http://lists.kernelnewbies.org/mailman/listinfo/kernelnewbies</a>
</pre>
    </blockquote>
    This error indicates that you are using a function that is not yet
    known to the compiler. Check if there's a prototype or function
    definition BEFORE it's actual use.<br>
    <br>
    br,<br>
    phil<br>
  </body>
</html>