c71fed920662e6bad66153ba0a5df014f21110e9
[openafs.git] / src / config / param.s390_linux24.h
1 /* Copyright (C) 1998 by Transarc Corporation */
2
3
4 #ifndef AFS_PARAM_H
5 #define AFS_PARAM_H
6
7 /* In user space the AFS_LINUX20_ENV should be sufficient. In the kernel,
8  * it's a judgment call. If something is obviously s390 specific, use that
9  * #define instead. Note that "20" refers to the linux 2.0 kernel. The "2"
10  * in the sysname is the current version of the client. This takes into
11  * account the perferred OS user space configuration as well as the kernel.
12  */
13
14 #define AFS_LINUX20_ENV 1
15 #define AFS_LINUX22_ENV 1
16 #define AFS_LINUX24_ENV 1
17 #define AFS_S390_LINUX20_ENV    1
18 #define AFS_S390_LINUX22_ENV    1
19 #define AFS_S390_LINUX24_ENV    1
20 #define AFS_NONFSTRANS 1
21
22 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
23 #define AFS_SYSCALL 137
24 #define AFS_64BIT_IOPS_ENV  1
25 #define AFS_NAMEI_ENV     1   /* User space interface to file system */
26
27 #if defined(__KERNEL__) && !defined(KDUMP_KERNEL)
28 #include <linux/config.h>
29 #ifdef CONFIG_SMP
30 #undef CONFIG_SMP
31 #endif
32 /* Using "AFS_SMP" to map to however many #define's are required to get
33  * MP to compile for Linux
34  */
35 #ifdef AFS_SMP
36 #define CONFIG_SMP 1
37 #ifndef CONFIG_S390_LOCAL_APIC
38 #define CONFIG_S390_LOCAL_APIC
39 #endif
40 #ifndef __SMP__
41 #define __SMP__
42 #endif
43 #define AFS_GLOBAL_SUNLOCK
44 #endif
45 #if defined(MODULE) && defined(CONFIG_MODVERSIONS)
46 #define MODVERSIONS
47 #include <linux/modversions.h>
48 #endif
49 #endif /* __KERNEL__  && !DUMP_KERNEL*/
50
51 #include <afs/afs_sysnames.h>
52
53 #define AFS_USERSPACE_IP_ADDR 1
54 #define RXK_LISTENER_ENV 1
55 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
56
57 /* Machine / Operating system information */
58 #define SYS_NAME        "s390_linux24"
59 #define SYS_NAME_ID     SYS_NAME_ID_s390_linux24
60 #define AFSBIG_ENDIAN    1
61 #define AFS_HAVE_FFS        1       /* Use system's ffs. */
62 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
63 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
64
65 #ifdef KERNEL
66 #ifndef MIN
67 #define MIN(A,B) ((A) < (B) ? (A) : (B))
68 #endif
69 #ifndef MAX
70 #define MAX(A,B) ((A) > (B) ? (A) : (B))
71 #endif
72 #endif /* KERNEL */
73
74 #endif /* AFS_PARAM_H */