Based on the normalized pattern: this program is free software you may redistribute it and/or modify it under the terms of the gnu general public license as published by the free software foundation version 2 of the license the software is provided as is without warranty of any kind express or implied including but not limited to the warranties of merchantability fitness for a particular purpose and noninfringement in no event shall the authors or copyright holders be liable for any claim damages or other liability whether in an action of contract tort or otherwise arising from out of or in connection with the software or the use or other dealings in the software extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
33 lines
616 B
C
33 lines
616 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright 2008-2010 Cisco Systems, Inc. All rights reserved.
|
|
* Copyright 2007 Nuova Systems, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _VNIC_RSS_H_
|
|
#define _VNIC_RSS_H_
|
|
|
|
/* RSS key array */
|
|
|
|
#define ENIC_RSS_BYTES_PER_KEY 10
|
|
#define ENIC_RSS_KEYS 4
|
|
#define ENIC_RSS_LEN (ENIC_RSS_BYTES_PER_KEY * ENIC_RSS_KEYS)
|
|
|
|
union vnic_rss_key {
|
|
struct {
|
|
u8 b[ENIC_RSS_BYTES_PER_KEY];
|
|
u8 b_pad[6];
|
|
} key[ENIC_RSS_KEYS];
|
|
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_ */
|