mirror of
https://github.com/torvalds/linux.git
synced 2026-05-05 06:52:34 -04:00
It is suboptimal to attempt skb linearization from ndo_start_xmit() if a gso skb has pathological layout, or if host stack does not have access to the payload (TCP direct). Linearization of large skbs can also fail under memory pressure. We should instead have an ndo_features_check() so that we can fallback to GSO, which is supported even for TCP direct, and generally much more efficient (no payload copy). Signed-off-by: Eric Dumazet <edumazet@google.com> Cc: Bailey Forrest <bcf@google.com> Cc: Willem de Bruijn <willemb@google.com> Cc: Jeroen de Borst <jeroendb@google.com> Cc: Praveen Kaligineedi <pkaligineedi@google.com> Cc: Shailend Chand <shailend@google.com> Cc: Ziwei Xiao <ziweixiao@google.com> Reviewed-by: Willem de Bruijn <willemb@google.com> Signed-off-by: David S. Miller <davem@davemloft.net>
97 lines
2.9 KiB
C
97 lines
2.9 KiB
C
/* SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
* Google virtual Ethernet (gve) driver
|
|
*
|
|
* Copyright (C) 2015-2021 Google, Inc.
|
|
*/
|
|
|
|
#ifndef _GVE_DQO_H_
|
|
#define _GVE_DQO_H_
|
|
|
|
#include "gve_adminq.h"
|
|
|
|
#define GVE_ITR_ENABLE_BIT_DQO BIT(0)
|
|
#define GVE_ITR_CLEAR_PBA_BIT_DQO BIT(1)
|
|
#define GVE_ITR_NO_UPDATE_DQO (3 << 3)
|
|
|
|
#define GVE_ITR_INTERVAL_DQO_SHIFT 5
|
|
#define GVE_ITR_INTERVAL_DQO_MASK ((1 << 12) - 1)
|
|
|
|
#define GVE_TX_IRQ_RATELIMIT_US_DQO 50
|
|
#define GVE_RX_IRQ_RATELIMIT_US_DQO 20
|
|
#define GVE_MAX_ITR_INTERVAL_DQO (GVE_ITR_INTERVAL_DQO_MASK * 2)
|
|
|
|
/* Timeout in seconds to wait for a reinjection completion after receiving
|
|
* its corresponding miss completion.
|
|
*/
|
|
#define GVE_REINJECT_COMPL_TIMEOUT 1
|
|
|
|
/* Timeout in seconds to deallocate the completion tag for a packet that was
|
|
* prematurely freed for not receiving a valid completion. This should be large
|
|
* enough to rule out the possibility of receiving the corresponding valid
|
|
* completion after this interval.
|
|
*/
|
|
#define GVE_DEALLOCATE_COMPL_TIMEOUT 60
|
|
|
|
netdev_tx_t gve_tx_dqo(struct sk_buff *skb, struct net_device *dev);
|
|
netdev_features_t gve_features_check_dqo(struct sk_buff *skb,
|
|
struct net_device *dev,
|
|
netdev_features_t features);
|
|
bool gve_tx_poll_dqo(struct gve_notify_block *block, bool do_clean);
|
|
int gve_rx_poll_dqo(struct gve_notify_block *block, int budget);
|
|
int gve_tx_alloc_rings_dqo(struct gve_priv *priv);
|
|
void gve_tx_free_rings_dqo(struct gve_priv *priv);
|
|
int gve_rx_alloc_rings_dqo(struct gve_priv *priv);
|
|
void gve_rx_free_rings_dqo(struct gve_priv *priv);
|
|
int gve_clean_tx_done_dqo(struct gve_priv *priv, struct gve_tx_ring *tx,
|
|
struct napi_struct *napi);
|
|
void gve_rx_post_buffers_dqo(struct gve_rx_ring *rx);
|
|
void gve_rx_write_doorbell_dqo(const struct gve_priv *priv, int queue_idx);
|
|
|
|
static inline void
|
|
gve_tx_put_doorbell_dqo(const struct gve_priv *priv,
|
|
const struct gve_queue_resources *q_resources, u32 val)
|
|
{
|
|
u64 index;
|
|
|
|
index = be32_to_cpu(q_resources->db_index);
|
|
iowrite32(val, &priv->db_bar2[index]);
|
|
}
|
|
|
|
/* Builds register value to write to DQO IRQ doorbell to enable with specified
|
|
* ITR interval.
|
|
*/
|
|
static inline u32 gve_setup_itr_interval_dqo(u32 interval_us)
|
|
{
|
|
u32 result = GVE_ITR_ENABLE_BIT_DQO;
|
|
|
|
/* Interval has 2us granularity. */
|
|
interval_us >>= 1;
|
|
|
|
interval_us &= GVE_ITR_INTERVAL_DQO_MASK;
|
|
result |= (interval_us << GVE_ITR_INTERVAL_DQO_SHIFT);
|
|
|
|
return result;
|
|
}
|
|
|
|
static inline void
|
|
gve_write_irq_doorbell_dqo(const struct gve_priv *priv,
|
|
const struct gve_notify_block *block, u32 val)
|
|
{
|
|
u32 index = be32_to_cpu(*block->irq_db_index);
|
|
|
|
iowrite32(val, &priv->db_bar2[index]);
|
|
}
|
|
|
|
/* Sets interrupt throttling interval and enables interrupt
|
|
* by writing to IRQ doorbell.
|
|
*/
|
|
static inline void
|
|
gve_set_itr_coalesce_usecs_dqo(struct gve_priv *priv,
|
|
struct gve_notify_block *block,
|
|
u32 usecs)
|
|
{
|
|
gve_write_irq_doorbell_dqo(priv, block,
|
|
gve_setup_itr_interval_dqo(usecs));
|
|
}
|
|
#endif /* _GVE_DQO_H_ */
|