Use:
[openafs.git] / src / config / param.sparc_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 sparc 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_SPARC_LINUX20_ENV   1
18 #define AFS_SPARC_LINUX22_ENV   1
19 #define AFS_SPARC_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 227
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 __SMP__
38 #define __SMP__
39 #endif
40 #define AFS_GLOBAL_SUNLOCK
41 #endif
42
43 #if defined(MODULE) && defined(CONFIG_MODVERSIONS)
44 #define MODVERSIONS
45 #include <linux/modversions.h>
46 #endif
47 #endif /* __KERNEL__  && !DUMP_KERNEL*/
48
49 #include <afs/afs_sysnames.h>
50
51 #define AFS_USERSPACE_IP_ADDR 1
52 #define RXK_LISTENER_ENV 1
53 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
54
55 /* Machine / Operating system information */
56 #define SYS_NAME        "sparc_linux24"
57 #define SYS_NAME_ID     SYS_NAME_ID_sparc_linux24
58 #define AFSBIG_ENDIAN    1
59 #define AFS_HAVE_FFS        1       /* Use system's ffs. */
60 #define AFS_HAVE_STATVFS    0   /* System doesn't support statvfs */
61 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
62
63 #ifdef KERNEL
64 #ifndef MIN
65 #define MIN(A,B) ((A) < (B) ? (A) : (B))
66 #endif
67 #ifndef MAX
68 #define MAX(A,B) ((A) > (B) ? (A) : (B))
69 #endif
70 #endif /* KERNEL */
71
72 #if defined(AFS_SMP) && defined(CONFIG_MODVERSIONS)
73 /* hack, I don't know what else with theese symbols */
74 #define _do_spin_lock _do_spin_lock_R__ver__do_spin_lock
75 #define _do_spin_unlock _do_spin_unlock_R__ver__do_spin_unlock
76 #define kernel_flag kernel_flag_R__ver_kernel_flag
77 #endif
78
79 /* on sparclinux is O_LARGEFILE defined but there is not off64_t,
80    so small hack to get usd_file.c work */
81 #ifndef KERNEL
82 #define __USE_FILE_OFFSET64 1
83 #define __USE_LARGEFILE64 1
84 #if !defined off64_t
85 #define off64_t __off64_t
86 #endif
87 #endif
88
89 #endif /* AFS_PARAM_H */