Make the in-memory format aware of the stat_crc used by index-v5.
It is simply ignored by index version prior to v5.

Signed-off-by: Thomas Gummerer <t.gumme...@gmail.com>
---
 cache.h      |  1 +
 read-cache.c | 25 +++++++++++++++++++++++++
 2 files changed, 26 insertions(+)

diff --git a/cache.h b/cache.h
index c77cdbe..bfe3099 100644
--- a/cache.h
+++ b/cache.h
@@ -122,6 +122,7 @@ struct cache_entry {
        unsigned int ce_flags;
        unsigned int ce_namelen;
        unsigned char sha1[20];
+       uint32_t ce_stat_crc;
        struct cache_entry *next;
        struct cache_entry *dir_next;
        char name[FLEX_ARRAY]; /* more */
diff --git a/read-cache.c b/read-cache.c
index cdd8480..9d2bd62 100644
--- a/read-cache.c
+++ b/read-cache.c
@@ -51,6 +51,29 @@ void rename_index_entry_at(struct index_state *istate, int 
nr, const char *new_n
        add_index_entry(istate, new, 
ADD_CACHE_OK_TO_ADD|ADD_CACHE_OK_TO_REPLACE);
 }
 
+static uint32_t calculate_stat_crc(struct cache_entry *ce)
+{
+       unsigned int ctimens = 0;
+       uint32_t stat, stat_crc;
+
+       stat = htonl(ce->ce_ctime.sec);
+       stat_crc = crc32(0, (Bytef*)&stat, 4);
+#ifdef USE_NSEC
+       ctimens = ce->ce_ctime.nsec;
+#endif
+       stat = htonl(ctimens);
+       stat_crc = crc32(stat_crc, (Bytef*)&stat, 4);
+       stat = htonl(ce->ce_ino);
+       stat_crc = crc32(stat_crc, (Bytef*)&stat, 4);
+       stat = htonl(ce->ce_dev);
+       stat_crc = crc32(stat_crc, (Bytef*)&stat, 4);
+       stat = htonl(ce->ce_uid);
+       stat_crc = crc32(stat_crc, (Bytef*)&stat, 4);
+       stat = htonl(ce->ce_gid);
+       stat_crc = crc32(stat_crc, (Bytef*)&stat, 4);
+       return stat_crc;
+}
+
 /*
  * This only updates the "non-critical" parts of the directory
  * cache, ie the parts that aren't tracked by GIT, and only used
@@ -73,6 +96,8 @@ void fill_stat_cache_info(struct cache_entry *ce, struct stat 
*st)
 
        if (S_ISREG(st->st_mode))
                ce_mark_uptodate(ce);
+
+       ce->ce_stat_crc = calculate_stat_crc(ce);
 }
 
 static int ce_compare_data(struct cache_entry *ce, struct stat *st)
-- 
1.7.11.2

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to