aboutsummaryrefslogtreecommitdiffstats
path: root/fs/gfs2/glock.c
diff options
context:
space:
mode:
authorDenis Cheng <crquan@gmail.com>2007-07-31 18:31:11 +0800
committerSteven Whitehouse <swhiteho@redhat.com>2007-10-10 08:55:03 +0100
commit4ef290025ccde7c52ba219cf733a4295acd5401f (patch)
tree9879ae00580d4869bfa0a443f00b3713c34f4bda /fs/gfs2/glock.c
parent[GFS2] Detach buf data during in-place writeback (diff)
downloadlinux-dev-4ef290025ccde7c52ba219cf733a4295acd5401f.tar.xz
linux-dev-4ef290025ccde7c52ba219cf733a4295acd5401f.zip
[GFS2] mark struct *_operations const
these struct *_operations are all method tables, thus should be const. Signed-off-by: Denis Cheng <crquan@gmail.com> Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to '')
-rw-r--r--fs/gfs2/glock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/gfs2/glock.c b/fs/gfs2/glock.c
index e4bc8ae561aa..0054b7df714a 100644
--- a/fs/gfs2/glock.c
+++ b/fs/gfs2/glock.c
@@ -2103,7 +2103,7 @@ static int gfs2_glock_seq_show(struct seq_file *file, void *iter_ptr)
return 0;
}
-static struct seq_operations gfs2_glock_seq_ops = {
+static const struct seq_operations gfs2_glock_seq_ops = {
.start = gfs2_glock_seq_start,
.next = gfs2_glock_seq_next,
.stop = gfs2_glock_seq_stop,