<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/drivers/net, branch v2.6.23</title>
<subtitle>Mirror of https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
</subtitle>
<id>https://git.shady.money/linux/atom?h=v2.6.23</id>
<link rel='self' href='https://git.shady.money/linux/atom?h=v2.6.23'/>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/'/>
<updated>2007-10-05T18:05:48Z</updated>
<entry>
<title>r8169: revert part of 6dccd16b7c2703e8bbf8bca62b5cf248332afbe2</title>
<updated>2007-10-05T18:05:48Z</updated>
<author>
<name>Francois Romieu</name>
<email>romieu@fr.zoreil.com</email>
</author>
<published>2007-10-03T22:42:50Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=c946b3047205d7e107be16885bbb42ab9f10350a'/>
<id>urn:sha1:c946b3047205d7e107be16885bbb42ab9f10350a</id>
<content type='text'>
The 8169/8110SC currently announces itself as:
[...]
eth0: RTL8169sc/8110sc at 0x........, ..:..:..:..:..:.., XID 18000000 IRQ ..
                                                             ^^^^^^^^
It uses RTL_GIGA_MAC_VER_05 and this part of the changeset can cut
its performance by a factor of 2~2.5 as reported by Timo.

(the driver includes code just before the hunk to write the ChipCmd
register when mac_version == RTL_GIGA_MAC_VER_0[1-4])

Signed-off-by: Francois Romieu &lt;romieu@fr.zoreil.com&gt;
Cc: Timo Jantunen &lt;jeti@welho.com&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>sky2: jumbo frame regression fix</title>
<updated>2007-10-03T17:39:42Z</updated>
<author>
<name>Stephen Hemminger</name>
<email>shemminger@linux-foundation.org</email>
</author>
<published>2007-10-03T01:02:09Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=529d303e075aa6d988f30935b8995ffb382ad38e'/>
<id>urn:sha1:529d303e075aa6d988f30935b8995ffb382ad38e</id>
<content type='text'>
Remove unneeded check that caused problems with jumbo frame sizes.
The check was recently added and is wrong.
When using jumbo frames the sky2 driver does fragmentation, so
rx_data_size is less than mtu.

Signed-off-by: Stephen Hemminger &lt;shemminger@linux-foundation.org&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>Merge branch 'fixes-jgarzik' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6 into upstream-fixes</title>
<updated>2007-10-03T17:39:16Z</updated>
<author>
<name>Jeff Garzik</name>
<email>jeff@garzik.org</email>
</author>
<published>2007-10-03T17:39:16Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=5c55c434917429f229a1bf43def97fd421f444c6'/>
<id>urn:sha1:5c55c434917429f229a1bf43def97fd421f444c6</id>
<content type='text'>
</content>
</entry>
<entry>
<title>[PATCH] bcm43xx: Correct printk with PFX before KERN_</title>
<updated>2007-10-02T21:04:22Z</updated>
<author>
<name>Joe Perches</name>
<email>joe@perches.com</email>
</author>
<published>2007-10-02T19:57:11Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=4365e99f9587b94010e9818a4237ce2b1c734e91'/>
<id>urn:sha1:4365e99f9587b94010e9818a4237ce2b1c734e91</id>
<content type='text'>
Correct printk with PFX before KERN_ in bcm43xx_wx.c

Signed-off-by: Joe Perches &lt;joe@perches.com&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
<entry>
<title>dm9601: Fix receive MTU</title>
<updated>2007-10-02T16:59:10Z</updated>
<author>
<name>Peter Korsgaard</name>
<email>jacmet@sunsite.dk</email>
</author>
<published>2007-10-01T11:36:07Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f662fe5a0b144efadbfc00e8040e603ec318746e'/>
<id>urn:sha1:f662fe5a0b144efadbfc00e8040e603ec318746e</id>
<content type='text'>
dm9601 didn't take the ethernet header into account when calculating
RX MTU, causing packets bigger than 1486 to fail.

Signed-off-by: Peter Korsgaard &lt;jacmet@sunsite.dk&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>mv643xx_eth: Do not modify struct netdev tx_queue_len</title>
<updated>2007-10-02T16:55:10Z</updated>
<author>
<name>Dale Farnsworth</name>
<email>dale@farnsworth.org</email>
</author>
<published>2007-10-01T23:02:18Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=593ff56ef2a23ed3a66ee87d9c9b33044b9fb193'/>
<id>urn:sha1:593ff56ef2a23ed3a66ee87d9c9b33044b9fb193</id>
<content type='text'>
This driver erroneously zeros dev-&gt;tx_queue_len, since
mp-&gt;tx_ring_size has not yet been initialized.  Actually,
the driver shouldn't modify tx_queue_len at all and should
leave the value set by alloc_etherdev(), currently 1000.

Signed-off-by: Dale Farnsworth &lt;dale@farnsworth.org&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>qla3xxx: bugfix: Fix VLAN rx completion handling.</title>
<updated>2007-10-02T16:55:10Z</updated>
<author>
<name>Ron Mercer</name>
<email>ron.mercer@qlogic.com</email>
</author>
<published>2007-10-01T18:43:23Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=50626297b1beb0a29c0f174be39f36485533216c'/>
<id>urn:sha1:50626297b1beb0a29c0f174be39f36485533216c</id>
<content type='text'>
Fix 4032 chip undocumented "feature" where bit-8 is set
if the inbound completion is for a VLAN.

Signed-off-by: Ron Mercer &lt;ron.mercer@qlogic.com&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>qla3xxx: bugfix: Add memory barrier before accessing rx completion.</title>
<updated>2007-10-02T16:55:10Z</updated>
<author>
<name>Ron Mercer</name>
<email>ron.mercer@qlogic.com</email>
</author>
<published>2007-10-01T18:43:22Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=b323e0e49fe9331ee3a7a336af879d6e303b16b3'/>
<id>urn:sha1:b323e0e49fe9331ee3a7a336af879d6e303b16b3</id>
<content type='text'>
Signed-off-by: Ron Mercer &lt;ron.mercer@qlogic.com&gt;
Signed-off-by: Jeff Garzik &lt;jeff@garzik.org&gt;
</content>
</entry>
<entry>
<title>Merge branch 'fixes-jgarzik' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6</title>
<updated>2007-10-01T20:11:48Z</updated>
<author>
<name>Linus Torvalds</name>
<email>torvalds@woody.linux-foundation.org</email>
</author>
<published>2007-10-01T20:11:48Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=e2cd68f7cd07cc898581bd736ebdd6f2c2323c2e'/>
<id>urn:sha1:e2cd68f7cd07cc898581bd736ebdd6f2c2323c2e</id>
<content type='text'>
* 'fixes-jgarzik' of git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-2.6:
  [PATCH] libertas: build problems when partially modular
</content>
</entry>
<entry>
<title>[PATCH] libertas: build problems when partially modular</title>
<updated>2007-10-01T00:35:39Z</updated>
<author>
<name>Randy Dunlap</name>
<email>randy.dunlap@oracle.com</email>
</author>
<published>2007-10-01T00:35:39Z</published>
<link rel='alternate' type='text/html' href='https://git.shady.money/linux/commit/?id=f998351c755a0e87785f2616c4f91f1b3b19b149'/>
<id>urn:sha1:f998351c755a0e87785f2616c4f91f1b3b19b149</id>
<content type='text'>
Fix missing symbols in libertas USB driver when it is modular and rest
of libertas is built-in.

Signed-off-by: Randy Dunlap &lt;randy.dunlap@oracle.com&gt;
Signed-off-by: John W. Linville &lt;linville@tuxdriver.com&gt;
</content>
</entry>
</feed>
