Commit 7f1346a9 authored by Tobias Klauser's avatar Tobias Klauser Committed by Theodore Ts'o

ext4: Declare seq_operations and file_operations structures as const

Signed-off-by: default avatarTobias Klauser <tklauser@distanz.ch>
Signed-off-by: default avatar"Theodore Ts'o" <tytso@mit.edu>
parent b3a3ca8c
...@@ -2202,7 +2202,7 @@ static void ext4_mb_seq_history_stop(struct seq_file *seq, void *v) ...@@ -2202,7 +2202,7 @@ static void ext4_mb_seq_history_stop(struct seq_file *seq, void *v)
{ {
} }
static struct seq_operations ext4_mb_seq_history_ops = { static const struct seq_operations ext4_mb_seq_history_ops = {
.start = ext4_mb_seq_history_start, .start = ext4_mb_seq_history_start,
.next = ext4_mb_seq_history_next, .next = ext4_mb_seq_history_next,
.stop = ext4_mb_seq_history_stop, .stop = ext4_mb_seq_history_stop,
...@@ -2284,7 +2284,7 @@ static ssize_t ext4_mb_seq_history_write(struct file *file, ...@@ -2284,7 +2284,7 @@ static ssize_t ext4_mb_seq_history_write(struct file *file,
return count; return count;
} }
static struct file_operations ext4_mb_seq_history_fops = { static const struct file_operations ext4_mb_seq_history_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = ext4_mb_seq_history_open, .open = ext4_mb_seq_history_open,
.read = seq_read, .read = seq_read,
...@@ -2363,7 +2363,7 @@ static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v) ...@@ -2363,7 +2363,7 @@ static void ext4_mb_seq_groups_stop(struct seq_file *seq, void *v)
{ {
} }
static struct seq_operations ext4_mb_seq_groups_ops = { static const struct seq_operations ext4_mb_seq_groups_ops = {
.start = ext4_mb_seq_groups_start, .start = ext4_mb_seq_groups_start,
.next = ext4_mb_seq_groups_next, .next = ext4_mb_seq_groups_next,
.stop = ext4_mb_seq_groups_stop, .stop = ext4_mb_seq_groups_stop,
...@@ -2384,7 +2384,7 @@ static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file) ...@@ -2384,7 +2384,7 @@ static int ext4_mb_seq_groups_open(struct inode *inode, struct file *file)
} }
static struct file_operations ext4_mb_seq_groups_fops = { static const struct file_operations ext4_mb_seq_groups_fops = {
.owner = THIS_MODULE, .owner = THIS_MODULE,
.open = ext4_mb_seq_groups_open, .open = ext4_mb_seq_groups_open,
.read = seq_read, .read = seq_read,
......
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