diff options
author | Willem Jan Withagen <wjw@digiware.nl> | 2016-12-02 12:49:08 +0100 |
---|---|---|
committer | Willem Jan Withagen <wjw@digiware.nl> | 2016-12-02 12:53:10 +0100 |
commit | e476b80ad13b40c36ca91a4e441fbda7bc8241a4 (patch) | |
tree | 0c984fe4502e78d803aaf900638213061f779e97 | |
parent | Merge pull request #12138 from oritwas/wip-rgw-doc-upgrade-region-pool (diff) | |
download | ceph-e476b80ad13b40c36ca91a4e441fbda7bc8241a4.tar.xz ceph-e476b80ad13b40c36ca91a4e441fbda7bc8241a4.zip |
os/filestore/chain_xattr.h:uses ENODATA, so include compat.h
- Trying to be able to build without ENODATA in /usr/include/errno.h
And here we use ENODATA for testing attributes.
Include it here, otherwise it will be require in plenty other files.
Signed-off-by: Willem Jan Withagen <wjw@digiware.nl>
-rw-r--r-- | src/os/filestore/chain_xattr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/os/filestore/chain_xattr.h b/src/os/filestore/chain_xattr.h index 54a85686b97..9764c347751 100644 --- a/src/os/filestore/chain_xattr.h +++ b/src/os/filestore/chain_xattr.h @@ -4,6 +4,7 @@ #ifndef __CEPH_OSD_CHAIN_XATTR_H #define __CEPH_OSD_CHAIN_XATTR_H +#include "include/compat.h" #include "common/xattr.h" #include "include/assert.h" #include "include/buffer.h" |