1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
|
/*
* Copyright (c) 2018, 2019 Nicira, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef NETDEV_AFXDP_H
#define NETDEV_AFXDP_H 1
#ifdef HAVE_AF_XDP
#include <stdint.h>
#include <stdbool.h>
/* These functions are Linux AF_XDP specific, so they should be used directly
* only by Linux-specific code. */
enum afxdp_mode {
OVS_AF_XDP_MODE_UNSPEC,
OVS_AF_XDP_MODE_BEST_EFFORT,
OVS_AF_XDP_MODE_NATIVE_ZC,
OVS_AF_XDP_MODE_NATIVE,
OVS_AF_XDP_MODE_GENERIC,
OVS_AF_XDP_MODE_MAX,
};
struct dp_packet;
struct dp_packet_batch;
struct netdev;
struct netdev_afxdp_tx_lock;
struct netdev_custom_stats;
struct netdev_rxq;
struct netdev_stats;
struct smap;
struct xdp_umem;
struct xsk_socket_info;
int netdev_afxdp_rxq_construct(struct netdev_rxq *rxq_);
void netdev_afxdp_rxq_destruct(struct netdev_rxq *rxq_);
int netdev_afxdp_construct(struct netdev *netdev_);
void netdev_afxdp_destruct(struct netdev *netdev_);
int netdev_afxdp_verify_mtu_size(const struct netdev *netdev, int mtu);
int netdev_afxdp_rxq_recv(struct netdev_rxq *rxq_,
struct dp_packet_batch *batch,
int *qfill);
int netdev_afxdp_batch_send(struct netdev *netdev_, int qid,
struct dp_packet_batch *batch,
bool concurrent_txq);
int netdev_afxdp_set_config(struct netdev *netdev, const struct smap *args,
char **errp);
int netdev_afxdp_get_config(const struct netdev *netdev, struct smap *args);
int netdev_afxdp_get_stats(const struct netdev *netdev_,
struct netdev_stats *stats);
int netdev_afxdp_get_status(const struct netdev *netdev, struct smap *args);
int netdev_afxdp_get_custom_stats(const struct netdev *netdev,
struct netdev_custom_stats *custom_stats);
void free_afxdp_buf(struct dp_packet *p);
int netdev_afxdp_reconfigure(struct netdev *netdev);
void signal_remove_xdp(struct netdev *netdev);
#else /* !HAVE_AF_XDP */
#include "openvswitch/compiler.h"
struct dp_packet;
static inline void
free_afxdp_buf(struct dp_packet *p OVS_UNUSED)
{
/* Nothing. */
}
#endif /* HAVE_AF_XDP */
#endif /* netdev-afxdp.h */
|