On Thu, Jun 7, 2012 at 4:12 PM, Eric W. Biederman <ebiederm@xxxxxxxxxxxx> wrote: > > We take the approprate dentry locks in the approparite order so d_move > and the dcache should not care in the slightest about the inode > mutecies. Part of the problem is that you can't even *determine* the appropriate order without holding the rename mutex. Now, it may turn out to be a non-issue for sysfs just because there are no unconstrained directory renames there, but seriously: even the d_ancestor() check itself (which is how we determine the dentry lock order) needs that filesystem to be quiescent wrt directory renames in order to work. So it may not actually depend on the inode->i_mutex, but it does need some serialization outside the dcache subsystem. Any per-filesystem mutex should do, so if sysfs always holds the sysfs_mutex - and never allows user-initiated renames - it should be safe. 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