From: Jan Beulich Date: Tue, 10 Jan 2017 10:46:59 +0000 (+0000) Subject: xenstore: bump TDB_VERSION X-Git-Tag: archive/raspbian/4.11.1-1+rpi1~1^2~66^2~3026 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=9d81162fd2c69b5c9279670c8739d891cf7571da;p=xen.git xenstore: bump TDB_VERSION Commit 9e49dcf67f ("xenstore: add per-node generation counter) changed the TDB layout, which - in order to not break older xenstored running on the same system - need to be accompanied by a version bump. Signed-off-by: Jan Beulich Acked-by: Juergen Gross Acked-by: Wei Liu --- diff --git a/tools/xenstore/tdb.c b/tools/xenstore/tdb.c index 0bb53a949c..e26900ee34 100644 --- a/tools/xenstore/tdb.c +++ b/tools/xenstore/tdb.c @@ -54,7 +54,7 @@ #endif #define TDB_MAGIC_FOOD "TDB file\n" -#define TDB_VERSION (0x26011967 + 6) +#define TDB_VERSION (0x26011967 + 7) #define TDB_MAGIC (0x26011999U) #define TDB_FREE_MAGIC (~TDB_MAGIC) #define TDB_DEAD_MAGIC (0xFEE1DEAD)