Instructs 3.6 ReiserFS code to mount 3.5 filesystem, using 3.6 format for newly created objects. After this you cannot use it through 3.5 ReiserFS tools anymore.
Example:
mount -t reiserfs -o conv /dev/sdb1 /mnt/scsi-disk-b
Ignore IO errors during journal committing. Without this option ReiserFS
will panic on IO errors.
Only available when reiserfs-raw is used. Not in the stock kernels.
Example:
mount -t reiserfs -o dontpanic /dev/sdb1 /cache/squid-cache-1
Choose hash function ReiserFS will use to find files within directories. Long time ago ReiserFS had only one hash, so hash code was not marked in filesystem superblock. Then additional hashes became available so we had to put hash code into super block. Also, old hash was made notdefault. At that time there were already a number of filesystems with not set hash code in super block. So, mount option was created to make it possible to write proper hash value into super block. Relative merits of hash functions were subjected to discussions of great length on the ReiserFS mailing list. (Try this query.) A special page describes how to choose hash function. Roughly speaking:
Example:
mount -t reiserfs -o hash=r5 /dev/sdb1 /mnt/scsi-disk-b
Tunes block allocator. This may give you performance improvements in some situations.
Example:
mount -t reiserfs -o hashed_relocation /dev/sdb1 /mnt/scsi-disk-b
Tunes block allocator. This may give you performance improvements in some situations.
Example:
mount -t reiserfs -o no_unhashed_relocation /dev/sdb1 /mnt/scsi-disk-b
Disable `border allocator algorithm' invented by Yury Yu. Rupasov <yura@yura.polnet.botik.ru>. This may give you performance improvements in some situations.
Example:
mount -t reiserfs -o noborder /dev/sdb1 /mnt/scsi-disk-b
Disable journalling. This will get you slight performance improvement in some situations at the cost of losing fast recovery from crashes. Actually even with this option turned on, ReiserFS still performs all journalling paraphernalia, save for actual writes into journalling area. Implementation of real nolog is work in progress.
Example:
mount -t reiserfs -o nolog /dev/sdb1 /mnt/scsi-disk-b
By default, ReiserFS stores small files and `file tails' directly into the tree. This confuses some utilities like LILO. This option is used to disable packing of files into the tree.
Example:
mount -t reiserfs -o notail /dev/sdb1 /mnt/scsi-disk-b
Activate Passive Garbage Collector.
Only available when reiserfs-raw is used. Not in the stock kernels.
Example:
mount -t reiserfs -o pgc=50,75 /dev/sdb1 /cache/squid-cache-1
Mount filesystem in `raw' access mode.
Only available when reiserfs-raw is used. Not in the stock kernels.
Example:
mount -t reiserfs -o raw /dev/sdb1 /cache/squid-cache-1
Replay transactions in journal, but don't actually mount filesystem. Used by fsck, mostly.
Example:
mount -t reiserfs -o replayonly /dev/sdb1 /mnt/scsi-disk-b
Remount option allowing to expand ReiserFS partition on-line. Make ReiserFS think that device has NUMBER blocks. Useful with LVM devices. There is a special resizer utility which can be obtained from ftp://ftp.namesys.com/pub/reiserfsprogs
Example:
mount -t reiserfs -o resize=680000 /dev/sdb1 /mnt/scsi-disk-b
Maintainer: Danilov Nikita Last modified: Fri Apr 26 15:19:47 MSD 2002