| 468 | } |
| 469 | |
| 470 | int Ioctl(fs_fd_t* handle, uint64_t cmd, uint64_t arg){ |
| 471 | if(handle->node) return handle->node->Ioctl(cmd, arg); |
| 472 | else return -1; |
| 473 | } |
| 474 | |
| 475 | int Rename(FsNode* olddir, char* oldpath, FsNode* newdir, char* newpath){ |
| 476 | assert(olddir && newdir); |