diff options
author | Sage Weil <sage@newdream.net> | 2010-08-03 10:25:30 -0700 |
---|---|---|
committer | Sage Weil <sage@newdream.net> | 2010-08-03 10:25:30 -0700 |
commit | 52dfb8ac0ef41168c1a10590b7259a5ab1cd2ab7 (patch) | |
tree | b559e3232c32a1d5e97785aea6f9ccafbba054ce /fs/ceph/dir.c | |
parent | 213c99ee0cf17ff0fbffb6fb540bd29615cd19d5 (diff) | |
download | op-kernel-dev-52dfb8ac0ef41168c1a10590b7259a5ab1cd2ab7.zip op-kernel-dev-52dfb8ac0ef41168c1a10590b7259a5ab1cd2ab7.tar.gz |
ceph: constify dentry_operations
This makes checkpatch happy.
Signed-off-by: Sage Weil <sage@newdream.net>
Diffstat (limited to 'fs/ceph/dir.c')
-rw-r--r-- | fs/ceph/dir.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/ceph/dir.c b/fs/ceph/dir.c index 0ec6e67..67bbb41 100644 --- a/fs/ceph/dir.c +++ b/fs/ceph/dir.c @@ -27,7 +27,7 @@ const struct inode_operations ceph_dir_iops; const struct file_operations ceph_dir_fops; -struct dentry_operations ceph_dentry_ops; +const struct dentry_operations ceph_dentry_ops; /* * Initialize ceph dentry state. @@ -1241,16 +1241,16 @@ const struct inode_operations ceph_dir_iops = { .create = ceph_create, }; -struct dentry_operations ceph_dentry_ops = { +const struct dentry_operations ceph_dentry_ops = { .d_revalidate = ceph_d_revalidate, .d_release = ceph_dentry_release, }; -struct dentry_operations ceph_snapdir_dentry_ops = { +const struct dentry_operations ceph_snapdir_dentry_ops = { .d_revalidate = ceph_snapdir_d_revalidate, .d_release = ceph_dentry_release, }; -struct dentry_operations ceph_snap_dentry_ops = { +const struct dentry_operations ceph_snap_dentry_ops = { .d_release = ceph_dentry_release, }; |