c3181f6cda4df5119c95abe8267945761ab08987
[openafs.git] / src / afs / OBSD / osi_machdep.h
1 /*
2  * Copyright 2000, International Business Machines Corporation and others.
3  * All Rights Reserved.
4  * 
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
8  */
9
10 /*
11  *
12  * OpenBSD OSI header file. Extends afs_osi.h.
13  *
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
16  * afs_osi.h.
17  */
18
19 /* Id: $ */
20
21 #ifndef _OSI_MACHDEP_H_
22 #define _OSI_MACHDEP_H_
23
24 #include <sys/lock.h>
25
26 #define getpid()                curproc
27 extern struct simplelock afs_rxglobal_lock;
28
29 /* 
30  * Time related macros
31  */
32 extern struct timeval time;
33 #define osi_Time() (time.tv_sec)
34 #define afs_hz      hz
35
36 #define M_AFSFID        (M_TEMP-1)
37 #define M_AFSBUFHDR     (M_TEMP-2)
38 #define M_AFSBUFFER     (M_TEMP-3)
39 #define M_AFSGENERIC    (M_TEMP-4)
40
41 #define PAGESIZE 8192
42
43 #define AFS_UCRED       ucred
44 #define AFS_PROC        struct proc
45
46 #define afs_bufferpages bufpages
47
48 #define osi_vnhold(avc, r) afs_vget(AFSTOV(avc), 0)
49
50 #define gop_rdwr(rw,gp,base,len,offset,segflg,unit,cred,aresid) \
51   vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(unit),(cred),(aresid), curproc)
52
53 #define afs_suser() afs_osi_suser(osi_curcred()) 
54
55 extern int (**afs_vnodeop_p)();
56 #define SetAfsVnode(vn) /* nothing; done in getnewvnode() */
57 #define IsAfsVnode(vn)      ((vn)->v_op == afs_vnodeop_p)
58
59 #define AFS_HOLD(vp) afs_nbsd_ref(vp)
60 #define AFS_RELE(vp) afs_nbsd_rele(vp)
61 extern int afs_vget();
62 extern void afs_nbsd_ref(struct vnode *);
63 extern void afs_nbsd_rele(struct vnode *);
64
65 #define va_nodeid va_fileid
66 #define v_vfsp v_mount
67 #define vfs_vnodecovered mnt_vnodecovered
68 #define vfs_bsize mnt_stat.f_bsize
69 typedef void (*osi_timeout_t)(void *);
70 #define osi_timeout_t_done
71 #define osi_curproc()           (curproc)
72 #define osi_curcred()           (curproc->p_cred->pc_ucred)
73 #define osi_vfs mount
74 #define osi_vfs_bsize mnt_stat.f_bsize
75 #define osi_vfs_fsid mnt_stat.f_fsid
76 #define afs_osi_alloc osi_Alloc
77 #define afs_osi_free osi_Free
78 #define printk printf                   /* for RX version of xdr_* */
79 #define vType(vc)               (vc)->v->v_type
80 #define vSetType(vc, type)      AFSTOV(vc)->v_type = (type)
81 #define vSetVfsp(vc, vfsp)      AFSTOV(vc)->v_mount = (vfsp)
82 #define FTRUNC O_TRUNC
83 #define FEXLOCK O_EXLOCK
84 #define FSHLOCK O_SHLOCK
85 #define UVM
86
87 /* no protoytpe 'cuz our includers don't always have uio_rw in scope first */
88 extern int afs_nbsd_rdwr();
89 extern int afs_nbsd_lookupname();
90 extern void afs_nbsd_getnewvnode();
91
92 #define VOP_RDWR afs_nbsd_rdwr
93 #define gop_lookupname(fnamep, segflg, followlink, dirvpp, compvpp) \
94         afs_nbsd_lookupname((fnamep), (segflg), (followlink), (dirvpp), (compvpp))
95
96 #ifdef KERNEL
97 extern struct simplelock afs_global_lock;
98
99 #ifndef AFS_GLOBAL_SUNLOCK
100 #define AFS_ASSERT_GLOCK()
101 #endif
102 #define AFS_GLOCK()
103 #define AFS_GUNLOCK()
104 #define AFS_RXGLOCK()
105 #define AFS_RXGUNLOCK()
106 #define ISAFS_RXGLOCK() 1
107 #define ISAFS_GLOCK() 1
108
109 #undef SPLVAR
110 #define SPLVAR
111 #undef NETPRI
112 #define NETPRI
113 #undef USERPRI
114 #define USERPRI
115 #endif /* KERNEL */
116
117 #endif /* _OSI_MACHDEP_H_ */