brintos

brintos / linux-shallow public Read only

0
0
Text · 616 B · 4dcf0e6 Raw
34 lines · c
1/* SPDX-License-Identifier: GPL-2.0-only */2/*3 * Copyright 2008-2010 Cisco Systems, Inc.  All rights reserved.4 * Copyright 2007 Nuova Systems, Inc.  All rights reserved.5 */6 7#ifndef _VNIC_RSS_H_8#define _VNIC_RSS_H_9 10/* RSS key array */11 12#define ENIC_RSS_BYTES_PER_KEY	1013#define ENIC_RSS_KEYS		414#define ENIC_RSS_LEN		(ENIC_RSS_BYTES_PER_KEY * ENIC_RSS_KEYS)15 16union vnic_rss_key {17	struct {18		u8 b[ENIC_RSS_BYTES_PER_KEY];19		u8 b_pad[6];20	} key[ENIC_RSS_KEYS];21	u64 raw[8];22};23 24/* RSS cpu array */25union vnic_rss_cpu {26	struct {27		u8 b[4] ;28		u8 b_pad[4];29	} cpu[32];30	u64 raw[32];31};32 33#endif /* _VNIC_RSS_H_ */34