aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph
diff options
context:
space:
mode:
authorSage Weil <sage@newdream.net>2011-03-15 14:57:41 -0700
committerSage Weil <sage@newdream.net>2011-03-21 12:24:26 -0700
commit147851d2dc4d2be2f60d40276d12d7ef82f8a7ce (patch)
treee7b112fab505f6f97694fee5f2d6c509e8dd6289 /fs/ceph
parentceph: add request to the tail of unsafe write list (diff)
downloadlinux-dev-147851d2dc4d2be2f60d40276d12d7ef82f8a7ce.tar.xz
linux-dev-147851d2dc4d2be2f60d40276d12d7ef82f8a7ce.zip
ceph: rename dentry_release -> d_release, fix comment
Just for consistency's sake. Fix obsolete comment too. Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph')
-rw-r--r--fs/ceph/dir.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c
index cbe875d3a522..1a867a3601ae 100644
--- a/fs/ceph/dir.c
+++ b/fs/ceph/dir.c
@@ -1027,14 +1027,13 @@ out_touch:
}
/*
- * When a dentry is released, clear the dir I_COMPLETE if it was part
- * of the current dir gen or if this is in the snapshot namespace.
+ * Release our ceph_dentry_info.
*/
-static void ceph_dentry_release(struct dentry *dentry)
+static void ceph_d_release(struct dentry *dentry)
{
struct ceph_dentry_info *di = ceph_dentry(dentry);
- dout("dentry_release %p\n", dentry);
+ dout("d_release %p\n", dentry);
if (di) {
ceph_dentry_lru_del(dentry);
if (di->lease_session)
@@ -1259,14 +1258,14 @@ const struct inode_operations ceph_dir_iops = {
const struct dentry_operations ceph_dentry_ops = {
.d_revalidate = ceph_d_revalidate,
- .d_release = ceph_dentry_release,
+ .d_release = ceph_d_release,
};
const struct dentry_operations ceph_snapdir_dentry_ops = {
.d_revalidate = ceph_snapdir_d_revalidate,
- .d_release = ceph_dentry_release,
+ .d_release = ceph_d_release,
};
const struct dentry_operations ceph_snap_dentry_ops = {
- .d_release = ceph_dentry_release,
+ .d_release = ceph_d_release,
};