Commit d2d32738 authored by Julia Lawall's avatar Julia Lawall Committed by Greg Kroah-Hartman

lustre: constify inode_operations structures

The inode_operations structures are never modified, so declare them
as const, like all the other inode_operations structures.

Done with the help of Coccinelle.
Signed-off-by: default avatarJulia Lawall <Julia.Lawall@lip6.fr>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 53f1a127
...@@ -3139,7 +3139,7 @@ struct file_operations ll_file_operations_noflock = { ...@@ -3139,7 +3139,7 @@ struct file_operations ll_file_operations_noflock = {
.lock = ll_file_noflock .lock = ll_file_noflock
}; };
struct inode_operations ll_file_inode_operations = { const struct inode_operations ll_file_inode_operations = {
.setattr = ll_setattr, .setattr = ll_setattr,
.getattr = ll_getattr, .getattr = ll_getattr,
.permission = ll_inode_permission, .permission = ll_inode_permission,
......
...@@ -705,7 +705,7 @@ extern const struct address_space_operations ll_aops; ...@@ -705,7 +705,7 @@ extern const struct address_space_operations ll_aops;
extern struct file_operations ll_file_operations; extern struct file_operations ll_file_operations;
extern struct file_operations ll_file_operations_flock; extern struct file_operations ll_file_operations_flock;
extern struct file_operations ll_file_operations_noflock; extern struct file_operations ll_file_operations_noflock;
extern struct inode_operations ll_file_inode_operations; extern const struct inode_operations ll_file_inode_operations;
int ll_have_md_lock(struct inode *inode, __u64 *bits, int ll_have_md_lock(struct inode *inode, __u64 *bits,
ldlm_mode_t l_req_mode); ldlm_mode_t l_req_mode);
ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits, ldlm_mode_t ll_take_md_lock(struct inode *inode, __u64 bits,
...@@ -805,7 +805,7 @@ struct inode *search_inode_for_lustre(struct super_block *sb, ...@@ -805,7 +805,7 @@ struct inode *search_inode_for_lustre(struct super_block *sb,
const struct lu_fid *fid); const struct lu_fid *fid);
/* llite/symlink.c */ /* llite/symlink.c */
extern struct inode_operations ll_fast_symlink_inode_operations; extern const struct inode_operations ll_fast_symlink_inode_operations;
/* llite/llite_close.c */ /* llite/llite_close.c */
struct ll_close_queue { struct ll_close_queue {
......
...@@ -146,7 +146,7 @@ static void ll_put_link(struct inode *unused, void *cookie) ...@@ -146,7 +146,7 @@ static void ll_put_link(struct inode *unused, void *cookie)
ptlrpc_req_finished(cookie); ptlrpc_req_finished(cookie);
} }
struct inode_operations ll_fast_symlink_inode_operations = { const struct inode_operations ll_fast_symlink_inode_operations = {
.readlink = generic_readlink, .readlink = generic_readlink,
.setattr = ll_setattr, .setattr = ll_setattr,
.follow_link = ll_follow_link, .follow_link = ll_follow_link,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment