LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH 0/4] atl1: Attansic L1 ethernet driver
@ 2007-01-11 0:39 Jay Cliburn
0 siblings, 0 replies; 5+ messages in thread
From: Jay Cliburn @ 2007-01-11 0:39 UTC (permalink / raw)
To: jeff; +Cc: shemminger, csnook, netdev, linux-kernel, atl1-devel
This is the latest submittal of the patchset providing support for the
Attansic L1 gigabit ethernet adapter. This patchset is built against
kernel version 2.6.20-rc4 current git as of 20070109.
The monolithic version of this patchset may be found at:
ftp://hogchain.net/pub/linux/m2v/attansic/kernel_driver/atl1-2.0.3/atl1-2.0.3-linux-2.6.20.rc4.patch.bz2
As a reminder, this driver is a modified version of the Attansic reference
driver for the L1 ethernet adapter. Attansic has granted permission for
its inclusion in the mainline kernel.
Changes for this version include:
* Incorporation of previous comments from Arnd Bergmann, Alan Cox, and
Jan Engelhardt.
* Conversion to the new workqueue method.
* Addition of MSI support (thanks to Luca Tettamanti).
NOTES:
1. TSO is broken (order of magnitude decrease in Tx peformance as compared
to Rx performance) and therefore the feature has been disabled until it's
fixed. We have not been able to find the source of the problem in the
driver itself, so we've requested that Attansic take a look at the hardware.
We've not yet heard back from them. We encourage any experienced netdev
folks to take a look at the TSO code and let us know if you see the problem.
2. Given the download statistics from Sourceforge (current home of the
driver) and hogchain.net (the original home of the driver), we believe the
driver to be in use by dozens, if not hundreds, of users. We've received
remarkably few bug reports: a couple of typos and and the TSO performance
issue.
This patch contains:
drivers/net/Kconfig | 11 +
drivers/net/Makefile | 1 +
drivers/net/atl1/Makefile | 30 +
drivers/net/atl1/atl1.h | 266 +++++
drivers/net/atl1/atl1_ethtool.c | 528 +++++++++
drivers/net/atl1/atl1_hw.c | 797 +++++++++++++
drivers/net/atl1/atl1_hw.h | 1053 +++++++++++++++++
drivers/net/atl1/atl1_main.c | 2464 +++++++++++++++++++++++++++++++++++++++
drivers/net/atl1/atl1_param.c | 223 ++++
9 files changed, 5373 insertions(+), 0 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/4] atl1: Attansic L1 ethernet driver
2007-01-23 16:42 ` Jay Cliburn
@ 2007-01-23 21:27 ` Jeff Garzik
0 siblings, 0 replies; 5+ messages in thread
From: Jeff Garzik @ 2007-01-23 21:27 UTC (permalink / raw)
To: Jay Cliburn; +Cc: shemminger, csnook, hch, netdev, linux-kernel, atl1-devel
Jay Cliburn wrote:
> Perhaps a dumb question, but when can I begin submitting differential
> patches? Now? I'd like to incorporate some of Arjan's and Randy's
> comments.
Submit patches starting... now! :)
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/4] atl1: Attansic L1 ethernet driver
2007-01-23 5:57 ` Jeff Garzik
@ 2007-01-23 16:42 ` Jay Cliburn
2007-01-23 21:27 ` Jeff Garzik
0 siblings, 1 reply; 5+ messages in thread
From: Jay Cliburn @ 2007-01-23 16:42 UTC (permalink / raw)
To: Jeff Garzik; +Cc: shemminger, csnook, hch, netdev, linux-kernel, atl1-devel
Jeff Garzik wrote:
> OK, I have merged the monolithic patch into jgarzik/netdev-2.6.git#atl1.
> Once I'm done merging patches tonight, I will merge this new 'atl1'
> branch into the 'ALL' meta-branch, which will auto-propagate this driver
> into Andrew Morton's -mm for testing.
>
> For future driver updates, please send a patch rather than the full
> driver diff.
Perhaps a dumb question, but when can I begin submitting differential
patches? Now? I'd like to incorporate some of Arjan's and Randy's
comments.
Thank you very much for accepting the driver.
Jay
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 0/4] atl1: Attansic L1 ethernet driver
2007-01-21 21:04 Jay Cliburn
@ 2007-01-23 5:57 ` Jeff Garzik
2007-01-23 16:42 ` Jay Cliburn
0 siblings, 1 reply; 5+ messages in thread
From: Jeff Garzik @ 2007-01-23 5:57 UTC (permalink / raw)
To: Jay Cliburn; +Cc: shemminger, csnook, hch, netdev, linux-kernel, atl1-devel
Jay Cliburn wrote:
> This is the latest submittal of the patchset providing support for the
> Attansic L1 gigabit ethernet adapter. This patchset is built against
> kernel version 2.6.20-rc5.
>
> This version incorporates all comments from:
>
> Christoph Hellwig:
> http://lkml.org/lkml/2007/1/11/43
> http://lkml.org/lkml/2007/1/11/45
> http://lkml.org/lkml/2007/1/11/48
> http://lkml.org/lkml/2007/1/11/49
>
> Jeff Garzik:
> http://lkml.org/lkml/2007/1/18/233
>
> Many thanks to both for reviewing the driver.
>
> The monolithic version of this patchset may be found at:
> ftp://hogchain.net/pub/linux/attansic/kernel_driver/atl1-2.0.5-linux-2.6.20.rc5.patch.bz2
OK, I have merged the monolithic patch into jgarzik/netdev-2.6.git#atl1.
Once I'm done merging patches tonight, I will merge this new 'atl1'
branch into the 'ALL' meta-branch, which will auto-propagate this driver
into Andrew Morton's -mm for testing.
For future driver updates, please send a patch rather than the full
driver diff.
If it looks good, we will push for 2.6.21 (or 2.6.22, if updates or
objections continue to come fast and furious). It's in "the system"
now, thanks for all your hard work!
Jeff
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 0/4] atl1: Attansic L1 ethernet driver
@ 2007-01-21 21:04 Jay Cliburn
2007-01-23 5:57 ` Jeff Garzik
0 siblings, 1 reply; 5+ messages in thread
From: Jay Cliburn @ 2007-01-21 21:04 UTC (permalink / raw)
To: jeff; +Cc: shemminger, csnook, hch, netdev, linux-kernel, atl1-devel
This is the latest submittal of the patchset providing support for the
Attansic L1 gigabit ethernet adapter. This patchset is built against
kernel version 2.6.20-rc5.
This version incorporates all comments from:
Christoph Hellwig:
http://lkml.org/lkml/2007/1/11/43
http://lkml.org/lkml/2007/1/11/45
http://lkml.org/lkml/2007/1/11/48
http://lkml.org/lkml/2007/1/11/49
Jeff Garzik:
http://lkml.org/lkml/2007/1/18/233
Many thanks to both for reviewing the driver.
The monolithic version of this patchset may be found at:
ftp://hogchain.net/pub/linux/attansic/kernel_driver/atl1-2.0.5-linux-2.6.20.rc5.patch.bz2
As a reminder, this driver is a modified version of the Attansic reference
driver for the L1 ethernet adapter. Attansic has granted permission for
its inclusion in the mainline kernel.
This patchset contains:
drivers/net/Kconfig | 11 +
drivers/net/Makefile | 1 +
drivers/net/atl1/Makefile | 2 +
drivers/net/atl1/atl1.h | 288 +++++
drivers/net/atl1/atl1_ethtool.c | 436 +++++++
drivers/net/atl1/atl1_hw.c | 728 ++++++++++++
drivers/net/atl1/atl1_hw.h | 965 +++++++++++++++
drivers/net/atl1/atl1_main.c | 2490 ++++++++++++++++++++++++++++++++++++++++
drivers/net/atl1/atl1_param.c | 223 ++++
9 files changed, 5144 insertions(+), 0 deletions(-)
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2007-01-23 21:28 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-11 0:39 [PATCH 0/4] atl1: Attansic L1 ethernet driver Jay Cliburn
2007-01-21 21:04 Jay Cliburn
2007-01-23 5:57 ` Jeff Garzik
2007-01-23 16:42 ` Jay Cliburn
2007-01-23 21:27 ` Jeff Garzik
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).