7397d50f595ad622894f0586da5edfd780478790
[openafs.git] / src / config / param.nbsd20.h
1 #ifndef UKERNEL
2 /* This section for kernel libafs compiles only */
3
4
5 #ifndef AFS_PARAM_COMMON_H
6 #define AFS_PARAM_COMMON_H
7
8 #ifndef ASSEMBLER
9 #include <sys/param.h>
10 #endif
11
12 #define AFS_XBSD_ENV 1          /* {Free,Open,Net}BSD */
13
14 #define AFS_64BIT_ENV  1
15 #define AFS_NAMEI_ENV     1     /* User space interface to file system */
16 #define AFS_64BIT_IOPS_ENV 1    /* Needed for NAMEI */
17 #define AFS_NBSD_ENV 1
18 #define AFS_NBSD15_ENV 1
19 #define AFS_NBSD16_ENV 1
20 #define AFS_NBSD20_ENV 1
21 #define AFS_NONFSTRANS 1
22 #define AFS_KERBEROS_ENV 1
23 #define FTRUNC O_TRUNC
24
25 #define IUPD 0x0010
26 #define IACC 0x0020
27 #define ICHG 0x0040
28 #define IMOD 0x0080
29
30 #define IN_LOCK(ip)     lockmgr(&ip->i_lock, LK_EXCLUSIVE, \
31                                 NULL, curproc)
32 #define IN_UNLOCK(ip)   lockmgr(&ip->i_lock, LK_RELEASE, \
33                                 NULL, curproc)
34
35 #include <afs/afs_sysnames.h>
36
37 #define AFS_VM_RDWR_ENV 1
38 #define AFS_VFS_ENV     1
39 #define AFS_VFSINCL_ENV 1
40 #define AFS_GREEDY43_ENV        1
41 #define AFS_ENV         1
42
43 #define AFS_MOUNT_AFS   "afs"
44 #define AFS_SYSCALL 210
45
46
47 #ifndef MOUNT_UFS
48 #define MOUNT_UFS "ufs"
49 #endif
50
51 #ifndef MOUNT_AFS
52 #define MOUNT_AFS AFS_MOUNT_AFS
53 #endif
54
55 #define AFS_HAVE_FFS            1       /* Use system's ffs. */
56 #define AFS_HAVE_STATVFS        1       /* System supports statvfs */
57
58 #define AFS_GCPAGS              0       /* if nonzero, garbage collect PAGs */
59 #define AFS_USE_GETTIMEOFDAY    1       /* use gettimeofday to implement rx clock */
60
61 /* Extra kernel definitions (from kdefs file) */
62 #ifdef _KERNEL
63 #define AFS_GLOBAL_SUNLOCK        1
64 #define AFS_VFS34       1       /* What is VFS34??? */
65 #define AFS_SHORTGID    1       /* are group id's short? */
66 #define afsio_iov       uio_iov
67 #define afsio_iovcnt    uio_iovcnt
68 #define afsio_offset    uio_offset
69 #define afsio_seg       uio_segflg
70 #define afsio_resid     uio_resid
71 #define AFS_UIOSYS      UIO_SYSSPACE
72 #define AFS_UIOUSER     UIO_USERSPACE
73 #define AFS_CLBYTES     CLBYTES
74 #define osi_GetTime(x)  microtime(x)
75 #define AFS_KALLOC(x)   kalloc(x)
76 #define AFS_KFREE(x,y)  kfree(x,y)
77 #define v_count         v_usecount
78 #define v_vfsp          v_mount
79 #define vfs_bsize       mnt_stat.f_bsize
80 #define vfs_fsid        mnt_stat.f_fsid
81 #define va_nodeid       va_fileid
82 #define vfs_vnodecovered mnt_vnodecovered
83 #define direct          dirent
84 #define vnode_t         struct vnode
85
86 #ifndef MUTEX_DEFAULT
87 #define MUTEX_DEFAULT   0
88 #endif /* MUTEX_DEFAULT */
89
90 #ifndef SSYS
91 #define SSYS            0x00002
92 #endif /* SSYS */
93
94 #define p_rcred         p_ucred
95
96 #define VN_RELE(vp)     vrele(((struct vnode *)(vp)))
97 #define VN_HOLD(vp)     VREF(((struct vnode *)(vp)))
98
99 #if     !defined(ASSEMBLER) && !defined(__LANGUAGE_ASSEMBLY__)
100 enum vcexcl { NONEXCL, EXCL };
101
102 #ifdef KERNEL
103 #ifndef MIN
104 #define MIN(A,B) ((A) < (B) ? (A) : (B))
105 #endif
106 #ifndef MAX
107 #define MAX(A,B) ((A) > (B) ? (A) : (B))
108 #endif
109 #endif /* KERNEL */
110
111 #endif /* ! ASSEMBLER & ! __LANGUAGE_ASSEMBLY__ */
112 #endif /* _KERNEL */
113
114 #endif /* AFS_PARAM_COMMON_H */
115
116 #else /* !defined(UKERNEL) */
117
118 /* This section for user space compiles only */
119
120
121 #endif /* !defined(UKERNEL) */