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