Skip to content

Commit

Permalink
fs: exfat: add documentations for mount options
Browse files Browse the repository at this point in the history
Signed-off-by: Park Ju Hyung <qkrwngud825@gmail.com>
Signed-off-by: Khusika Dhamar Gusti <mail@khusika.com>
Change-Id: Ia9faeec4978e3a1753997ffc7732f731da194e6c
  • Loading branch information
arter97 authored and Khusika Dhamar Gusti committed Oct 9, 2019
1 parent cc6a75a commit 9c13e6c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions fs/exfat/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,4 +151,51 @@ Linux 4.14 was used as higher LTS kernels don't work with [exfat-nofuse] at the

[exfat-fuse]: https://github.com/relan/exfat

## Mount options

* uid
* gid
* umask
* dmask
* fmask
* allow_utime
* codepage
* iocharset
* utf8
* tz

* Please refer to the [vfat](https://github.com/torvalds/linux/blob/master/Documentation/filesystems/vfat.txt)'s documentation.

* namecase

* Passing `namecase=1` as a mount option will make exFAT operate in a case-sensitive mode.

* Default is insensitive mode.

* symlink

* Allow a symlink to be created under exFAT.

* errors=continue

* Keep going on a filesystem error.

* errors=panic

* Panic and halt the machine if an error occurs.

* errors=remount-ro

* Remount the filesystem read-only on an error.

* discard

* Enable the use of discard/TRIM commands to ensure flash storage doesn't run out of free blocks. This option may introduce latency penalty on file removal operations.

* delayed_meta

* Delay flushing metadata, hence improving performance.

* This is enabled by default, please pass `nodelayed_meta` to disable it.

## Enjoy!

0 comments on commit 9c13e6c

Please sign in to comment.