add dmesg to mkdir

This commit is contained in:
Ryan Heywood 2025-07-24 21:25:37 -04:00
parent 859041351f
commit 3d7f3bdc60
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 4 additions and 0 deletions

View File

@ -77,6 +77,10 @@ impl Mount {
"could not check if path exists: {path}",
path = self.target.display()
))? {
dmesg(format!(
"Making directory: {target}",
target = self.target.display()
));
syscall::mkdir(&self.target)?;
}