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