freebsd-5-20030404
[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 lock afs_global_lock;
54 #if defined(AFS_FBSD50_ENV)
55 #define VT_AFS          "afs"
56 #define VROOT           VV_ROOT
57 #define v_flag          v_vflag
58 extern struct thread * afs_global_owner;
59 #define AFS_GLOCK() \
60     do { \
61         osi_Assert(curthread); \
62         lockmgr(&afs_global_lock, LK_EXCLUSIVE, 0, curthread); \
63         osi_Assert(afs_global_owner == 0); \
64         afs_global_owner = curthread; \
65     } while (0)
66 #define AFS_GUNLOCK() \
67     do { \
68         osi_Assert(curthread); \
69         osi_Assert(afs_global_owner == curthread); \
70         afs_global_owner = 0; \
71         lockmgr(&afs_global_lock, LK_RELEASE, 0, curthread); \
72     } while(0)
73 #define ISAFS_GLOCK() (afs_global_owner == curthread && curthread)
74 #else /* FBSD50 */
75 extern struct proc * afs_global_owner;
76 #define AFS_GLOCK() \
77     do { \
78         osi_Assert(curproc); \
79         lockmgr(&afs_global_lock, LK_EXCLUSIVE, 0, curproc); \
80         osi_Assert(afs_global_owner == 0); \
81         afs_global_owner = curproc; \
82     } while (0)
83 #define AFS_GUNLOCK() \
84     do { \
85         osi_Assert(curproc); \
86         osi_Assert(afs_global_owner == curproc); \
87         afs_global_owner = 0; \
88         lockmgr(&afs_global_lock, LK_RELEASE, 0, curproc); \
89     } while(0)
90 #define ISAFS_GLOCK() (afs_global_owner == curproc && curproc)
91 #endif /* FBSD50 */
92 #define AFS_RXGLOCK()
93 #define AFS_RXGUNLOCK()
94 #define ISAFS_RXGLOCK() 1
95
96 #undef SPLVAR
97 #define SPLVAR int splvar
98 #undef NETPRI
99 #define NETPRI splvar=splnet()
100 #undef USERPRI
101 #define USERPRI splx(splvar)
102 #endif /* KERNEL */
103
104 #endif /* _OSI_MACHDEP_H_ */