mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 08:43:19 -04:00
tmpfs: allow recurse as that does happen when using unionfs
This commit is contained in:
parent
f344f6c0be
commit
1b30333825
1 changed files with 2 additions and 1 deletions
|
|
@ -543,7 +543,8 @@ loop:
|
|||
goto loop;
|
||||
}
|
||||
TMPFS_NODE_UNLOCK(node);
|
||||
error = vget(vp, lkflag | LK_INTERLOCK, curthread);
|
||||
error = vget(vp, lkflag | LK_INTERLOCK | LK_CANRECURSE,
|
||||
curthread);
|
||||
if (error == ENOENT) {
|
||||
TMPFS_NODE_LOCK(node);
|
||||
goto loop;
|
||||
|
|
|
|||
Loading…
Reference in a new issue