File tree 1 file changed +25
-0
lines changed
1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,31 @@ mount -t tifs -o tls=<tls config file> tifs:<pd endpoints> <mount point>
70
70
71
71
By default, the tls-config should be located in ` ~/.tifs/tls.toml ` , refer to the [ tls.toml] ( config-examples/tls.toml ) for detailed configuration.
72
72
73
+ ## Other Custom Mount Options
74
+
75
+ ### ` direct_io `
76
+
77
+ Enable global direct io, to avoid page cache.
78
+
79
+ ``` bash
80
+ mount -t tifs -o direct_io tifs:< pd endpoints> < mount point>
81
+ ```
82
+ ### ` blksize `
83
+
84
+ Set block size in KiB, 64 by default.
85
+
86
+ ``` bash
87
+ mount -t tifs -o blksize=4 tifs:< pd endpoints> < mount point>
88
+ ```
89
+
90
+ ### ` maxsize `
91
+
92
+ The quota of fs capacity, could be human-readable.
93
+
94
+ ``` bash
95
+ mount -t tifs -o maxsize=1GiB tifs:< pd endpoints> < mount point>
96
+ ```
97
+
73
98
## Development
74
99
75
100
``` bash
You can’t perform that action at this time.
0 commit comments