diff options
author | Arjan van de Ven <arjan@linux.intel.com> | 2007-02-12 03:55:31 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-12 12:48:44 -0500 |
commit | 5dfe4c964a0dd7bb3a1d64a4166835a153146207 (patch) | |
tree | 2fb2fd8c09922be4f40a5a9ac50b537b1d780e27 /arch/i386 | |
parent | 540473208f8ac71c25a87e1a2670c3c18dd4d6db (diff) |
[PATCH] mark struct file_operations const 2
Many struct file_operations in the kernel can be "const". Marking them const
moves these to the .rodata section, which avoids false sharing with potential
dirty data. In addition it'll catch accidental writes at compile time to
these shared resources.
[akpm@osdl.org: sparc64 fix]
Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/kernel/apm.c | 2 | ||||
-rw-r--r-- | arch/i386/kernel/cpu/mtrr/if.c | 2 | ||||
-rw-r--r-- | arch/i386/kernel/cpuid.c | 2 | ||||
-rw-r--r-- | arch/i386/kernel/microcode.c | 2 | ||||
-rw-r--r-- | arch/i386/kernel/msr.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/arch/i386/kernel/apm.c b/arch/i386/kernel/apm.c index 199016927541..db99a8948dae 100644 --- a/arch/i386/kernel/apm.c +++ b/arch/i386/kernel/apm.c | |||
@@ -1894,7 +1894,7 @@ static int __init apm_setup(char *str) | |||
1894 | __setup("apm=", apm_setup); | 1894 | __setup("apm=", apm_setup); |
1895 | #endif | 1895 | #endif |
1896 | 1896 | ||
1897 | static struct file_operations apm_bios_fops = { | 1897 | static const struct file_operations apm_bios_fops = { |
1898 | .owner = THIS_MODULE, | 1898 | .owner = THIS_MODULE, |
1899 | .read = do_read, | 1899 | .read = do_read, |
1900 | .poll = do_poll, | 1900 | .poll = do_poll, |
diff --git a/arch/i386/kernel/cpu/mtrr/if.c b/arch/i386/kernel/cpu/mtrr/if.c index 5ae1705eafa6..ee771f305f96 100644 --- a/arch/i386/kernel/cpu/mtrr/if.c +++ b/arch/i386/kernel/cpu/mtrr/if.c | |||
@@ -339,7 +339,7 @@ static int mtrr_open(struct inode *inode, struct file *file) | |||
339 | return single_open(file, mtrr_seq_show, NULL); | 339 | return single_open(file, mtrr_seq_show, NULL); |
340 | } | 340 | } |
341 | 341 | ||
342 | static struct file_operations mtrr_fops = { | 342 | static const struct file_operations mtrr_fops = { |
343 | .owner = THIS_MODULE, | 343 | .owner = THIS_MODULE, |
344 | .open = mtrr_open, | 344 | .open = mtrr_open, |
345 | .read = seq_read, | 345 | .read = seq_read, |
diff --git a/arch/i386/kernel/cpuid.c b/arch/i386/kernel/cpuid.c index 51130b39cd2e..4da75fa3208d 100644 --- a/arch/i386/kernel/cpuid.c +++ b/arch/i386/kernel/cpuid.c | |||
@@ -148,7 +148,7 @@ static int cpuid_open(struct inode *inode, struct file *file) | |||
148 | /* | 148 | /* |
149 | * File operations we support | 149 | * File operations we support |
150 | */ | 150 | */ |
151 | static struct file_operations cpuid_fops = { | 151 | static const struct file_operations cpuid_fops = { |
152 | .owner = THIS_MODULE, | 152 | .owner = THIS_MODULE, |
153 | .llseek = cpuid_seek, | 153 | .llseek = cpuid_seek, |
154 | .read = cpuid_read, | 154 | .read = cpuid_read, |
diff --git a/arch/i386/kernel/microcode.c b/arch/i386/kernel/microcode.c index c8fa13721bcb..381252bae3d8 100644 --- a/arch/i386/kernel/microcode.c +++ b/arch/i386/kernel/microcode.c | |||
@@ -451,7 +451,7 @@ static ssize_t microcode_write (struct file *file, const char __user *buf, size_ | |||
451 | return ret; | 451 | return ret; |
452 | } | 452 | } |
453 | 453 | ||
454 | static struct file_operations microcode_fops = { | 454 | static const struct file_operations microcode_fops = { |
455 | .owner = THIS_MODULE, | 455 | .owner = THIS_MODULE, |
456 | .write = microcode_write, | 456 | .write = microcode_write, |
457 | .open = microcode_open, | 457 | .open = microcode_open, |
diff --git a/arch/i386/kernel/msr.c b/arch/i386/kernel/msr.c index 4a472a17d1c6..4e14264f392a 100644 --- a/arch/i386/kernel/msr.c +++ b/arch/i386/kernel/msr.c | |||
@@ -230,7 +230,7 @@ static int msr_open(struct inode *inode, struct file *file) | |||
230 | /* | 230 | /* |
231 | * File operations we support | 231 | * File operations we support |
232 | */ | 232 | */ |
233 | static struct file_operations msr_fops = { | 233 | static const struct file_operations msr_fops = { |
234 | .owner = THIS_MODULE, | 234 | .owner = THIS_MODULE, |
235 | .llseek = msr_seek, | 235 | .llseek = msr_seek, |
236 | .read = msr_read, | 236 | .read = msr_read, |