File tree Expand file tree Collapse file tree 6 files changed +9
-6
lines changed Expand file tree Collapse file tree 6 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 2
2
#
3
3
# Linux driver for VMware's vmxnet3 ethernet NIC.
4
4
#
5
- # Copyright (C) 2007-2016 , VMware, Inc. All Rights Reserved.
5
+ # Copyright (C) 2007-2020 , VMware, Inc. All Rights Reserved.
6
6
#
7
7
# This program is free software; you can redistribute it and/or modify it
8
8
# under the terms of the GNU General Public License as published by the
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Linux driver for VMware's vmxnet3 ethernet NIC.
3
3
*
4
- * Copyright (C) 2008-2016 , VMware, Inc. All Rights Reserved.
4
+ * Copyright (C) 2008-2020 , VMware, Inc. All Rights Reserved.
5
5
*
6
6
* This program is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License as published by the
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Linux driver for VMware's vmxnet3 ethernet NIC.
3
3
*
4
- * Copyright (C) 2008-2016 , VMware, Inc. All Rights Reserved.
4
+ * Copyright (C) 2008-2020 , VMware, Inc. All Rights Reserved.
5
5
*
6
6
* This program is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License as published by the
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Linux driver for VMware's vmxnet3 ethernet NIC.
3
3
*
4
- * Copyright (C) 2008-2016 , VMware, Inc. All Rights Reserved.
4
+ * Copyright (C) 2008-2020 , VMware, Inc. All Rights Reserved.
5
5
*
6
6
* This program is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License as published by the
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Linux driver for VMware's vmxnet3 ethernet NIC.
3
3
*
4
- * Copyright (C) 2008-2016 , VMware, Inc. All Rights Reserved.
4
+ * Copyright (C) 2008-2020 , VMware, Inc. All Rights Reserved.
5
5
*
6
6
* This program is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License as published by the
Original file line number Diff line number Diff line change 1
1
/*
2
2
* Linux driver for VMware's vmxnet3 ethernet NIC.
3
3
*
4
- * Copyright (C) 2008-2016 , VMware, Inc. All Rights Reserved.
4
+ * Copyright (C) 2008-2020 , VMware, Inc. All Rights Reserved.
5
5
*
6
6
* This program is free software; you can redistribute it and/or modify it
7
7
* under the terms of the GNU General Public License as published by the
81
81
#define VMXNET3_RSS
82
82
#endif
83
83
84
+ #define VMXNET3_REV_4 3 /* Vmxnet3 Rev. 4 */
84
85
#define VMXNET3_REV_3 2 /* Vmxnet3 Rev. 3 */
85
86
#define VMXNET3_REV_2 1 /* Vmxnet3 Rev. 2 */
86
87
#define VMXNET3_REV_1 0 /* Vmxnet3 Rev. 1 */
@@ -412,6 +413,8 @@ struct vmxnet3_adapter {
412
413
(adapter->version >= VMXNET3_REV_2 + 1)
413
414
#define VMXNET3_VERSION_GE_3 (adapter ) \
414
415
(adapter->version >= VMXNET3_REV_3 + 1)
416
+ #define VMXNET3_VERSION_GE_4 (adapter ) \
417
+ (adapter->version >= VMXNET3_REV_4 + 1)
415
418
416
419
/* must be a multiple of VMXNET3_RING_SIZE_ALIGN */
417
420
#define VMXNET3_DEF_TX_RING_SIZE 512
You can’t perform that action at this time.
0 commit comments