diff options
author | Arjan van de Ven | 2007-02-12 09:55:40 +0100 |
---|---|---|
committer | Linus Torvalds | 2007-02-12 18:48:46 +0100 |
commit | c5ef1c42c51b1b5b4a401a6517bdda30933ddbaf (patch) | |
tree | e1a9804a8af427f700aaba4b386cf8679b317e83 /fs/sysv/file.c | |
parent | [PATCH] mark struct inode_operations const 2 (diff) | |
download | kernel-qcow2-linux-c5ef1c42c51b1b5b4a401a6517bdda30933ddbaf.tar.gz kernel-qcow2-linux-c5ef1c42c51b1b5b4a401a6517bdda30933ddbaf.tar.xz kernel-qcow2-linux-c5ef1c42c51b1b5b4a401a6517bdda30933ddbaf.zip |
[PATCH] mark struct inode_operations const 3
Many struct inode_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.
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 'fs/sysv/file.c')
-rw-r--r-- | fs/sysv/file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/sysv/file.c b/fs/sysv/file.c index 47a4b728f15b..0732ddb9020b 100644 --- a/fs/sysv/file.c +++ b/fs/sysv/file.c @@ -30,7 +30,7 @@ const struct file_operations sysv_file_operations = { .sendfile = generic_file_sendfile, }; -struct inode_operations sysv_file_inode_operations = { +const struct inode_operations sysv_file_inode_operations = { .truncate = sysv_truncate, .getattr = sysv_getattr, }; |