Kernel: Implement Socket inodes for tmpfs

This commit is contained in:
2024-02-07 15:33:48 +02:00
parent 454bee3f02
commit 132286895f
3 changed files with 57 additions and 2 deletions

View File

@@ -649,8 +649,9 @@ namespace Kernel
case Inode::Mode::IFREG: break;
case Inode::Mode::IFDIR: break;
case Inode::Mode::IFIFO: break;
case Inode::Mode::IFSOCK: break;
default:
return BAN::Error::from_errno(EINVAL);
return BAN::Error::from_errno(ENOTSUP);
}
LockGuard _(m_lock);