bf144a53657acf1cc660484264e9f95320fa69ce
[openafs.git] / src / afs / HPUX / 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  * HPUX OSI header file. Extends afs_osi.h.
12  *
13  * afs_osi.h includes this file, which is the only way this file should
14  * be included in a source file. This file can redefine macros declared in
15  * afs_osi.h.
16  */
17
18 #ifndef _OSI_MACHDEP_H_
19 #define _OSI_MACHDEP_H_
20
21 #include "h/kern_sem.h"
22
23 #define afs_hz      hz
24 extern struct timeval time;
25 #define osi_Time() (time.tv_sec)
26
27 #ifdef PAGESIZE
28 #undef PAGESIZE
29 #endif
30 #define PAGESIZE 8192
31
32 #define AFS_UCRED       ucred
33 #define AFS_PROC        proc_t
34
35 #define osi_vnhold(avc, r)  do { VN_HOLD(AFSTOV(avc)); } while(0)
36 #define gop_rdwr(rw,gp,base,len,offset,segflg,unit,aresid) \
37   vn_rdwr((rw),(gp),(base),(len),(offset),(segflg),(unit),(aresid),0)
38
39 #undef  afs_suser
40
41 #define osi_curcred()           (p_cred(u.u_procp))
42
43 #define getpid()                (afs_uint32)p_pid(u.u_procp)
44
45 #define getppid()               (afs_uint32)p_ppid(u.u_procp)
46
47 #ifdef KERNEL
48 /*
49  * Global lock support. 
50  *
51  * HP uses global mutex to protect afs land
52  */
53
54 extern sema_t afs_global_sema;
55
56 extern void osi_InitGlock(void);
57
58 extern void       afsHash(int nbuckets);
59 extern sv_sema_t *afsHashInsertFind(tid_t key);
60 extern sv_sema_t *afsHashFind(tid_t key);
61 extern void       afsHashRelease(tid_t key);
62
63 #define AFS_GLOCK_PID   kt_tid(u.u_kthreadp)
64 #define AFS_SAVE_SEMA   afsHashInsertFind(AFS_GLOCK_PID)
65 #define AFS_FIND_SEMA   afsHashFind(AFS_GLOCK_PID)
66 #define AFS_GLOCK()     MP_PXSEMA(&afs_global_sema, AFS_SAVE_SEMA)
67 #define AFS_GUNLOCK()   (AFS_ASSERT_GLOCK(), MP_VXSEMA(&afs_global_sema,AFS_FIND_SEMA), (!uniprocessor ? (afsHashRelease(AFS_GLOCK_PID),0) : 0))
68 #define ISAFS_GLOCK()   (!uniprocessor ? owns_sema(&afs_global_sema):1)
69
70 #define AFS_RXGLOCK() 
71 #define AFS_RXGUNLOCK()
72 #define ISAFS_RXGLOCK() 1
73
74 /* Uses splnet only in the SP case */
75 #define SPLVAR      register ulong_t splvar
76 #define NETPRI      NET_SPLNET(splvar)
77 #define USERPRI     NET_SPLX(splvar)
78 #endif /* KERNEL */
79
80 /* 
81  * On HP, the global lock is an alpha semaphore, hence it is automatically
82  * released and reacquired aroubd a sleep() and wakeup().
83  */
84
85 #define afs_osi_Sleep(x)        sleep((caddr_t) x,PZERO-2)
86 #define osi_NullHandle(x)       ((x)->proc == (caddr_t) 0)
87
88 extern caddr_t kmem_alloc();
89 #include <sys/kthread_iface.h>  /* for kt_cred() */
90
91 /* Expected to be available as a patch from HP */
92 #include <vfs_vm.h>
93
94 #endif /* _OSI_MACHDEP_H_ */
95
96
97
98
99
100
101