Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

Documentation: filesystems: Convert jfs.txt to

This converts the plain text documentation of jfs.txt to reStructuredText
format. Added to documentation build process and verified with
make htmldocs

Signed-off-by: Shobhit Kukreti <shobhitkukreti@gmail.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Signed-off-by: Jonathan Corbet <corbet@lwn.net>

authored by

Shobhit Kukreti and committed by
Jonathan Corbet
ac841c4e e226b4f0

+30 -15
+1
Documentation/admin-guide/index.rst
··· 78 78 ext4 79 79 binderfs 80 80 xfs 81 + jfs 81 82 pm/index 82 83 thunderbolt 83 84 LSM/index
+29 -15
Documentation/filesystems/jfs.txt Documentation/admin-guide/jfs.rst
··· 1 + =========================================== 1 2 IBM's Journaled File System (JFS) for Linux 3 + =========================================== 2 4 3 5 JFS Homepage: http://jfs.sourceforge.net/ 4 6 5 7 The following mount options are supported: 8 + 6 9 (*) == default 7 10 8 - iocharset=name Character set to use for converting from Unicode to 11 + iocharset=name 12 + Character set to use for converting from Unicode to 9 13 ASCII. The default is to do no conversion. Use 10 14 iocharset=utf8 for UTF-8 translations. This requires 11 15 CONFIG_NLS_UTF8 to be set in the kernel .config file. 12 16 iocharset=none specifies the default behavior explicitly. 13 17 14 - resize=value Resize the volume to <value> blocks. JFS only supports 18 + resize=value 19 + Resize the volume to <value> blocks. JFS only supports 15 20 growing a volume, not shrinking it. This option is only 16 21 valid during a remount, when the volume is mounted 17 22 read-write. The resize keyword with no value will grow 18 23 the volume to the full size of the partition. 19 24 20 - nointegrity Do not write to the journal. The primary use of this option 25 + nointegrity 26 + Do not write to the journal. The primary use of this option 21 27 is to allow for higher performance when restoring a volume 22 28 from backup media. The integrity of the volume is not 23 29 guaranteed if the system abnormally abends. 24 30 25 - integrity(*) Commit metadata changes to the journal. Use this option to 31 + integrity(*) 32 + Commit metadata changes to the journal. Use this option to 26 33 remount a volume where the nointegrity option was 27 34 previously specified in order to restore normal behavior. 28 35 29 - errors=continue Keep going on a filesystem error. 30 - errors=remount-ro(*) Remount the filesystem read-only on an error. 31 - errors=panic Panic and halt the machine if an error occurs. 36 + errors=continue 37 + Keep going on a filesystem error. 38 + errors=remount-ro(*) 39 + Remount the filesystem read-only on an error. 40 + errors=panic 41 + Panic and halt the machine if an error occurs. 32 42 33 - uid=value Override on-disk uid with specified value 34 - gid=value Override on-disk gid with specified value 35 - umask=value Override on-disk umask with specified octal value. For 36 - directories, the execute bit will be set if the corresponding 43 + uid=value 44 + Override on-disk uid with specified value 45 + gid=value 46 + Override on-disk gid with specified value 47 + umask=value 48 + Override on-disk umask with specified octal value. For 49 + directories, the execute bit will be set if the corresponding 37 50 read bit is set. 38 51 39 - discard=minlen This enables/disables the use of discard/TRIM commands. 40 - discard The discard/TRIM commands are sent to the underlying 41 - nodiscard(*) block device when blocks are freed. This is useful for SSD 42 - devices and sparse/thinly-provisioned LUNs. The FITRIM ioctl 52 + discard=minlen, discard/nodiscard(*) 53 + This enables/disables the use of discard/TRIM commands. 54 + The discard/TRIM commands are sent to the underlying 55 + block device when blocks are freed. This is useful for SSD 56 + devices and sparse/thinly-provisioned LUNs. The FITRIM ioctl 43 57 command is also available together with the nodiscard option. 44 58 The value of minlen specifies the minimum blockcount, when 45 59 a TRIM command to the block device is considered useful.