2 * Copyright 2000, International Business Machines Corporation and others.
5 * This software has been released under the terms of the IBM Public
6 * License. For details, see the LICENSE file in the top-level source
7 * directory or online at http://www.openafs.org/dl/license10.html
12 * OpenBSD OSI header file. Extends afs_osi.h.
14 * afs_osi.h includes this file, which is the only way this file should
15 * be included in a source file. This file can redefine macros declared in
21 #ifndef _OSI_MACHDEP_H_
22 #define _OSI_MACHDEP_H_
26 extern struct simplelock afs_rxglobal_lock;
28 #define M_AFSFID (M_TEMP-1)
29 #define M_AFSBUFHDR (M_TEMP-2)
30 #define M_AFSBUFFER (M_TEMP-3)
31 #define M_AFSGENERIC (M_TEMP-4)
35 #define osi_vfs_bsize mnt_stat.f_bsize
36 #define osi_vfs_fsid mnt_stat.f_fsid
37 #define vfs_bsize mnt_stat.f_bsize
38 #define vfs_fsid mnt_stat.f_fsid
39 #define vfs_vnodecovered mnt_vnodecovered
40 #define v_vfsp v_mount
44 #define SetAfsVnode(vn) /* nothing; done in getnewvnode() */
45 #define VN_HOLD(vp) afs_vget((vp), 0)
46 #define VN_RELE(vp) vrele(vp)
47 #define osi_vnhold(avc, r) afs_vget(AFSTOV(avc), 0)
48 #define va_nodeid va_fileid
49 #define vnode_t struct vnode
52 #define afsio_iov uio_iov
53 #define afsio_iovcnt uio_iovcnt
54 #define afsio_offset uio_offset
55 #define afsio_resid uio_resid
56 #define afsio_seg uio_segflg
57 #define AFS_UIOSYS UIO_SYSSPACE
58 #define AFS_UIOUSER UIO_USERSPACE
61 #define AFS_KALLOC(s) afs_nbsd_Alloc(s)
62 #define AFS_KFREE(p, s) afs_nbsd_Free((p), (s))
65 #define AFS_PROC struct proc
66 #define AFS_UCRED ucred
67 #define afs_suser(x) afs_osi_suser(osi_curcred())
68 #define getpid() curproc
69 #define osi_curcred() (curproc->p_cred->pc_ucred)
70 #define osi_curproc() curproc
71 #define p_rcred p_ucred
74 extern struct timeval time;
76 #define osi_GetTime(x) microtime(x)
77 #define osi_Time() (time.tv_sec)
80 #define afs_strcasecmp(s1, s2) strncasecmp((s1), (s2), 65535)
82 #define strcpy(s1, s2) afs_strcpy((s1), (s2))
83 #define strcat(s1, s2) afs_strcat((s1), (s2))
85 #define afs_strcat(s1, s2) strcat((s1), (s2))
89 #define afs_bufferpages bufpages
91 #define iodone biodone
94 #define printk printf /* for RX version of xdr_* */
95 #define setgroups sys_setgroups
98 /* This is not always in scope yet */
101 extern int afs_nbsd_lookupname(char *fnamep, enum uio_seg segflg,
102 int followlink, struct vnode **compvpp);
103 extern void afs_nbsd_getnewvnode(struct vcache *tvc);
104 extern void *afs_nbsd_Alloc(size_t asize);
105 extern void afs_nbsd_Free(void *p, size_t asize);
106 extern int afs_vget();
108 #undef gop_lookupname
109 #define gop_lookupname(fnamep, segflg, followlink, compvpp) \
110 afs_nbsd_lookupname((fnamep), (segflg), (followlink), (compvpp))
114 #ifdef AFS_GLOBAL_SUNLOCK
115 extern struct proc *afs_global_owner;
116 extern struct lock afs_global_lock;
117 #define AFS_GLOCK() \
119 osi_Assert(curproc); \
120 lockmgr(&afs_global_lock, LK_EXCLUSIVE, 0, curproc); \
121 osi_Assert(afs_global_owner == NULL); \
122 afs_global_owner = curproc; \
124 #define AFS_GUNLOCK() \
126 osi_Assert(curproc); \
127 osi_Assert(afs_global_owner == curproc); \
128 afs_global_owner = NULL; \
129 lockmgr(&afs_global_lock, LK_RELEASE, 0, curproc); \
131 #define ISAFS_GLOCK() (afs_global_owner == curproc && curproc)
133 extern struct simplelock afs_global_lock;
135 #define AFS_GUNLOCK()
136 #define AFS_ASSERT_GLOCK()
137 #define ISAFS_GLOCK() 1
141 #define SPLVAR int splvar
143 #define NETPRI splvar=splnet()
145 #define USERPRI splx(splvar)
148 #endif /* _OSI_MACHDEP_H_ */