diff options
author | Denis Cheng <crquan@gmail.com> | 2007-07-31 10:31:11 (GMT) |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2007-10-10 07:55:03 (GMT) |
commit | 4ef290025ccde7c52ba219cf733a4295acd5401f (patch) | |
tree | 9879ae00580d4869bfa0a443f00b3713c34f4bda /fs/gfs2/eaops.h | |
parent | 0f8468c8bef3d04637c924e7bef20ca53018b319 (diff) | |
download | linux-4ef290025ccde7c52ba219cf733a4295acd5401f.tar.xz |
[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 'fs/gfs2/eaops.h')
-rw-r--r-- | fs/gfs2/eaops.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/gfs2/eaops.h b/fs/gfs2/eaops.h index 508b4f7..da2f7fb 100644 --- a/fs/gfs2/eaops.h +++ b/fs/gfs2/eaops.h @@ -22,9 +22,9 @@ struct gfs2_eattr_operations { unsigned int gfs2_ea_name2type(const char *name, const char **truncated_name); -extern struct gfs2_eattr_operations gfs2_system_eaops; +extern const struct gfs2_eattr_operations gfs2_system_eaops; -extern struct gfs2_eattr_operations *gfs2_ea_ops[]; +extern const struct gfs2_eattr_operations *gfs2_ea_ops[]; #endif /* __EAOPS_DOT_H__ */ |