From: Li Wang Date: Thu, 19 Dec 2013 06:35:54 +0000 (+0800) Subject: client: Add inline fields to Inode X-Git-Tag: v0.78~234^2^2~11 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=be3db0b8f4f00d250a68935e0821c7dd847827f2;p=ceph.git client: Add inline fields to Inode Signed-off-by: Yunchuan Wen Signed-off-by: Li Wang --- diff --git a/src/client/Inode.h b/src/client/Inode.h index cc054a654fa..cd58b8281e1 100644 --- a/src/client/Inode.h +++ b/src/client/Inode.h @@ -111,6 +111,10 @@ class Inode { version_t version; // auth only version_t xattr_version; + // inline data + version_t inline_version; + bufferlist inline_data; + bool is_symlink() const { return (mode & S_IFMT) == S_IFLNK; } bool is_dir() const { return (mode & S_IFMT) == S_IFDIR; } bool is_file() const { return (mode & S_IFMT) == S_IFREG; } @@ -207,6 +211,7 @@ class Inode { rdev(0), mode(0), uid(0), gid(0), nlink(0), size(0), truncate_seq(1), truncate_size(-1), time_warp_seq(0), max_size(0), version(0), xattr_version(0), + inline_version(0), flags(0), dir_hashed(false), dir_replicated(false), auth_cap(NULL), dirty_caps(0), flushing_caps(0), flushing_cap_seq(0), shared_gen(0), cache_gen(0),