You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Guest Fuse FS can enable per-file DAX by adding the "-o dax=inode"
parameter at mount time. This also enable per-file of virtiofs.
Whether the file enables DAX or not is determined by virtiofs. We
use a relatively simple strategy to control which file enables DAX.
Now the strategy is when the file is larger than a value, such
as 2MB, it will enable DAX. Now this value is configured by
Config.dax_file_size.
* If not set dax_file_size, DAX will disable to all files.
* If set dax_file_size=0, DAX will enable all files.
* If set dax_file_size=N, DAX will enable only when the file size is
greater than or equal to N Bytes.
Signed-off-by: hugh.gxy <[email protected]>
0 commit comments