<p>Oops. Sent to the wrong location... </p>
<div class="gmail_quote">---------- Forwarded message ----------<br>From: &quot;Jon Miller&quot; &lt;<a href="mailto:jonebird@gmail.com">jonebird@gmail.com</a>&gt;<br>Date: Jul 6, 2012 6:37 PM<br>Subject: Anybody have a NIC that supports queuing Jumbo packets?<br>
To: &quot;Central OH Linux User Group&quot; &lt;<a href="mailto:colugx@colug.net">colugx@colug.net</a>&gt;<br><br type="attribution">I&#39;m researching something at work and thus far our x86 hardware variety of NICs hasn&#39;t uncovered a model / firmware / driver combination that supported queuing of Jumbo packets. So, I&#39;m curious what the rest of you might find with your HW setups? Try this, if you don&#39;t mind:<div>

ethtool --show-ring eth0 # or substitute for your particular interface</div><div><br></div><div>What I&#39;m interested in learning is if any of you are seeing a non-zero value for &quot;RX Jumbo&quot; for the pre-set maximums? If are you seeing a non-zero value, what is your driver / firmware level? (ethtool -i eth0)<br>

<div><br></div></div><div>Thanks,</div><div>Jon Miller</div><div><br></div><div># And for kicks, here is a little shell excerpt to find such a NIC too: (copy &amp; paste this if you&#39;d like)</div><div><div>for inf in $(ip link show | sed -n &#39;s/^[0-9]*: \([^:]*\):.*/\1/p&#39;); do</div>

<div>  JUMBO_RING_SIZE=$(($(ethtool --show-ring $inf 2&gt;&amp;1 | sed -n -e &#39;/Current hardware settings/,$d&#39; -e &#39;/^RX Jumbo/p&#39; | awk &#39;{ print $NF }&#39;)+0))</div><div>  if [ -n &quot;${JUMBO_RING_SIZE}&quot; -a &quot;${JUMBO_RING_SIZE}&quot; -gt 0 ]; then</div>

<div>    echo &quot;Found one for you, Jon, on interface $inf&quot;</div><div>    ethtool -i $inf</div><div>  fi</div><div>done</div></div><div><br></div>
</div>