|
@@ -1541,7 +1541,7 @@ static int ubifs_file_mmap(struct file *file, struct vm_area_struct *vma)
|
|
|
return 0;
|
|
|
}
|
|
|
|
|
|
-struct address_space_operations ubifs_file_address_operations = {
|
|
|
+const struct address_space_operations ubifs_file_address_operations = {
|
|
|
.readpage = ubifs_readpage,
|
|
|
.writepage = ubifs_writepage,
|
|
|
.write_begin = ubifs_write_begin,
|
|
@@ -1551,7 +1551,7 @@ struct address_space_operations ubifs_file_address_operations = {
|
|
|
.releasepage = ubifs_releasepage,
|
|
|
};
|
|
|
|
|
|
-struct inode_operations ubifs_file_inode_operations = {
|
|
|
+const struct inode_operations ubifs_file_inode_operations = {
|
|
|
.setattr = ubifs_setattr,
|
|
|
.getattr = ubifs_getattr,
|
|
|
#ifdef CONFIG_UBIFS_FS_XATTR
|
|
@@ -1562,14 +1562,14 @@ struct inode_operations ubifs_file_inode_operations = {
|
|
|
#endif
|
|
|
};
|
|
|
|
|
|
-struct inode_operations ubifs_symlink_inode_operations = {
|
|
|
+const struct inode_operations ubifs_symlink_inode_operations = {
|
|
|
.readlink = generic_readlink,
|
|
|
.follow_link = ubifs_follow_link,
|
|
|
.setattr = ubifs_setattr,
|
|
|
.getattr = ubifs_getattr,
|
|
|
};
|
|
|
|
|
|
-struct file_operations ubifs_file_operations = {
|
|
|
+const struct file_operations ubifs_file_operations = {
|
|
|
.llseek = generic_file_llseek,
|
|
|
.read = do_sync_read,
|
|
|
.write = do_sync_write,
|