diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-05-25 22:16:14 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-05-28 09:24:14 -0700 |
commit | a1ff41bfc1bb7a6d19cf958f89a9b539678781e5 (patch) | |
tree | 70aaaf822f0d309b23e8486500f8f7890cb6a3de /arch/x86 | |
parent | ea149b36c7f511d17dd89fee734cb09778a91fa0 (diff) | |
download | op-kernel-dev-a1ff41bfc1bb7a6d19cf958f89a9b539678781e5.zip op-kernel-dev-a1ff41bfc1bb7a6d19cf958f89a9b539678781e5.tar.gz |
x86, mce: add comment about mce_chrdev_ops being writable
Add a comment explaining that mce_chrdev_ops is intentionally
writable.
[ Impact: comment only ]
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Signed-off-by: Hidetoshi Seto <seto.hidetoshi@jp.fujitsu.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/cpu/mcheck/mce.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kernel/cpu/mcheck/mce.c b/arch/x86/kernel/cpu/mcheck/mce.c index fe216bd..156cdf6 100644 --- a/arch/x86/kernel/cpu/mcheck/mce.c +++ b/arch/x86/kernel/cpu/mcheck/mce.c @@ -940,6 +940,7 @@ static long mce_ioctl(struct file *f, unsigned int cmd, unsigned long arg) } } +/* Modified in mce-inject.c, so not static or const */ struct file_operations mce_chrdev_ops = { .open = mce_open, .release = mce_release, |