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