FUSE Flashcards

0
Q

What do you call in your program to start FUSE?

A

fuse_main

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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
};
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly