~n-muench/ubuntu/oneiric/open-vm-tools/open-vm-tools.fix-836277

« back to all changes in this revision

Viewing changes to modules/freebsd/vmblock/vm_basic_types.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Baumann
  • Date: 2008-11-20 21:56:00 UTC
  • mfrom: (1.1.3 upstream) (2.2.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20081120215600-0jujiv17a2ja92xu
Tags: 2008.11.18-130226-1
* Replacing obsolete dh_clean -k with dh_prep.
* Merging upstream version 2008.11.18-130226.
* Updating debian directory for addition of pvscsi and vmxnet3 modules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
377
377
typedef unsigned  MemHandle;
378
378
typedef int32     World_ID;
379
379
 
380
 
#define INVALID_WORLD_ID ((World_ID)0)
 
380
#define INVALID_WORLD_ID ((World_ID)-1)
381
381
 
382
382
typedef World_ID User_CartelID;
383
383
#define INVALID_CARTEL_ID INVALID_WORLD_ID
389
389
#define INVALID_CARTELGROUP_ID INVALID_CARTEL_ID
390
390
 
391
391
typedef uint32 Worldlet_ID;
392
 
#define INVALID_WORLDLET_ID ((Worldlet_ID)0)
 
392
#define INVALID_WORLDLET_ID ((Worldlet_ID)-1)
393
393
 
394
394
/* world page number */
395
395
typedef uint32    WPN;
482
482
#define INVALID_MPN  ((MPN)-1)
483
483
#define MEMREF_MPN   ((MPN)-2)
484
484
#define RESERVED_MPN ((MPN) 0)
485
 
/* Support 39 bits of address space, minus one page. */
486
 
#define MAX_MPN      ((MPN) 0x07ffffff)
 
485
/* Support 43 bits of address space. */
 
486
#define MAX_MPN      ((MPN)0x7fffffff)
487
487
 
488
488
#define INVALID_LPN ((LPN)-1)
489
489
#define INVALID_VPN ((VPN)-1)