...by encoding the driver major version in the upper byte of the
revision.
This clearly implies that any future change in the driver major version
will start a new PDO namespace, but that it almost certainly the correct
thing to do in that case.
Signed-off-by: Paul Durrant <paul.durrant@citrix.com>
#include "dbg_print.h"
#include "assert.h"
#include "util.h"
+#include "version.h"
#define PDO_TAG 'ODP'
ULONG Revision;
NTSTATUS status;
- Revision = 0;
+ Revision = MAJOR_VERSION << 24;
// Enumerate all possible combinations of exported interface versions since v1
// and add a PDO revsion for each combination that's currently supported. Note that
"RANGE_SET v%u "
"CACHE v%u "
"GNTTAB v%u "
- "EMULATED v%u\n",
+ "EMULATED v%u "
"UNPLUG v%u\n",
Revision,
Suspend,