# HG changeset patch # User Gregory Szorc # Date 1537382285 25200 # Node ID e6d3d39cc1c78aff00079cbf820215c71e836dd6 # Parent 0cb3e02e1d1bf21b87c8a8b7d4c3cc2065b211a7 revlog: use proper version comparison during verify Verify appears to want to compare the changelog's revlog version number with the version number of filelogs and error if they are different. But what it was actually doing was comparing the full 32-bit header integer, which contains 2 shorts: 1 for the revlog version number and 1 for feature flags. This commit tweaks the verification code so it only looks at the version number component of the header and emits a warning if they differ. The new code is more robust because it accounts for future revlog version numbers without them needing to be special cased. Differential Revision: https://phab.mercurial-scm.org/D4704 diff -r 0cb3e02e1d1b -r e6d3d39cc1c7 mercurial/revlog.py --- a/mercurial/revlog.py Wed Sep 19 11:22:56 2018 -0700 +++ b/mercurial/revlog.py Wed Sep 19 11:38:05 2018 -0700 @@ -2600,10 +2600,10 @@ if di: yield revlogproblem(error=_('index contains %d extra bytes') % di) - if self.version != REVLOGV0: - if not state['revlogv1']: - yield revlogproblem(warning=_("warning: `%s' uses revlog " - "format 1") % self.indexfile) - elif state['revlogv1']: - yield revlogproblem(warning=_("warning: `%s' uses revlog " - "format 0") % self.indexfile) + version = self.version & 0xFFFF + + # The verifier tells us what version revlog we should be. + if version != state['expectedversion']: + yield revlogproblem( + warning=_("warning: '%s' uses revlog format %d; expected %d") % + (self.indexfile, version, state['expectedversion'])) diff -r 0cb3e02e1d1b -r e6d3d39cc1c7 mercurial/verify.py --- a/mercurial/verify.py Wed Sep 19 11:22:56 2018 -0700 +++ b/mercurial/verify.py Wed Sep 19 11:38:05 2018 -0700 @@ -342,7 +342,8 @@ storefiles.add(_normpath(f)) state = { - 'revlogv1': self.revlogv1, + # TODO this assumes revlog storage for changelog. + 'expectedversion': self.repo.changelog.version & 0xFFFF } files = sorted(set(filenodes) | set(filelinkrevs))