You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2015/10/15 23:09:37 UTC

svn commit: r1708893 - /subversion/trunk/subversion/libsvn_fs_x/fs.h

Author: stefan2
Date: Thu Oct 15 21:09:37 2015
New Revision: 1708893

URL: http://svn.apache.org/viewvc?rev=1708893&view=rev
Log:
Follow-up to r1708891: Fix build.

* subversion/libsvn_fs_x/fs.h
  (svn_fs_x__data_t): Add a field for the revprop generation.  Right now,
                      we don't need it to be remembered between FS API calls
                      but the code already sets it instead of using some
                      local variables.

Modified:
    subversion/trunk/subversion/libsvn_fs_x/fs.h

Modified: subversion/trunk/subversion/libsvn_fs_x/fs.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/fs.h?rev=1708893&r1=1708892&r2=1708893&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_fs_x/fs.h (original)
+++ subversion/trunk/subversion/libsvn_fs_x/fs.h Thu Oct 15 21:09:37 2015
@@ -295,6 +295,9 @@ typedef struct svn_fs_x__data_t
      rep key (revision/offset) to svn_stringbuf_t. */
   svn_cache__t *fulltext_cache;
 
+  /* Revprop generation number.  Will be -1 if it has to reread from disk. */
+  apr_int64_t revprop_generation;
+
   /* Revision property cache.  Maps from (rev,generation) to apr_hash_t. */
   svn_cache__t *revprop_cache;