From: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
To: davem@davemloft.net
Cc: e1000-devel@lists.sourceforge.net, netdev@vger.kernel.org,
jesse.brandeburg@intel.com, gospo@redhat.com,
sassmann@redhat.com
Subject: Re: [net-next 0/8][pull request] Intel Wired LAN Driver Updates
Date: Thu, 05 Sep 2013 22:58:38 -0700 [thread overview]
Message-ID: <1378447118.2048.64.camel@jtkirshe-mobl> (raw)
In-Reply-To: <1378446228-13815-1-git-send-email-jeffrey.t.kirsher@intel.com>
[-- Attachment #1.1: Type: text/plain, Size: 4024 bytes --]
On Thu, 2013-09-05 at 22:43 -0700, Jeff Kirsher wrote:
> This series implements the new i40e driver for Intel's upcoming
> Intel(R) Ethernet Controller XL710 Family of devices.
>
> V1: initial send
> V2: each patch has individual comments, in general, feedback from the
> list was applied and addressed. Many changes due to internal
> review
> and coding as well.
> V3: many more individual comments addressed, thanks reviewers! Many
> other changes due to internal review and development.
> V4: addresses remaining community comments, mostly trivial edits.
> major sparse based cleanup of possible endian issues
> removal of most of __func__ references
> sizeof(*var) instead of sizeof(struct ...)
> change 'NULL ==' tests to !NULL
> implement xps
> use kernel bitshift macros (upper_32_bits, etc)
> V5: remove sysfs support from this set, will rearchitect
> changes from community comments
>
> Let me start by saying thanks and we appreciate any time spent by
> those of you who review and comment on this new driver, and we will
> attempt to address and respond to all issues brought to our attention.
>
> Jesse tried to break the patches up to ease review, but the series
> should
> apply and still be bisectable, as the last patch adds the driver to
> the kernel compile with CONFIG_I40E.
>
> This driver is for a brand new bit of silicon that has a different
> design than other Intel Ethernet silicon, and therefore needed a new
> driver.
>
> The hardware has quite a bit of capability and this driver is only
> meant to provide basic functionality at first. Future patches will
> continue to add functionality and bug fixes.
>
> This initial release is very early in the product cycle with the
> intent
> of getting initial support into the kernel before users have the
> hardware available to purchase. A software development manual is not
> ready yet but will be available when the hardware ships.
>
> To be clear, the driver development model and interaction with
> community submitted patches *will not be any different* than what
> we are currently doing today.
>
> This driver *does* use some code (as our previous drivers do) that is
> meant to be shared to different OS drivers. One of the following
> patches has the majority of this code in it, and is clearly called out
> in the commit message.
>
> An associated i40evf driver has been posted for review.
>
> List of tools we ran in preparation:
> way more sparse clean
> make W=1, W=2 clean
> checkpatch (almost) clean
> total: 1 errors, 4 warnings, 30595 lines checked
> NOTE: Ignored message types: LONG_LINE
> - issues have been addressed and the remainders
> are noise.
> codespell clean
> smatch (almost) clean with a couple minor warnings
> coccicheck clean
> namespacecheck clean
> allmodconfig clean
> ppc64 build clean (unable to test yet)
>
> This driver is a team effort, thank you to Joseph Gasparakis,
> Shannon Nelson, Anjali Singhai-Jain, Mitch Williams, Neerav
> Parikh, Vasu Dev, Kavindya Deegala, Yi Zou, and PJ Waskiewicz.
>
> TODO (known issues)
> BQL implementation
> finish rtnl_stat64 locking (we have a patch but debugging it)
>
> The following are changes since commit
> 2e032852245b3dcfe5461d7353e34eb6da095ccf:
> Merge branch 'for-linus' of
> git://git.linaro.org/people/rmk/linux-arm
> and are available in the git repository at:
> git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-next
> master
>
> Jesse Brandeburg (8):
> i40e: main driver core
> i40e: transmit, receive, and NAPI
> i40e: driver ethtool core
> i40e: driver core headers
> i40e: implement virtual device interface
> i40e: init code and hardware support
> i40e: debugfs interface
> i40e: include i40e in kernel proper
Grrr... I sent v5 out and forgot to note it in the title. Sorry for the
spam, I will resend with the proper titles. :-(
[-- Attachment #1.2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
[-- Attachment #2: Type: text/plain, Size: 433 bytes --]
------------------------------------------------------------------------------
Learn the latest--Visual Studio 2012, SharePoint 2013, SQL 2012, more!
Discover the easy way to master current and previous Microsoft technologies
and advance your career. Get an incredible 1,500+ hours of step-by-step
tutorial videos with LearnDevNow. Subscribe today and save!
http://pubads.g.doubleclick.net/gampad/clk?id=58041391&iu=/4140/ostg.clktrk
[-- Attachment #3: Type: text/plain, Size: 257 bytes --]
_______________________________________________
E1000-devel mailing list
E1000-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/e1000-devel
To learn more about Intel® Ethernet, visit http://communities.intel.com/community/wired
next prev parent reply other threads:[~2013-09-06 5:58 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-06 5:43 [net-next 0/8][pull request] Intel Wired LAN Driver Updates Jeff Kirsher
2013-09-06 5:43 ` [net-next 1/8] i40e: main driver core Jeff Kirsher
2013-09-06 5:43 ` [net-next 2/8] i40e: transmit, receive, and NAPI Jeff Kirsher
2013-09-06 5:43 ` [net-next 3/8] i40e: driver ethtool core Jeff Kirsher
2013-09-06 5:43 ` [net-next 4/8] i40e: driver core headers Jeff Kirsher
2013-09-06 5:43 ` [net-next 5/8] i40e: implement virtual device interface Jeff Kirsher
2013-09-06 5:43 ` [net-next 6/8] i40e: init code and hardware support Jeff Kirsher
2013-09-06 5:43 ` [net-next 7/8] i40e: debugfs interface Jeff Kirsher
2013-09-06 5:43 ` [net-next 8/8] i40e: include i40e in kernel proper Jeff Kirsher
2013-09-06 5:58 ` Jeff Kirsher [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-01-01 0:53 [net-next 0/8][pull request] Intel Wired LAN Driver Updates Jeff Kirsher
2014-01-02 4:01 ` David Miller
2013-06-14 3:55 Jeff Kirsher
2013-04-26 4:57 Jeff Kirsher
2013-04-27 3:34 ` David Miller
2012-10-23 10:24 Jeff Kirsher
2012-10-23 17:28 ` David Miller
2012-09-17 4:15 Jeff Kirsher
2012-09-17 4:56 ` David Miller
2012-09-17 8:15 ` Jeff Kirsher
2012-08-31 5:16 Jeff Kirsher
2012-08-31 20:03 ` David Miller
2012-07-17 10:09 Jeff Kirsher
2012-07-17 10:22 ` David Miller
2012-05-04 10:35 Jeff Kirsher
2012-05-04 15:49 ` David Miller
2012-05-01 8:51 Jeff Kirsher
2011-11-16 12:51 Jeff Kirsher
2011-11-16 23:12 ` David Miller
2011-11-16 23:21 ` Jeff Kirsher
2011-11-16 23:32 ` David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1378447118.2048.64.camel@jtkirshe-mobl \
--to=jeffrey.t.kirsher@intel.com \
--cc=davem@davemloft.net \
--cc=e1000-devel@lists.sourceforge.net \
--cc=gospo@redhat.com \
--cc=jesse.brandeburg@intel.com \
--cc=netdev@vger.kernel.org \
--cc=sassmann@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).