2010/9/1 Nguyễn Thái Ngọc Duy <pclouds@xxxxxxxxx>: > +== Index entry > + > + Index entries are sorted in ascending order on the name field, > + interpreted as a string of unsigned bytes. Entries with the same > + name are sorted by their stage field. > + > + 32-bit ctime seconds, the last time a file's metadata changed > + this is stat(2) data > + > + 32-bit ctime nanoseconds (modulo 1G) > + this is stat(2) data Maybe I'm missing something, but I failed to find where "modulo 1G" comes from. AFAICS (read-cache.c), the stat data are saved almost unmodified (casted to unsigned int). (BTW, is 1G the Gravitational Constant or what?) I'm not sure it is safe to assume that every system Git will be ported to defines "unsigned int" to be 32 bits. OTOH, never met one where it is something else. Still, using uint32_t (the POSIX types) in ondisk_cache_entry would be clearer (unlikely alignment issues aside. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html