CVSROOT: /cvs Module name: src Changes by: [email protected] 2021/10/02 11:29:28
Modified files:
sys/miscfs/fuse: fuse_vnops.c
Log message:
fuse: avoid namei_pool leaks in several functions
when calling namei(), cn_pnbuf is kept allocated when fs
implementation is setting SAVENAME flag. In such cases, it is expected
the fs implementation to also release memory when work is done.
fuse(4) didn't put back the memory to the pool. correct it.
ok mpi@
