Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 66de045d authored by Steven Whitehouse's avatar Steven Whitehouse
Browse files

[GFS2] Make our address_space_operations const

parent 0c0834a3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -159,7 +159,7 @@ static int gfs2_aspace_releasepage(struct page *page, gfp_t gfp_mask)
	return try_to_free_buffers(page);
}

static struct address_space_operations aspace_aops = {
static const struct address_space_operations aspace_aops = {
	.writepage = gfs2_aspace_writepage,
	.releasepage = gfs2_aspace_releasepage,
};
+1 −1
Original line number Diff line number Diff line
@@ -655,7 +655,7 @@ static ssize_t gfs2_direct_IO(int rw, struct kiocb *iocb,
				    DIO_OWN_LOCKING);
}

struct address_space_operations gfs2_file_aops = {
const struct address_space_operations gfs2_file_aops = {
	.writepage = gfs2_writepage,
	.readpage = gfs2_readpage,
	.readpages = gfs2_readpages,
+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@
#ifndef __OPS_ADDRESS_DOT_H__
#define __OPS_ADDRESS_DOT_H__

extern struct address_space_operations gfs2_file_aops;
extern const struct address_space_operations gfs2_file_aops;
extern int gfs2_get_block(struct inode *inode, sector_t lblock,
			  struct buffer_head *bh_result, int create);