0ad2cd7bdab5168304f5b8175088c9d0bc0cd850
[openafs.git] / src / config / param.i386_linux26.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
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 i386 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_LINUX26_ENV        1
18 #define AFS_I386_LINUX20_ENV   1
19 #define AFS_I386_LINUX22_ENV   1
20 #define AFS_I386_LINUX24_ENV   1
21 #define AFS_I386_LINUX26_ENV   1
22
23 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
24 #define AFS_SYSCALL 137
25 #define AFS_64BIT_IOPS_ENV  1
26 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
27 #define AFS_64BIT_ENV           1
28 #define AFS_64BIT_CLIENT        1
29
30 #if defined(__KERNEL__) && !defined(KDUMP_KERNEL)
31 #include <linux/threads.h>
32
33 #include <linux/config.h>
34 #ifdef CONFIG_SMP
35 #ifndef AFS_SMP
36 #define AFS_SMP 1
37 #endif
38 #endif
39 /* Using "AFS_SMP" to map to however many #define's are required to get
40  * MP to compile for Linux
41  */
42 #ifdef AFS_SMP
43 #ifndef CONFIG_SMP
44 #define CONFIG_SMP 1
45 #endif
46 #ifndef CONFIG_X86_LOCAL_APIC
47 #define CONFIG_X86_LOCAL_APIC 1
48 #endif
49 #ifndef __SMP__
50 #define __SMP__
51 #endif
52 #endif
53 #define AFS_GLOBAL_SUNLOCK
54
55 #endif /* __KERNEL__  && !DUMP_KERNEL */
56
57 #include <afs/afs_sysnames.h>
58 #define AFS_USERSPACE_IP_ADDR 1
59 #define RXK_LISTENER_ENV 1
60 #define AFS_GCPAGS       1
61
62 #define AFSLITTLE_ENDIAN    1
63 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
64 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
65 #define AFS_VM_RDWR_ENV            1    /* read/write implemented via VM */
66 #define AFS_USE_GETTIMEOFDAY       1    /* use gettimeofday to implement rx clock */
67
68 #ifdef KERNEL
69 #ifndef MIN
70 #define MIN(A,B) ((A) < (B) ? (A) : (B))
71 #endif
72 #ifndef MAX
73 #define MAX(A,B) ((A) > (B) ? (A) : (B))
74 #endif
75 #endif /* KERNEL */
76
77 #ifndef KERNEL
78 #define __USE_LARGEFILE64 1
79 #if !defined off64_t
80 #define off64_t __off64_t
81 #endif
82 #endif
83
84 /* Machine / Operating system information */
85 #define SYS_NAME       "i386_linux26"
86 #define SYS_NAME_ID    SYS_NAME_ID_i386_linux26
87
88 #ifdef __GLIBC__
89 #if (__GLIBC__ > 2) || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 3)
90 #define USE_UCONTEXT
91 #endif
92 #endif
93 #endif /* AFS_PARAM_H */
94
95
96
97 #else /* !defined(UKERNEL) */
98
99 /* This section for user space compiles only */
100
101 #ifndef AFS_PARAM_H
102 #define AFS_PARAM_H
103
104 /* In user space the AFS_LINUX20_ENV should be sufficient. In the kernel,
105  * it's a judgment call. If something is obviously i386 specific, use that
106  * #define instead. Note that "20" refers to the linux 2.0 kernel. The "2"
107  * in the sysname is the current version of the client. This takes into
108  * account the perferred OS user space configuration as well as the kernel.
109  */
110
111 #define UKERNEL                        1        /* user space kernel */
112 #define AFS_ENV                        1
113 #define AFS_USR_LINUX20_ENV    1
114 #define AFS_USR_LINUX22_ENV    1
115 #define AFS_USR_LINUX24_ENV    1
116 #define AFS_USR_LINUX26_ENV    1
117 #define AFS_NONFSTRANS 1
118
119 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
120 #define AFS_SYSCALL 137
121 #define AFS_64BIT_IOPS_ENV  1
122 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
123 #include <afs/afs_sysnames.h>
124
125 #define AFS_USERSPACE_IP_ADDR 1
126 #define RXK_LISTENER_ENV 1
127 #define AFS_GCPAGS             0        /* if nonzero, garbage collect PAGs */
128
129
130 /* Machine / Operating system information */
131 #define SYS_NAME       "i386_linux26"
132 #define SYS_NAME_ID    SYS_NAME_ID_i386_linux26
133 #define AFSLITTLE_ENDIAN    1
134 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
135 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
136 #define AFS_VM_RDWR_ENV            1    /* read/write implemented via VM */
137
138 #define        afsio_iov       uio_iov
139 #define        afsio_iovcnt    uio_iovcnt
140 #define        afsio_offset    uio_offset
141 #define        afsio_seg       uio_segflg
142 #define        afsio_fmode     uio_fmode
143 #define        afsio_resid     uio_resid
144 #define        AFS_UIOSYS      1
145 #define        AFS_UIOUSER     UIO_USERSPACE
146 #define        AFS_CLBYTES     MCLBYTES
147 #define        AFS_MINCHANGE   2
148 #define        VATTR_NULL      usr_vattr_null
149
150 #define AFS_DIRENT
151 #ifndef CMSERVERPREF
152 #define CMSERVERPREF
153 #endif
154
155 #endif /* AFS_PARAM_H */
156
157 #endif /* !defined(UKERNEL) */