[PATCH] fix bug in read-cache.c which loses files when merging a tree
authorJames Bottomley <James.Bottomley@SteelEye.com>
Mon, 18 Apr 2005 18:44:31 +0000 (11:44 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Mon, 18 Apr 2005 18:44:31 +0000 (11:44 -0700)
commita4b7dbef4ef53f4fffbda0a6f5eada4c377e3fc5
treeffff612a9cb5d5f390c1aeadaf2bd1e8c3d33ded
parent1bc992acacf5961e65d9fdddeb8561284e708c74
[PATCH] fix bug in read-cache.c which loses files when merging a tree

I noticed this when I tried a non-trivial scsi merge and checked the
results against BK.  The problem is that remove_entry_at() actually
decrements active_nr, so decrementing it in add_cache_entry() before
calling remove_entry_at() is a double decrement (hence we lose cache
entries at the end).
read-cache.c