CS350 COS
COS
|
#include <vfs.h>
Data Fields | |
int(* | unmount )(VFS *fs) |
int(* | getroot )(VFS *fs, VNode **dn) |
int(* | lookup )(VNode *dn, VNode **fn, const char *name) |
int(* | open )(VNode *fn) |
int(* | close )(VNode *fn) |
int(* | stat )(VNode *fn, struct stat *sb) |
int(* | read )(VNode *fn, void *buf, uint64_t off, uint64_t len) |
int(* | write )(VNode *fn, void *buf, uint64_t off, uint64_t len) |
int(* | readdir )(VNode *fn, void *buf, uint64_t len, uint64_t *off) |