~ubuntu-branches/ubuntu/quantal/open-vm-tools/quantal-201210021442

« back to all changes in this revision

Viewing changes to modules/shared/vmxnet/vmnet_def.h

  • Committer: Bazaar Package Importer
  • Author(s): Serge Hallyn
  • Date: 2011-03-31 14:20:05 UTC
  • mfrom: (1.4.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20110331142005-3n9red91p7ogkweo
Tags: 2011.03.28-387002-0ubuntu1
* Merge latest upstream git tag.  This has the unlocked_ioctl change
  needed to fix dkms build failures (LP: #727342)
* Changes in debian/rules:
  - work around a bug in toolbox/Makefile, where install-exec-hook is
    not happening.  This needs to get fixed the right way.
  - don't install 'vmware-user' which seems to no longer exist
  - move /etc/xdg into open-vm-toolbox (which should be done using .install)
* debian/open-vm-tools.init: add 'modprobe [-r] vmblock'. (LP: #332323)
* debian/rules and debian/open-vm-toolbox.lintian-overrides:
  - Make vmware-user-suid-wrapper suid-root (LP: #332323)

Show diffs side-by-side

added added

removed removed

Lines of Context:
40
40
#define _VMNET_DEF_H_
41
41
 
42
42
#define INCLUDE_ALLOW_USERLEVEL
 
43
#define INCLUDE_ALLOW_VMCORE
43
44
 
44
45
#define INCLUDE_ALLOW_MODULE
45
46
#define INCLUDE_ALLOW_VMK_MODULE
47
48
#define INCLUDE_ALLOW_DISTRIBUTE
48
49
#include "includeCheck.h"
49
50
 
 
51
#define VMNET_NAME_BUFFER_LEN  128 /* Increased for i18n. */
 
52
#define VMNET_COAL_SCHEME_NAME_LEN 16
 
53
 
 
54
 
50
55
/*
51
56
 * capabilities - not all of these are implemented in the virtual HW
52
57
 *                (eg VLAN support is in the virtual switch)  so even vlance 
77
82
#define VMNET_CAP_UPT          0x400000 /* Support UPT */
78
83
#define VMNET_CAP_RDONLY_INETHDRS 0x800000 /* Modifies inet headers for TSO/CSUm */
79
84
#define VMNET_CAP_NPA         0x1000000 /* Support NPA */
80
 
 
 
85
#define VMNET_CAP_DCB         0x2000000 /* Support DCB */
 
86
#define VMNET_CAP_OFFLOAD_8OFFSET 0x4000000 /* supports 8bit parameterized offsets */ 
 
87
#define VMNET_CAP_OFFLOAD_16OFFSET 0x8000000 /* supports 16bit parameterized offsets */ 
 
88
#define VMNET_CAP_IP6_CSUM_EXT_HDRS 0x10000000 /* support csum of ip6 ext hdrs */
 
89
#define VMNET_CAP_TSO6_EXT_HDRS 0x20000000 /* support TSO for ip6 ext hdrs */
 
90
#define VMNET_CAP_SCHED       0x40000000 /* compliant with network scheduling */
81
91
#endif // _VMNET_DEF_H_