summaryrefslogtreecommitdiffstats
path: root/fs/ceph/super.h
diff options
context:
space:
mode:
authorNoah Watkins2009-10-28 19:54:49 +0100
committerSage Weil2009-10-29 01:44:22 +0100
commitfbbccec9c6218cbc9ff47c6d88bfc6b52079e3ea (patch)
tree883496f51f79c49ec7e58888401b88dc356a03e5 /fs/ceph/super.h
parentceph: allocate and parse mount args before client instance (diff)
downloadkernel-qcow2-linux-fbbccec9c6218cbc9ff47c6d88bfc6b52079e3ea.tar.gz
kernel-qcow2-linux-fbbccec9c6218cbc9ff47c6d88bfc6b52079e3ea.tar.xz
kernel-qcow2-linux-fbbccec9c6218cbc9ff47c6d88bfc6b52079e3ea.zip
ceph: replace list_entry with container_of
Usage of non-list.h list_entry function for container_of functionality replaced with direct use of container_of. Signed-off-by: Noah Watkins <noah@noahdesu.com> Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/super.h')
-rw-r--r--fs/ceph/super.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ceph/super.h b/fs/ceph/super.h
index a3d4943581d0..05947b96c524 100644
--- a/fs/ceph/super.h
+++ b/fs/ceph/super.h
@@ -364,7 +364,7 @@ struct ceph_inode_info {
static inline struct ceph_inode_info *ceph_inode(struct inode *inode)
{
- return list_entry(inode, struct ceph_inode_info, vfs_inode);
+ return container_of(inode, struct ceph_inode_info, vfs_inode);
}
static inline void ceph_i_clear(struct inode *inode, unsigned mask)