diff options
| author | Seigo Tanimura <tanimura@FreeBSD.org> | 2005-07-09 13:52:49 +0000 |
|---|---|---|
| committer | Seigo Tanimura <tanimura@FreeBSD.org> | 2005-07-09 13:52:49 +0000 |
| commit | 045f25a28dd45c81ed12171f8bd1c043c85a1f99 (patch) | |
| tree | 69a80fb6cab728afed64cc8365b84c91fc05cf5b | |
| parent | 23f924934d8d751da98a59ea012602d5b8127bfd (diff) | |
Notes
| -rw-r--r-- | sys/fs/udf/udf_vnops.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/fs/udf/udf_vnops.c b/sys/fs/udf/udf_vnops.c index a3f6e3d933fd3..cd0dc0715fd5d 100644 --- a/sys/fs/udf/udf_vnops.c +++ b/sys/fs/udf/udf_vnops.c @@ -915,7 +915,8 @@ lookloop: if (flags & ISDOTDOT) VOP_UNLOCK(dvp, 0, a->a_cnp->cn_thread); error = udf_vget(udfmp->im_mountp, id, LK_EXCLUSIVE, &tdp); - vn_lock(dvp, LK_EXCLUSIVE|LK_RETRY, a->a_cnp->cn_thread); + if (flags & ISDOTDOT) + vn_lock(dvp, LK_EXCLUSIVE|LK_RETRY, a->a_cnp->cn_thread); if (!error) { /* * Remember where this entry was if it's the final |
