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. In the name of performance maybe you want to replace strlen(ce->name) with ce_namelen(ce) or ce->ce_namelen. git-grep says there are three occurrences, but you may want to relax the search a bit because it's not always "strlen(ce->name)". -- 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