2018-01-10 01:17:10 -08:00
|
|
|
/* SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
* Copyright 2008-2017 Cisco Systems, Inc. All rights reserved.
|
2014-11-25 22:56:42 +05:30
|
|
|
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _VNIC_RSS_H_
|
|
|
|
#define _VNIC_RSS_H_
|
|
|
|
|
|
|
|
/* RSS key array */
|
|
|
|
union vnic_rss_key {
|
|
|
|
struct {
|
|
|
|
u8 b[10];
|
|
|
|
u8 b_pad[6];
|
|
|
|
} key[4];
|
|
|
|
u64 raw[8];
|
|
|
|
};
|
|
|
|
|
|
|
|
/* RSS cpu array */
|
|
|
|
union vnic_rss_cpu {
|
|
|
|
struct {
|
|
|
|
u8 b[4];
|
|
|
|
u8 b_pad[4];
|
|
|
|
} cpu[32];
|
|
|
|
u64 raw[32];
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif /* _VNIC_RSS_H_ */
|