<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: OpenSolaris &#8211; RTL8111/8168B issues</title>
	<atom:link href="http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/feed/" rel="self" type="application/rss+xml" />
	<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/</link>
	<description>…bytes bits</description>
	<lastBuildDate>Mon, 21 Dec 2009 19:06:13 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Adam Smith</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-94</link>
		<dc:creator>Adam Smith</dc:creator>
		<pubDate>Tue, 08 Dec 2009 07:53:49 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-94</guid>
		<description>ACTUALLY -- sorry -- I take back my comment about the -9 driver not working 100% of the time.  Turns out a system reboot resets the driver.

There are discussions on the aforementioned forum thread about permanently installing the driver.

Turns out you can skip the modunload / ifconfig stuff if you want to just &#039;install&#039; it rather than just patch it in until the next reboot.  So you can install by:

1) copy rge into /platform/i86pc/kernel/drv   (add a /amd64 on the end if you&#039;re on a 64 bit platform)

2) restart!

3) verify that you are running the patched driver: modinfo &#124; grep rge, look for a line that ends with -9).</description>
		<content:encoded><![CDATA[<p>ACTUALLY &#8212; sorry &#8212; I take back my comment about the -9 driver not working 100% of the time.  Turns out a system reboot resets the driver.</p>
<p>There are discussions on the aforementioned forum thread about permanently installing the driver.</p>
<p>Turns out you can skip the modunload / ifconfig stuff if you want to just &#8216;install&#8217; it rather than just patch it in until the next reboot.  So you can install by:</p>
<p>1) copy rge into /platform/i86pc/kernel/drv   (add a /amd64 on the end if you&#8217;re on a 64 bit platform)</p>
<p>2) restart!</p>
<p>3) verify that you are running the patched driver: modinfo | grep rge, look for a line that ends with -9).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Smith</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-93</link>
		<dc:creator>Adam Smith</dc:creator>
		<pubDate>Tue, 08 Dec 2009 07:38:13 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-93</guid>
		<description>ok the -9 driver made the problems much better but the network still goes down from time to time.</description>
		<content:encoded><![CDATA[<p>ok the -9 driver made the problems much better but the network still goes down from time to time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sh0x</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-91</link>
		<dc:creator>sh0x</dc:creator>
		<pubDate>Thu, 03 Dec 2009 00:15:39 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-91</guid>
		<description>I ran into this issue with rge hanging and a fter installing the -9 driver it took care of the problems. Just extract and run make; make install.</description>
		<content:encoded><![CDATA[<p>I ran into this issue with rge hanging and a fter installing the -9 driver it took care of the problems. Just extract and run make; make install.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Smith</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-88</link>
		<dc:creator>Adam Smith</dc:creator>
		<pubDate>Sun, 29 Nov 2009 22:16:53 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-88</guid>
		<description>Yes, seems like the new driver works.  The &quot;-9&quot; variant seems to work for me and is reported to work for others, though I don&#039;t think it will be the final production release.

Nevertheless, to install it, do:

1) download it from here: http://homepage2.nifty.com/mrym3/taiyodo/rge-6888015-9.tar.gz
2) follow these instructions:  :)


(1) unload existing rge:
unplumb rge port
# ifconfig rge0 unplumb

find module id of rge
# modinfo &#124; grep rge
if the result is:
200 fffffffff889e000 d420 320 1 rge (Realtek 1Gb Ethernet)
then,
# modunload -i 200

(2) load the new rge
if you use 64bit kernel:
# modload ./amd64/rge

if you use 32bit kernel:
# modload ./i386/rge

ensure the new rge is loaded and running
# modinfo &#124; grep rge
200 fffffffff889e000 d420 320 1 rge (Realtek 1Gb Ethernet mcast.3)

(3) plumb the new rge
# ifconfig rge0 plumb .......

(4) then test your applications.


---
here was the before/after on my modinfo line:


before: 155 fffffffff7eb5000   a9d8  66   1  m (Realtek 1Gb Ethernet)
after: 155 fffffffff7f36000   d868  66   1  rge (Realtek 1Gb Ethernet 6888015-9)</description>
		<content:encoded><![CDATA[<p>Yes, seems like the new driver works.  The &#8220;-9&#8243; variant seems to work for me and is reported to work for others, though I don&#8217;t think it will be the final production release.</p>
<p>Nevertheless, to install it, do:</p>
<p>1) download it from here: <a href="http://homepage2.nifty.com/mrym3/taiyodo/rge-6888015-9.tar.gz" rel="nofollow">http://homepage2.nifty.com/mrym3/taiyodo/rge-6888015-9.tar.gz</a><br />
2) follow these instructions:  :)</p>
<p>(1) unload existing rge:<br />
unplumb rge port<br />
# ifconfig rge0 unplumb</p>
<p>find module id of rge<br />
# modinfo | grep rge<br />
if the result is:<br />
200 fffffffff889e000 d420 320 1 rge (Realtek 1Gb Ethernet)<br />
then,<br />
# modunload -i 200</p>
<p>(2) load the new rge<br />
if you use 64bit kernel:<br />
# modload ./amd64/rge</p>
<p>if you use 32bit kernel:<br />
# modload ./i386/rge</p>
<p>ensure the new rge is loaded and running<br />
# modinfo | grep rge<br />
200 fffffffff889e000 d420 320 1 rge (Realtek 1Gb Ethernet mcast.3)</p>
<p>(3) plumb the new rge<br />
# ifconfig rge0 plumb &#8230;&#8230;.</p>
<p>(4) then test your applications.</p>
<p>&#8212;<br />
here was the before/after on my modinfo line:</p>
<p>before: 155 fffffffff7eb5000   a9d8  66   1  m (Realtek 1Gb Ethernet)<br />
after: 155 fffffffff7f36000   d868  66   1  rge (Realtek 1Gb Ethernet 6888015-9)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wam</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-81</link>
		<dc:creator>Wam</dc:creator>
		<pubDate>Thu, 19 Nov 2009 17:04:14 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-81</guid>
		<description>Seems that there is now a fix in the pipe :
