|
|
void | rootfs_init (void) |
| |
|
void | link_stdin_dev (char *path) |
| |
|
void | link_stdout_dev (char *path) |
| |
|
void | link_stderr_dev (char *path) |
| |
|
int | register_chrdev (char *name, struct file_operations *fops) |
| |
|
int | register_blkdev (char *name, struct file_operations *fops) |
| |
|
bool | file_is_opened (struct file *filp) |
| |
|
int | fs_read_dir (DIR *dirp, struct dirent *dirent) |
| |
|
uint32_t | fs_get_block_addr (struct inode *inode, int blk_index) |
| |
|
uint32_t | fs_file_append_block (struct inode *inode) |
| |
|
void | request_create_file (int thread_id, const char *path, mode_t mode) |
| |
|
void | request_mkdir (int thread_id, const char *path, mode_t mode) |
| |
|
void | request_chmod (int thread_id, const char *path, mode_t mode) |
| |
|
void | request_utime (int thread_id, const char *path, uint32_t mtime) |
| |
|
void | request_remove (int thread_id, const char *path, bool rm_dir) |
| |
|
void | request_stat (int thread_id, const char *path, struct stat *statbuf) |
| |
|
void | request_rename (int thread_id, const char *oldpath, const char *newpath) |
| |
|
void | request_open_file (int thread_id, const char *path) |
| |
|
void | request_open_directory (int reply_fd, const char *path) |
| |
|
void | request_mount (int thread_id, const char *source, const char *target) |
| |
|
void | request_getcwd (int thread_id, char *buf, size_t len) |
| |
|
void | request_chdir (int thread_id, const char *path) |
| |
|
void | filesysd (void) |
| |
| void | fs_print_inode_bitmap (void) |
| |
|
void | fs_print_block_bitmap (void) |
| |