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