On Tue, Jul 12, 2011 at 6:39 PM, Al Viro <viro@xxxxxxxxxxxxxxxxxx> wrote: > > So here's what I want to do to unlazy_walk(); it'll almost certainly > leave other problems with ->d_lock, but at least it'll take care of > that one: That patch seems pretty clearly safe. If the parent has changed, we'd want to exit anyway: as you point out the __d_rcu_to_refcount() is there to catch that case. So exiting early and thus making that direct parenthood requirement explicit in that d_lock case seems to be a good thing regardless. It's dentry_lock_for_move() that makes me really nervous. Not only does it lock up to four dentries, but it mixes the whole parenthood vs pointer ordering. Or course, it does have those BUG_ON() checks, so it should never cause any circular dependencies, but still.. The actual main protection to get lookups correct in the presence of concurrent moves largely depends on the sequence numbers (ie d_lookup() retrying if it hits a rename), which is why I also find it unlikely that we really should need to hold all those d_lock cases all at the same time. So does d_move() really need to get all the locks at the same time and then do all the operations inside that "super-locked" region? Or could we get the locks in sequence and do individual parts of the rename operations under individual locks? Are there any other d_lock cases that depend on the pointer ordering? Most everything else seems to be about direct parenthood, no? Linus -- To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html