Re: [PATCH 2/2] Add index-v5
From: Robin Rosenberg <hidden>
Date: 2016-06-15 22:54:26
Nguyễn Thái Ngọc Duy skrev 2012-08-06 16.36:
quoted hunk ↗ jump to hunk
+++ b/read-cache-v5.c@@ -0,0 +1,1170 @@ +#include "cache.h" +#include "read-cache.h" +#include "resolve-undo.h" +#include "cache-tree.h" + +struct cache_header_v5 { + unsigned int hdr_ndir; + unsigned int hdr_nfile; + unsigned int hdr_fblockoffset; + unsigned int hdr_nextension; +}; + +struct ondisk_cache_entry_v5 { + unsigned short flags; + unsigned short mode; + struct cache_time mtime; + int stat_crc; + unsigned char sha1[20]; +};
I mentioned this before in another thread, but for JGit I'd like to see size as a separate attribute. The rest of stat_crc is not available to Java so when this index gets its way into JGit, stat_crc will be zero and will never be checked. -- robin