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

« back to all changes in this revision

Viewing changes to modules/freebsd/vmmemctl/balloon_def.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-10-23 15:32:00 UTC
  • mfrom: (1.1.2 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20081023153200-gc1bfx89hj35c799
Tags: 2008.10.10-123053-2
* Correcting typo in dh_installinit call.
* Downgrading depends on module-assistant to recommends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
71
71
#define BALLOON_ERROR_RESET             (7)
72
72
#define BALLOON_ERROR_BUSY              (8)
73
73
 
74
 
/*
75
 
 * types
76
 
 */
77
 
 
78
 
typedef struct {
79
 
   // platform -> VMM
80
 
   uint32 target;       // target balloon size (in pages)
81
 
 
82
 
   // platform <- VMM
83
 
   uint32 size;         // current balloon size (in pages)
84
 
   uint32 nOps;         // stats: operation count
85
 
   uint32 nReset;       // stats: reset count
86
 
   uint32 guestType;    // guest OS identifier
87
 
   uint32 maxSize;      // predicted max balloon size (in pages)
88
 
} Balloon_BalloonInfo;
89
 
 
90
74
#endif  /* _BALLOON_DEF_H */