freebsd-almost-working-client-20020216
[openafs.git] / src / afs / FBSD / 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  * FBSD 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 #ifndef _OSI_MACHDEP_H_
20 #define _OSI_MACHDEP_H_
21
22 #include <sys/lock.h>
23 #include <sys/time.h>
24 /* #include <kern/sched_prim.h> */
25 /* #include <sys/unix_defs.h> */
26
27 #define getpid()                curproc
28 extern struct simplelock afs_rxglobal_lock;
29
30 /* 
31  * Time related macros
32  */
33 #define osi_Time() time_second
34 #define afs_hz      hz
35
36 #define PAGESIZE 8192
37
38 #define AFS_UCRED       ucred
39 #define AFS_PROC        struct proc
40
41 #define afs_bufferpages bufpages
42
43 #define osi_vnhold(avc,r) do { VN_HOLD((struct vnode *)(avc)); } while (0)
44
45 #define gop_rdwr(rw,gp,base,len,offset,segflg,unit,cred,aresid) \
46   vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(unit),(cred),(aresid), curproc)
47 #undef gop_lookupname
48 #define gop_lookupname osi_lookupname
49
50 #undef afs_suser
51
52 #ifdef KERNEL
53 extern struct proc * afs_global_owner;
54 extern struct lock afs_global_lock;
55 #define AFS_GLOCK() \
56     do { \
57         osi_Assert(curproc); \
58         lockmgr(&afs_global_lock, LK_EXCLUSIVE, 0, curproc); \
59         osi_Assert(afs_global_owner == 0); \
60         afs_global_owner = curproc; \
61     } while (0)
62 #define AFS_GUNLOCK() \
63     do { \
64         osi_Assert(curproc); \
65         osi_Assert(afs_global_owner == curproc); \
66         afs_global_owner = 0; \
67         lockmgr(&afs_global_lock, LK_RELEASE, 0, curproc); \
68     } while(0)
69 #define ISAFS_GLOCK() (afs_global_owner == curproc && curproc)
70 #define AFS_RXGLOCK()
71 #define AFS_RXGUNLOCK()
72 #define ISAFS_RXGLOCK() 1
73
74 #undef SPLVAR
75 #define SPLVAR int splvar
76 #undef NETPRI
77 #define NETPRI splvar=splnet()
78 #undef USERPRI
79 #define USERPRI splx(splvar)
80 #endif /* KERNEL */
81
82 #endif /* _OSI_MACHDEP_H_ */