All of lore.kernel.org
 help / color / mirror / Atom feed
From: Brelinski, TonyX <tonyx.brelinski@intel.com>
To: intel-wired-lan@osuosl.org
Subject: [Intel-wired-lan] [v4, 10/15] ice: Implement transmit and NAPI support
Date: Fri, 23 Mar 2018 22:50:21 +0000	[thread overview]
Message-ID: <C25D919FD1849B409D8D987DDC7FCD261789F183@ORSMSX109.amr.corp.intel.com> (raw)
In-Reply-To: <20180320145819.19133-11-anirudh.venkataramanan@intel.com>

> -----Original Message-----
> From: Anirudh Venkataramanan
> [mailto:anirudh.venkataramanan at intel.com]
> Sent: Tuesday, March 20, 2018 7:58 AM
> To: intel-wired-lan at lists.osuosl.org
> Subject: [v4,10/15] ice: Implement transmit and NAPI support
> 
> This patch implements ice_start_xmit (the handler for ndo_start_xmit) and
> related functions. ice_start_xmit ultimately calls ice_tx_map, where the Tx
> descriptor is built and posted to the hardware by bumping the ring tail.
> 
> This patch also implements ice_napi_poll, which is invoked when there's an
> interrupt on the VSI's queues. The interrupt can be due to either a
> completed Tx or an Rx event. In case of a completed Tx/Rx event, resources
> are reclaimed. Additionally, in case of an Rx event, the skb is fetched and
> passed up to the network stack.
> 
> Signed-off-by: Anirudh Venkataramanan
> <anirudh.venkataramanan@intel.com>
> ---
>  drivers/net/ethernet/intel/ice/ice.h           |    1 +
>  drivers/net/ethernet/intel/ice/ice_lan_tx_rx.h |   46 ++
>  drivers/net/ethernet/intel/ice/ice_main.c      |   55 ++
>  drivers/net/ethernet/intel/ice/ice_txrx.c      | 1026
> +++++++++++++++++++++++-
>  drivers/net/ethernet/intel/ice/ice_txrx.h      |   45 ++
>  5 files changed, 1171 insertions(+), 2 deletions(-)

Tested-by: Tony Brelinski <tonyx.brelinski@intel.com>



  reply	other threads:[~2018-03-23 22:50 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-20 14:58 [Intel-wired-lan] [PATCH v4 00/15] Add ice driver Anirudh Venkataramanan
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 01/15] ice: Add basic driver framework for Intel(R) E800 Series Anirudh Venkataramanan
2018-03-23 22:34   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 02/15] ice: Add support for control queues Anirudh Venkataramanan
2018-03-23 22:34   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 03/15] ice: Start hardware initialization Anirudh Venkataramanan
2018-03-23 22:35   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 04/15] ice: Get switch config, scheduler config and device capabilities Anirudh Venkataramanan
2018-03-23 22:28   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 05/15] ice: Get MAC/PHY/link info and scheduler topology Anirudh Venkataramanan
2018-03-23 22:37   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 06/15] ice: Initialize PF and setup miscellaneous interrupt Anirudh Venkataramanan
2018-03-23 22:39   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 07/15] ice: Add support for VSI allocation and deallocation Anirudh Venkataramanan
2018-03-23 22:42   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 08/15] ice: Add support for switch filter programming Anirudh Venkataramanan
2018-03-23 22:47   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 09/15] ice: Configure VSIs for Tx/Rx Anirudh Venkataramanan
2018-03-23 22:48   ` [Intel-wired-lan] [v4,09/15] " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 10/15] ice: Implement transmit and NAPI support Anirudh Venkataramanan
2018-03-23 22:50   ` Brelinski, TonyX [this message]
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 11/15] ice: Add support for VLANs and offloads Anirudh Venkataramanan
2018-03-23 23:07   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 12/15] ice: Add stats and ethtool support Anirudh Venkataramanan
2018-03-23 23:08   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 13/15] ice: Update Tx scheduler tree for VSI multi-Tx queue support Anirudh Venkataramanan
2018-03-23 23:09   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 14/15] ice: Support link events, reset and rebuild Anirudh Venkataramanan
2018-03-23 23:43   ` [Intel-wired-lan] [v4, " Brelinski, TonyX
2018-03-20 14:58 ` [Intel-wired-lan] [PATCH v4 15/15] ice: Implement filter sync, NDO operations and bump version Anirudh Venkataramanan
2018-03-23 23:25   ` [Intel-wired-lan] [v4, " Brelinski, TonyX

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=C25D919FD1849B409D8D987DDC7FCD261789F183@ORSMSX109.amr.corp.intel.com \
    --to=tonyx.brelinski@intel.com \
    --cc=intel-wired-lan@osuosl.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.