New upstream version 18.02
[deb_dpdk.git] / drivers / net / sfc / sfc_filter.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  *
3  * Copyright (c) 2017-2018 Solarflare Communications Inc.
4  * All rights reserved.
5  *
6  * This software was jointly developed between OKTET Labs (under contract
7  * for Solarflare) and Solarflare Communications, Inc.
8  */
9
10 #ifndef _SFC_FILTER_H
11 #define _SFC_FILTER_H
12
13 #include "efx.h"
14
15 #include "sfc_flow.h"
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 struct sfc_filter {
22         /** Number of elements in match_supported array */
23         size_t                          supported_match_num;
24         /** Driver cache of supported filter match masks */
25         uint32_t                        *supported_match;
26         /** List of flow rules */
27         struct sfc_flow_list            flow_list;
28 };
29
30 struct sfc_adapter;
31
32 int sfc_filter_attach(struct sfc_adapter *sa);
33 void sfc_filter_detach(struct sfc_adapter *sa);
34
35 boolean_t sfc_filter_is_match_supported(struct sfc_adapter *sa, uint32_t match);
36
37 #ifdef __cplusplus
38 }
39 #endif
40 #endif /* _SFC_FILTER_H */