Make whitespace consistent in NetBSD system type ID number section
[openafs.git] / src / config / param.i386_dfbsd_23.h
1 #ifndef AFS_PARAM_H
2 #define AFS_PARAM_H
3
4 /* Machine / Operating system information */
5 #define SYS_NAME        "i386_dfbsd_23"
6 #define SYS_NAME_ID     SYS_NAME_ID_i386_dfbsd_23
7
8 #define AFSLITTLE_ENDIAN    1
9 #define AFS_HAVE_FFS        1   /* Use system's ffs. */
10 #define AFS_HAVE_STATVFS    1   /* System doesn't support statvfs */
11 #define AFS_VM_RDWR_ENV     1   /* read/write implemented via VM */
12 #define AFS_FAKEOPEN_ENV    1   /* call afs_FakeOpen as if !AFS_VM_RDWR */
13
14
15 #ifndef UKERNEL
16 /* This section for kernel libafs compiles only */
17
18 #ifndef IGNORE_STDS_H
19 #include <sys/param.h>
20 #endif
21
22 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
23 #define AFS_X86_XBSD_ENV 1
24
25 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
26 #define AFS_64BIT_CLIENT 1
27 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
28 #define AFS_DFBSD_ENV 1
29 #define AFS_DFBSD22_ENV 1
30 #define AFS_DFBSD23_ENV 1
31 #define AFS_X86_DFBSD_ENV 1
32 #define AFS_X86_DFBSD22_ENV 1
33 #define AFS_X86_DFBSD23_ENV 1
34 #define AFS_X86_ENV 1
35 #undef  AFS_NONFSTRANS
36 #define AFS_NONFSTRANS 1
37 #define FTRUNC O_TRUNC
38
39 #define IUPD 0x0010
40 #define IACC 0x0020
41 #define ICHG 0x0040
42 #define IMOD 0x0080
43
44 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
45                                 NULL, curproc)
46 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
47                                 NULL, curproc)
48
49 #include <afs/afs_sysnames.h>
50
51 #define AFS_VFS_ENV     1
52 #define AFS_VFSINCL_ENV 1
53 #define AFS_GREEDY43_ENV        1
54 #define AFS_ENV         1
55
56 #define AFS_SYSCALL     339
57 #define AFS_MOUNT_AFS   "afs"
58
59 #ifndef MOUNT_UFS
60 #define MOUNT_UFS "ufs"
61 #endif
62
63 #ifndef MOUNT_AFS
64 #define MOUNT_AFS AFS_MOUNT_AFS
65 #endif
66
67 #define RXK_LISTENER_ENV 1
68 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
69 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
70
71 /* Extra kernel definitions (from kdefs file) */
72 #ifdef _KERNEL
73 #define AFS_GLOBAL_SUNLOCK        1
74 #define AFS_VFS34       1       /* What is VFS34??? */
75 #define AFS_SHORTGID    0       /* are group id's short? */
76 #define afsio_iov       uio_iov
77 #define afsio_iovcnt    uio_iovcnt
78 #define afsio_offset    uio_offset
79 #define afsio_seg       uio_segflg
80 #define afsio_resid     uio_resid
81 #define AFS_UIOSYS      UIO_SYSSPACE
82 #define AFS_UIOUSER     UIO_USERSPACE
83 #define AFS_CLBYTES     CLBYTES
84 #define osi_GetTime(x)  microtime(x)
85 #define AFS_KALLOC(x)   osi_fbsd_alloc((x), 1)
86 #undef  AFS_KALLOC_NOSLEEP
87 #define AFS_KALLOC_NOSLEEP(x) osi_fbsd_alloc((x), 0)
88 #define AFS_KFREE(x,y)  osi_fbsd_free((x))
89 #define v_count         v_usecount
90 #define v_vfsp          v_mount
91 #define vfs_bsize       mnt_stat.f_bsize
92 #define vfs_fsid        mnt_stat.f_fsid
93 #define va_nodeid       va_fileid
94 #define vfs_vnodecovered mnt_vnodecovered
95 #define direct          dirent
96 #define vnode_t         struct vnode
97
98 #ifndef MUTEX_DEFAULT
99 #define MUTEX_DEFAULT   0
100 #endif /* MUTEX_DEFAULT */
101
102 #ifndef SSYS
103 #define SSYS            0x00002
104 #endif /* SSYS */
105
106 #define p_rcred         p_ucred
107
108 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
109 enum vcexcl { NONEXCL, EXCL };
110
111 #ifdef KERNEL
112 #ifndef MIN
113 #define MIN(A,B) ((A) < (B) ? (A) : (B))
114 #endif
115 #ifndef MAX
116 #define MAX(A,B) ((A) > (B) ? (A) : (B))
117 #endif
118 #endif /* KERNEL */
119
120 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
121 #endif /* _KERNEL */
122
123 #else /* !defined(UKERNEL) */
124
125 /* This section for user space compiles only */
126
127 #define UKERNEL                 1       /* user space kernel */
128 #define AFS_ENV                 1
129 #define AFS_VFSINCL_ENV         1
130 #define AFS_USR_DFBSD22_ENV     1
131 #define AFS_USR_DFBSD23_ENV     1
132 #define AFS_USR_DFBSD_ENV       1
133 #undef  AFS_NONFSTRANS
134 #define AFS_NONFSTRANS          1
135
136 #define AFS_MOUNT_AFS "afs"     /* The name of the filesystem type. */
137 #define AFS_SYSCALL 339
138 #define AFS_NAMEI_ENV         1 /* User space interface to file system */
139 #define AFS_64BIT_IOPS_ENV    1 /* Needed for NAMEI */
140 #define AFS_USERSPACE_IP_ADDR 1
141 #define RXK_LISTENER_ENV      1
142 #define AFS_GCPAGS            0 /* if nonzero, garbage collect PAGs */
143
144 #include <afs/afs_sysnames.h>
145
146 #define afsio_iov       uio_iov
147 #define afsio_iovcnt    uio_iovcnt
148 #define afsio_offset    uio_offset
149 #define afsio_seg       uio_segflg
150 #define afsio_fmode     uio_fmode
151 #define afsio_resid     uio_resid
152 #define AFS_UIOSYS      1
153 #define AFS_UIOUSER     UIO_USERSPACE
154 #define AFS_CLBYTES     MCLBYTES
155 #define AFS_MINCHANGE   2
156 #define VATTR_NULL      usr_vattr_null
157
158 #define AFS_DIRENT
159 #ifndef CMSERVERPREF
160 #define CMSERVERPREF
161 #endif
162
163 #include <sys/param.h>
164 #include <sys/types.h>
165 #include <sys/mount.h>
166 #include <sys/fcntl.h>
167 #include <sys/uio.h>
168 #include <sys/socket.h>
169 #include <netinet/in.h>
170 #include <limits.h>
171
172 #endif /* !defined(UKERNEL) */
173
174 /* general user-space compiles */
175
176 #if defined(UKERNEL) || !defined(KERNEL)
177 #define STDLIB_HAS_MALLOC_PROTOS 1
178 #endif
179
180 #endif /* AFS_PARAM_H */