brintos

brintos / linux-shallow public Read only

0
0
Text · 991 B · ff6d80c Raw
25 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/****************************************************************************3 * Driver for Solarflare network controllers and boards4 * Copyright 2019 Solarflare Communications Inc.5 * Copyright 2019-2022 Xilinx, Inc.6 *7 * This program is free software; you can redistribute it and/or modify it8 * under the terms of the GNU General Public License version 2 as published9 * by the Free Software Foundation, incorporated herein by reference.10 */11 12#ifndef MCDI_PCOL_MAE_H13#define MCDI_PCOL_MAE_H14/* MCDI definitions for Match-Action Engine functionality, that are15 * missing from the main mcdi_pcol.h16 */17 18/* MC_CMD_MAE_COUNTER_LIST_ALLOC is not (yet) a released API, but the19 * following value is needed as an argument to MC_CMD_MAE_ACTION_SET_ALLOC.20 */21/* enum: A counter ID that is guaranteed never to represent a real counter */22#define          MC_CMD_MAE_COUNTER_LIST_ALLOC_OUT_COUNTER_LIST_ID_NULL 0xffffffff23 24#endif /* MCDI_PCOL_MAE_H */25