mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
Fix for a deadlock triggered by a 'umount -f' causing a NFS request to never
retransmit (or return). Thanks to John Baldwin for helping nail this one. Found by : Kris Kennaway
This commit is contained in:
parent
fa4a2ffd58
commit
6cd7078919
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=161722
@ -1372,8 +1372,20 @@ nfs_timer(void *arg)
|
||||
if (rep->r_mrep || (rep->r_flags & R_SOFTTERM)) {
|
||||
mtx_unlock(&rep->r_mtx);
|
||||
continue;
|
||||
} else
|
||||
mtx_unlock(&rep->r_mtx);
|
||||
} else {
|
||||
/*
|
||||
* Terminate request if force-unmount in progress.
|
||||
* Note that NFS could have vfs_busy'ed the mount,
|
||||
* causing the unmount to wait for the mnt_lock, making
|
||||
* this bit of logic necessary.
|
||||
*/
|
||||
if (rep->r_nmp->nm_mountp->mnt_kern_flag & MNTK_UNMOUNTF) {
|
||||
nfs_softterm(rep);
|
||||
mtx_unlock(&rep->r_mtx);
|
||||
continue;
|
||||
}
|
||||
mtx_unlock(&rep->r_mtx);
|
||||
}
|
||||
if (nfs_sigintr(nmp, rep, rep->r_td))
|
||||
continue;
|
||||
mtx_lock(&nmp->nm_mtx);
|
||||
|
Loading…
Reference in New Issue
Block a user