projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d9839e0
)
Make fsck reachability avoid doing unnecessary work for
author
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 13 Apr 2005 19:35:08 +0000
(12:35 -0700)
committer
Linus Torvalds
<torvalds@ppc970.osdl.org>
Wed, 13 Apr 2005 19:35:08 +0000
(12:35 -0700)
parents that we reach multiple ways.
This doesn't matter right now. It _will_ matter once we have
complex revision graphs.
fsck-cache.c
patch
|
blob
|
history
diff --git
a/fsck-cache.c
b/fsck-cache.c
index
bb2b867
..
34c8081
100644
(file)
--- a/
fsck-cache.c
+++ b/
fsck-cache.c
@@
-108,6
+108,9
@@
static void mark_reachable(struct revision *rev)
{
struct parent *p = rev->parent;
+ /* If we've been here already, don't bother */
+ if (rev->flags & REACHABLE)
+ return;
rev->flags |= REACHABLE | USED;
while (p) {
mark_reachable(p->parent);