|
|
@ -27,6 +27,7 @@ Func2::MknodFF::operator()(const ugid_t &ugid_, |
|
|
int rv; |
|
|
int rv; |
|
|
fs::info_t info; |
|
|
fs::info_t info; |
|
|
fs::path fusedirpath; |
|
|
fs::path fusedirpath; |
|
|
|
|
|
fs::path fullpath; |
|
|
|
|
|
|
|
|
fusedirpath = fusepath_.parent_path(); |
|
|
fusedirpath = fusepath_.parent_path(); |
|
|
|
|
|
|
|
|
@ -43,6 +44,8 @@ Func2::MknodFF::operator()(const ugid_t &ugid_, |
|
|
if(info.spaceavail < branch.minfreespace()) |
|
|
if(info.spaceavail < branch.minfreespace()) |
|
|
continue; |
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
fullpath = branch.path / fusepath_; |
|
|
|
|
|
|
|
|
rv = fs::mknod_as(ugid_,fullpath,mode_,dev_); |
|
|
rv = fs::mknod_as(ugid_,fullpath,mode_,dev_); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|