From 11496399ef318498c11e551f139d96db52d3309c Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Mon, 15 Sep 2014 15:29:08 -0700 Subject: [PATCH] ceph-disk: mount xfs with inode64 by default We did this forever ago with mkcephfs, but ceph-disk didn't. Note that for modern XFS this option is obsolete, but for older kernels it was not the default. Backport: firefly Signed-off-by: Sage Weil --- src/ceph-disk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ceph-disk b/src/ceph-disk index c5bb56cb1560a..b9320e008a5c1 100755 --- a/src/ceph-disk +++ b/src/ceph-disk @@ -89,7 +89,7 @@ MOUNT_OPTIONS = dict( # issues with ext4 before the xatts-in-leveldb work, and it seemed # that user_xattr helped ext4='noatime,user_xattr', - xfs='noatime', + xfs='noatime,inode64', ) MKFS_ARGS = dict( -- 2.47.3