diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2009-02-20 01:02:22 -0500 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-27 14:44:03 -0400 |
commit | 3ba13d179e8c24c68eac32b93593a6b10fcd1572 (patch) | |
tree | 732162ba9ddfe66c8e892a25765cb30f0807cf31 /kernel/cgroup.c | |
parent | 296c2d86635bd6ecd8f282dfff18bb68fb4fc512 (diff) |
constify dentry_operations: rest
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'kernel/cgroup.c')
-rw-r--r-- | kernel/cgroup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/cgroup.c b/kernel/cgroup.c index 9edb5c4b79b4..b01100ebd074 100644 --- a/kernel/cgroup.c +++ b/kernel/cgroup.c | |||
@@ -1627,7 +1627,7 @@ static struct inode_operations cgroup_dir_inode_operations = { | |||
1627 | static int cgroup_create_file(struct dentry *dentry, int mode, | 1627 | static int cgroup_create_file(struct dentry *dentry, int mode, |
1628 | struct super_block *sb) | 1628 | struct super_block *sb) |
1629 | { | 1629 | { |
1630 | static struct dentry_operations cgroup_dops = { | 1630 | static const struct dentry_operations cgroup_dops = { |
1631 | .d_iput = cgroup_diput, | 1631 | .d_iput = cgroup_diput, |
1632 | }; | 1632 | }; |
1633 | 1633 | ||