http://opensolaris.org/jive/thread.jspa?messageID=434383</description>
		<content:encoded><![CDATA[<p>Seems that there is now a fix in the pipe :<br />
<a href="http://opensolaris.org/jive/thread.jspa?messageID=434383" rel="nofollow">http://opensolaris.org/jive/thread.jspa?messageID=434383</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-79</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Thu, 05 Nov 2009 09:27:07 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-79</guid>
		<description>FWIW, I was having the same issue with the RGE driver (board is ASUS M3A78-EH with the RTL8111/8168B PCI Express Gigabit Ethernet controller) running Opensolaris 2009.06.  Im using it as a NAS via NFS with VMWare ESXi as the NFS client.  Under heavy load, every hour or two, the network would dissapear for 5 to ten minutes before reappearing.  

I tried all the fixes listed above, and many more with no success.  I switched to the gani driver (2.6.4) and Ive just run flat out NFS load on it for 24 hours with no interruption.  

Awesome!  Hope this helps someone!

Nick</description>
		<content:encoded><![CDATA[<p>FWIW, I was having the same issue with the RGE driver (board is ASUS M3A78-EH with the RTL8111/8168B PCI Express Gigabit Ethernet controller) running Opensolaris 2009.06.  Im using it as a NAS via NFS with VMWare ESXi as the NFS client.  Under heavy load, every hour or two, the network would dissapear for 5 to ten minutes before reappearing.  </p>
<p>I tried all the fixes listed above, and many more with no success.  I switched to the gani driver (2.6.4) and Ive just run flat out NFS load on it for 24 hours with no interruption.  </p>
<p>Awesome!  Hope this helps someone!</p>
<p>Nick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ducky</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-75</link>
		<dc:creator>Ducky</dc:creator>
		<pubDate>Tue, 15 Sep 2009 10:18:56 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-75</guid>
		<description>I&#039;ve got this issue too :(
What I&#039;ve found very interesting, is that my Mac can rape the card for all its worth, for as long as I want, at high speeds, no problems.
I&#039;ll play music off the network share, decompress RAR files off the network share, transfer hundreds of gigabytes, no problem.

But when I try to do that with my Windows Machine, it&#039;ll crap out after transferring 10gb or so.

Maybe that can help you?

Keep us posted :)

Ducky</description>
		<content:encoded><![CDATA[<p>I&#8217;ve got this issue too :(<br />
What I&#8217;ve found very interesting, is that my Mac can rape the card for all its worth, for as long as I want, at high speeds, no problems.<br />
I&#8217;ll play music off the network share, decompress RAR files off the network share, transfer hundreds of gigabytes, no problem.</p>
<p>But when I try to do that with my Windows Machine, it&#8217;ll crap out after transferring 10gb or so.</p>
<p>Maybe that can help you?</p>
<p>Keep us posted :)</p>
<p>Ducky</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daz</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-56</link>
		<dc:creator>Daz</dc:creator>
		<pubDate>Tue, 14 Apr 2009 06:44:28 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-56</guid>
		<description>&lt;a href=&quot;#comment-55&quot; rel=&quot;nofollow&quot;&gt;@John&lt;/a&gt; 
Oh? - i haven&#039;t had any issues with the e1000g driver so far. Hopefully you find a simple fix soon.</description>
		<content:encoded><![CDATA[<p><a href="#comment-55" rel="nofollow">@John</a><br />
Oh? &#8211; i haven&#8217;t had any issues with the e1000g driver so far. Hopefully you find a simple fix soon.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-55</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 14 Apr 2009 01:56:34 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-55</guid>
		<description>Not 5 minutes after I posted, the network stack on my file server died. I&#039;m not sure what the issue is now.</description>
		<content:encoded><![CDATA[<p>Not 5 minutes after I posted, the network stack on my file server died. I&#8217;m not sure what the issue is now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://sigtar.com/2009/02/12/opensolaris-rtl81118168b-issues/comment-page-1/#comment-54</link>
		<dc:creator>John</dc:creator>
		<pubDate>Tue, 14 Apr 2009 01:32:32 +0000</pubDate>
		<guid isPermaLink="false">http://sigtar.com/?p=264#comment-54</guid>
		<description>Daz, like you, I bought an Intel EXPI9300PTBLK card to replace the on-board Realtek NIC. It (and the e1000g driver) are rock solid, so far. I&#039;ve used it for nearly a week now with no problems.</description>
		<content:encoded><![CDATA[<p>Daz, like you, I bought an Intel EXPI9300PTBLK card to replace the on-board Realtek NIC. It (and the e1000g driver) are rock solid, so far. I&#8217;ve used it for nearly a week now with no problems.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
