FUSE Flashcards
0
Q
What do you call in your program to start FUSE?
A
fuse_main
1
Q
Give an example of the instantiation of the structure used to hold the FUSE callbacks
A
struct fuse_operations fuse_oper = { .getattr = getattr_func, .open = open_func };
2
Q
FUSE: How do you set the block read/write sizes?
A
Max_read and max_write in the command line options. The command line options from TierStore are directly passed into FUSE.