summaryrefslogtreecommitdiff
path: root/git-cvsexportcommit.perl
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@osdl.org>2006-05-28 23:16:15 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-05-29 02:39:49 (GMT)
commit7d65848afd42f075f6db0d03da2c9f5a9bac6267 (patch)
tree761654bdea53ff66480876f7be670ccc0ca9ab9e /git-cvsexportcommit.perl
parent878ccb26941a15312b6676372e4688d42a73882b (diff)
downloadgit-7d65848afd42f075f6db0d03da2c9f5a9bac6267.zip
git-7d65848afd42f075f6db0d03da2c9f5a9bac6267.tar.gz
git-7d65848afd42f075f6db0d03da2c9f5a9bac6267.tar.bz2
Don't use "sscanf()" for tree mode scanning
Doing an oprofile run on the result of my git rev-list memory leak fixes and tree parsing cleanups, I was surprised by the third-highest entry being samples % image name app name symbol name 179751 2.7163 libc-2.4.so libc-2.4.so _IO_vfscanf@@GLIBC_2.4 where that 2.7% is actually more than 5% of one CPU, because this was run on a dual CPU setup with the other CPU just being idle. That seems to all be from the use of 'sscanf(tree, "%o", &mode)' for the tree buffer parsing. So do the trivial octal parsing by hand, which also gives us where the first space in the string is (and thus where the pathname starts) so we can get rid of the "strchr(tree, ' ')" call too. This brings the "git rev-list --all --objects" time down from 63 seconds to 55 seconds on the historical kernel archive for me, so it's quite noticeable - tree parsing is a lot of what we end up doing when following all the objects. [ I also see a 5% speedup on a full "git fsck-objects" on the current kernel archive, so that sscanf() really does seem to have hurt our performance by a surprising amount ] Signed-off-by: Linus Torvalds <torvalds@osdl.org> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-cvsexportcommit.perl')
0 files changed, 0 insertions, 0 deletions