| 194 | } |
| 195 | |
| 196 | auto FatFsFileSystem::FreeInode(vfs::Inode* inode) -> Expected<void> { |
| 197 | if (inode == nullptr) { |
| 198 | return std::unexpected(Error{ErrorCode::kInvalidArgument}); |
| 199 | } |
| 200 | auto* fi = static_cast<FatInode*>(inode->fs_private); |
| 201 | FreeFatInode(fi); |
| 202 | return {}; |
| 203 | } |
| 204 | |
| 205 | auto FatFsFileSystem::GetFileOps() -> vfs::FileOps* { return &file_ops_; } |
| 206 |
nothing calls this directly
no outgoing calls
no test coverage detected