Representors do not want to be subject to the PF's Ethernet address filters, since traffic from VFs will typically have a destination either elsewhere on the link segment or on an overlay network. So, create a dynamic m-port with promiscuous and all-multicast filters, and set it as the egress port of representor default rules. Since the m-port is an alias of the calling PF's own m-port, traffic will still be delivered to the PF's RXQs, but it will be subject to the VNRX filter rules installed on the dynamic m-port (specified by the v-port ID field of the filter spec). Signed-off-by: Edward Cree <ecree.xilinx@gmail.com> Signed-off-by: Jakub Kicinski <kuba@kernel.org>
42 lines
1.6 KiB
C
42 lines
1.6 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/****************************************************************************
|
|
* Driver for Solarflare network controllers and boards
|
|
* Copyright 2019 Solarflare Communications Inc.
|
|
* Copyright 2020-2022 Xilinx Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation, incorporated herein by reference.
|
|
*/
|
|
|
|
#ifndef EF100_MAE_H
|
|
#define EF100_MAE_H
|
|
/* MCDI interface for the ef100 Match-Action Engine */
|
|
|
|
#include "net_driver.h"
|
|
#include "tc.h"
|
|
#include "mcdi_pcol.h" /* needed for various MC_CMD_MAE_*_NULL defines */
|
|
|
|
int efx_mae_allocate_mport(struct efx_nic *efx, u32 *id, u32 *label);
|
|
int efx_mae_free_mport(struct efx_nic *efx, u32 id);
|
|
|
|
void efx_mae_mport_wire(struct efx_nic *efx, u32 *out);
|
|
void efx_mae_mport_uplink(struct efx_nic *efx, u32 *out);
|
|
void efx_mae_mport_vf(struct efx_nic *efx, u32 vf_id, u32 *out);
|
|
void efx_mae_mport_mport(struct efx_nic *efx, u32 mport_id, u32 *out);
|
|
|
|
int efx_mae_lookup_mport(struct efx_nic *efx, u32 selector, u32 *id);
|
|
|
|
int efx_mae_alloc_action_set(struct efx_nic *efx, struct efx_tc_action_set *act);
|
|
int efx_mae_free_action_set(struct efx_nic *efx, u32 fw_id);
|
|
|
|
int efx_mae_alloc_action_set_list(struct efx_nic *efx,
|
|
struct efx_tc_action_set_list *acts);
|
|
int efx_mae_free_action_set_list(struct efx_nic *efx,
|
|
struct efx_tc_action_set_list *acts);
|
|
|
|
int efx_mae_insert_rule(struct efx_nic *efx, const struct efx_tc_match *match,
|
|
u32 prio, u32 acts_id, u32 *id);
|
|
int efx_mae_delete_rule(struct efx_nic *efx, u32 id);
|
|
|
|
#endif /* EF100_MAE_H */
|