mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Rename fdescfs vnode from "fdesc" to "fdescfs" to avoid name collision
of the vnode lock with the fdesc_mtx mutex. Having different kinds of locks with the same name confuses witness.
This commit is contained in:
parent
18ff731caa
commit
e6591b84ff
1 changed files with 1 additions and 1 deletions
|
|
@ -141,7 +141,7 @@ loop:
|
|||
*/
|
||||
MALLOC(fd, struct fdescnode *, sizeof(struct fdescnode), M_TEMP, M_WAITOK);
|
||||
|
||||
error = getnewvnode("fdesc", mp, &fdesc_vnodeops, vpp);
|
||||
error = getnewvnode("fdescfs", mp, &fdesc_vnodeops, vpp);
|
||||
if (error) {
|
||||
FREE(fd, M_TEMP);
|
||||
goto out;
|
||||
|
|
|
|||
Loading…
Reference in a new issue