On Wed, Jul 4, 2012 at 4:18 PM, Thomas Gummerer <t.gummerer@xxxxxxxxx> wrote: > Replace the ce_namelen() function in cache.h with a ce_namelen > field in struct cache_entry. This will both give us a tiny bit > of a performance enhancement when working with long pathnames > and is part of the refactoring for the index-v5 file format. Can we just wrap ce->namelen in ce_namelen() instead? Less changes this way. We can do the replacement once v5 patches come. static inline int ce_namelen(struct cache_entry *ce) { return ce->namelen; } something like that. -- Duy -- 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