diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2007-10-12 10:11:35 -0400 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2007-10-12 10:13:06 -0400 |
commit | 364c85584e030f7cfc25e9d27ca893dee6f4bf8e (patch) | |
tree | bbf5bee7acc36e586031fa5bd67adf3216eb084c /arch/s390/kernel | |
parent | f5360106422302e8eed4d07ea8daf81ec19ca345 (diff) |
[S390] Get rid of a bunch of sparse warnings again.
Also removes a bunch of ^L in drivers/s390/cio/cmf.c
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'arch/s390/kernel')
-rw-r--r-- | arch/s390/kernel/audit.c | 7 | ||||
-rw-r--r-- | arch/s390/kernel/audit.h | 15 | ||||
-rw-r--r-- | arch/s390/kernel/compat_audit.c | 1 |
3 files changed, 17 insertions, 6 deletions
diff --git a/arch/s390/kernel/audit.c b/arch/s390/kernel/audit.c index d1c76fe10f29..f4932c22ebe4 100644 --- a/arch/s390/kernel/audit.c +++ b/arch/s390/kernel/audit.c | |||
@@ -2,6 +2,7 @@ | |||
2 | #include <linux/types.h> | 2 | #include <linux/types.h> |
3 | #include <linux/audit.h> | 3 | #include <linux/audit.h> |
4 | #include <asm/unistd.h> | 4 | #include <asm/unistd.h> |
5 | #include "audit.h" | ||
5 | 6 | ||
6 | static unsigned dir_class[] = { | 7 | static unsigned dir_class[] = { |
7 | #include <asm-generic/audit_dir_write.h> | 8 | #include <asm-generic/audit_dir_write.h> |
@@ -40,7 +41,6 @@ int audit_classify_arch(int arch) | |||
40 | int audit_classify_syscall(int abi, unsigned syscall) | 41 | int audit_classify_syscall(int abi, unsigned syscall) |
41 | { | 42 | { |
42 | #ifdef CONFIG_COMPAT | 43 | #ifdef CONFIG_COMPAT |
43 | extern int s390_classify_syscall(unsigned); | ||
44 | if (abi == AUDIT_ARCH_S390) | 44 | if (abi == AUDIT_ARCH_S390) |
45 | return s390_classify_syscall(syscall); | 45 | return s390_classify_syscall(syscall); |
46 | #endif | 46 | #endif |
@@ -61,11 +61,6 @@ int audit_classify_syscall(int abi, unsigned syscall) | |||
61 | static int __init audit_classes_init(void) | 61 | static int __init audit_classes_init(void) |
62 | { | 62 | { |
63 | #ifdef CONFIG_COMPAT | 63 | #ifdef CONFIG_COMPAT |
64 | extern __u32 s390_dir_class[]; | ||
65 | extern __u32 s390_write_class[]; | ||
66 | extern __u32 s390_read_class[]; | ||
67 | extern __u32 s390_chattr_class[]; | ||
68 | extern __u32 s390_signal_class[]; | ||
69 | audit_register_class(AUDIT_CLASS_WRITE_32, s390_write_class); | 64 | audit_register_class(AUDIT_CLASS_WRITE_32, s390_write_class); |
70 | audit_register_class(AUDIT_CLASS_READ_32, s390_read_class); | 65 | audit_register_class(AUDIT_CLASS_READ_32, s390_read_class); |
71 | audit_register_class(AUDIT_CLASS_DIR_WRITE_32, s390_dir_class); | 66 | audit_register_class(AUDIT_CLASS_DIR_WRITE_32, s390_dir_class); |
diff --git a/arch/s390/kernel/audit.h b/arch/s390/kernel/audit.h new file mode 100644 index 000000000000..12b56f4b5a73 --- /dev/null +++ b/arch/s390/kernel/audit.h | |||
@@ -0,0 +1,15 @@ | |||
1 | #ifndef __ARCH_S390_KERNEL_AUDIT_H | ||
2 | #define __ARCH_S390_KERNEL_AUDIT_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | #ifdef CONFIG_COMPAT | ||
7 | extern int s390_classify_syscall(unsigned); | ||
8 | extern __u32 s390_dir_class[]; | ||
9 | extern __u32 s390_write_class[]; | ||
10 | extern __u32 s390_read_class[]; | ||
11 | extern __u32 s390_chattr_class[]; | ||
12 | extern __u32 s390_signal_class[]; | ||
13 | #endif /* CONFIG_COMPAT */ | ||
14 | |||
15 | #endif /* __ARCH_S390_KERNEL_AUDIT_H */ | ||
diff --git a/arch/s390/kernel/compat_audit.c b/arch/s390/kernel/compat_audit.c index 0569f5126e49..d6487bf879e5 100644 --- a/arch/s390/kernel/compat_audit.c +++ b/arch/s390/kernel/compat_audit.c | |||
@@ -1,5 +1,6 @@ | |||
1 | #undef __s390x__ | 1 | #undef __s390x__ |
2 | #include <asm/unistd.h> | 2 | #include <asm/unistd.h> |
3 | #include "audit.h" | ||
3 | 4 | ||
4 | unsigned s390_dir_class[] = { | 5 | unsigned s390_dir_class[] = { |
5 | #include <asm-generic/audit_dir_write.h> | 6 | #include <asm-generic/audit_dir_write.h> |