]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/netif-sriov.h
cryptenroll: allow to use a public key on a token
[thirdparty/systemd.git] / src / shared / netif-sriov.h
CommitLineData
b4fd34d8
YW
1/* SPDX-License-Identifier: LGPL-2.1-or-later */
2#pragma once
3
4#include <linux/if_link.h>
5
41ce9d76
YW
6#include "sd-device.h"
7
b4fd34d8
YW
8#include "conf-parser.h"
9#include "ether-addr-util.h"
10#include "hashmap.h"
11
12typedef enum SRIOVLinkState {
13 SR_IOV_LINK_STATE_AUTO = IFLA_VF_LINK_STATE_AUTO,
14 SR_IOV_LINK_STATE_ENABLE = IFLA_VF_LINK_STATE_ENABLE,
15 SR_IOV_LINK_STATE_DISABLE = IFLA_VF_LINK_STATE_DISABLE,
16 _SR_IOV_LINK_STATE_MAX,
17 _SR_IOV_LINK_STATE_INVALID = -EINVAL,
18} SRIOVLinkState;
19
20typedef struct SRIOV {
21 ConfigSection *section;
22 OrderedHashmap *sr_iov_by_section;
23
24 uint32_t vf; /* 0 - 2147483646 */
25 uint32_t vlan; /* 0 - 4095, 0 disables VLAN filter */
26 uint32_t qos;
27 uint16_t vlan_proto; /* ETH_P_8021Q or ETH_P_8021AD */
28 int vf_spoof_check_setting;
29 int query_rss;
30 int trust;
31 SRIOVLinkState link_state;
32 struct ether_addr mac;
33} SRIOV;
34
35SRIOV *sr_iov_free(SRIOV *sr_iov);
bee8fc36
YW
36void sr_iov_hash_func(const SRIOV *sr_iov, struct siphash *state);
37int sr_iov_compare_func(const SRIOV *s1, const SRIOV *s2);
b4fd34d8 38int sr_iov_set_netlink_message(SRIOV *sr_iov, sd_netlink_message *req);
41ce9d76
YW
39int sr_iov_get_num_vfs(sd_device *device, uint32_t *ret);
40int sr_iov_set_num_vfs(sd_device *device, uint32_t num_vfs, OrderedHashmap *sr_iov_by_section);
41int sr_iov_drop_invalid_sections(uint32_t num_vfs, OrderedHashmap *sr_iov_by_section);
b4fd34d8
YW
42
43DEFINE_SECTION_CLEANUP_FUNCTIONS(SRIOV, sr_iov_free);
44
45CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_uint32);
46CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_boolean);
47CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_link_state);
48CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_vlan_proto);
49CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_mac);
41ce9d76 50CONFIG_PARSER_PROTOTYPE(config_parse_sr_iov_num_vfs);