f-stack/dpdk/drivers/net/enic/base/vnic_rss.h

28 lines
483 B
C
Raw Normal View History

2019-06-25 11:12:58 +00:00
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright 2008-2017 Cisco Systems, Inc. All rights reserved.
2017-04-21 10:43:26 +00:00
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
*/
#ifndef _VNIC_RSS_H_
#define _VNIC_RSS_H_
/* RSS key array */
union vnic_rss_key {
struct {
2021-02-05 08:48:47 +00:00
uint8_t b[10];
uint8_t b_pad[6];
2017-04-21 10:43:26 +00:00
} key[4];
2021-02-05 08:48:47 +00:00
uint64_t raw[8];
2017-04-21 10:43:26 +00:00
};
/* RSS cpu array */
union vnic_rss_cpu {
struct {
2021-02-05 08:48:47 +00:00
uint8_t b[4];
uint8_t b_pad[4];
2017-04-21 10:43:26 +00:00
} cpu[32];
2021-02-05 08:48:47 +00:00
uint64_t raw[32];
2017-04-21 10:43:26 +00:00
};
#endif /* _VNIC_RSS_H_ */