diff options
author | Sage Weil <sage@newdream.net> | 2013-01-03 16:07:59 -0800 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2013-01-03 16:07:59 -0800 |
commit | 19df20867d358b5ca5cab9c2f11184e6037dbe11 (patch) | |
tree | 95a2e9276845e4a00e85f0909fff21fcdb2dbfb8 | |
parent | 88af7d182a14355f8166cd9ec18f69da656324ec (diff) | |
parent | 37b57cdf0fdc5c03eeff3f5eb58ff4010ce581f6 (diff) | |
download | ceph-19df20867d358b5ca5cab9c2f11184e6037dbe11.tar.gz |
Merge pull request #30 from rca/master
Minor clarification in docs.
-rw-r--r-- | doc/rados/configuration/filesystem-recommendations.rst | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/rados/configuration/filesystem-recommendations.rst b/doc/rados/configuration/filesystem-recommendations.rst index 17908cc3d19..cb1aca875ed 100644 --- a/doc/rados/configuration/filesystem-recommendations.rst +++ b/doc/rados/configuration/filesystem-recommendations.rst @@ -41,8 +41,11 @@ The underlying file system must provide sufficient capacity for XATTRs. ``btrfs`` does not bound the total xattr metadata stored with a file. ``XFS`` has a relatively large limit (64 KB) that most deployments won't encounter, but the ``ext4`` is too small to be -usable. To use these file systems, you should add the following like -to the ``[osd]`` section of your ``ceph.conf`` file.:: +usable. + +You should always add the following line to the ``[osd]`` section of your +``ceph.conf`` file for ``ext4`` filesystems; you can optionally use +it for ``btrfs`` and ``XFS``.:: filestore xattr use omap = true |