From: Sage Weil Date: Tue, 3 Mar 2009 00:10:30 +0000 (-0800) Subject: filestore: more helpful error message with xattrs don't work X-Git-Tag: v0.7~77 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=97e2071333bc0e987f0e7b5d4d7a28a632494770;p=ceph.git filestore: more helpful error message with xattrs don't work --- diff --git a/src/os/FileStore.cc b/src/os/FileStore.cc index f85fe42018c..7583827cab4 100644 --- a/src/os/FileStore.cc +++ b/src/os/FileStore.cc @@ -389,7 +389,7 @@ int FileStore::mount() << " " << strerror(errno) << dendl;*/ if (x != y) { - derr(0) << "xattrs don't appear to work (" << strerror(errno) << "), specify --filestore_fake_attrs to fake them (in memory)." << dendl; + derr(0) << "xattrs don't appear to work (" << strerror(errno) << ") on " << basedir << ", be sure to mount underlying file system with 'user_xattr' option" << dendl; return -errno; } }