Re: [PATCH] hugetlbfs: lockdep annotate root inode properly
From: Al Viro
Date: Thu Mar 08 2012 - 16:50:03 EST
On Thu, Mar 08, 2012 at 01:40:50PM -0800, Andrew Morton wrote:
> OK, thanks, yup. Taking i_mutex in file_operations.mmap() is wrong.
... or in .release() (munmap() does fput() under mmap_sem).
> Is hugetlbfs actually deadlockable because of this, or is it the case
> that the i_mutex->mmap_sem ordering happens to never happen for this
> filesystem?
Yes, it is. Look at read(2) on hugetlbfs; it copies userland data
while holding ->i_mutex. So we have
read(2):
mutex_lock(&A)
down_read(&B)
mmap(2):
down_write(&B);
mutex_lock(&A);
which is an obvious deadlock.
> So we need to pull the i_mutex out of hugetlbfs_file_mmap().
IIRC, you have a patch in your tree doing just that...
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/