Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
upt1_defs.h
Go to the documentation of this file.
1 /*
2  * Linux driver for VMware's vmxnet3 ethernet NIC.
3  *
4  * Copyright (C) 2008-2009, VMware, Inc. All Rights Reserved.
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; version 2 of the License and no later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, GOOD TITLE or
13  * NON INFRINGEMENT. See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19  *
20  * The full GNU General Public License is included in this distribution in
21  * the file called "COPYING".
22  *
23  * Maintained by: Shreyas Bhatewara <[email protected]>
24  *
25  */
26 
27 #ifndef _UPT1_DEFS_H
28 #define _UPT1_DEFS_H
29 
30 struct UPT1_TxStats {
31  u64 TSOPktsTxOK; /* TSO pkts post-segmentation */
41 };
42 
43 struct UPT1_RxStats {
44  u64 LROPktsRxOK; /* LRO pkts */
45  u64 LROBytesRxOK; /* bytes from LRO pkts */
46  /* the following counters are for pkts from the wire, i.e., pre-LRO */
55 };
56 
57 /* interrupt moderation level */
58 enum {
59  UPT1_IML_NONE = 0, /* no interrupt moderation */
60  UPT1_IML_HIGHEST = 7, /* least intr generated */
61  UPT1_IML_ADAPTIVE = 8, /* adpative intr moderation */
62 };
63 /* values for UPT1_RSSConf.hashFunc */
64 enum {
70 };
71 
72 enum {
75 };
76 
77 #define UPT1_RSS_MAX_KEY_SIZE 40
78 #define UPT1_RSS_MAX_IND_TABLE_SIZE 128
79 
80 struct UPT1_RSSConf {
87 };
88 
89 /* features */
90 enum {
91  UPT1_F_RXCSUM = cpu_to_le64(0x0001), /* rx csum verification */
93  UPT1_F_RXVLAN = cpu_to_le64(0x0004), /* VLAN tag stripping */
95 };
96 #endif