Further prototyping and cleanup of UKERNEL
[openafs.git] / src / afs / UKERNEL / 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  * UKERNEL 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 "afs/sysincludes.h"
22
23 #define MAX_OSI_PATH            1024
24 #define MAX_OSI_FILES           1024
25 #define MAX_OSI_LINKS           25
26 #define OSI_WAITHASH_SIZE       128     /* must be power of two */
27 #define MAX_HOSTADDR            32
28
29 #define AFS_UCRED usr_ucred
30
31 #define AFS_KALLOC(A)           afs_osi_Alloc(A)
32
33 /* 
34  * Time related macros
35  */
36 #define afs_hz      HZ
37 #define osi_Time() (time(NULL))
38
39 #undef gop_lookupname
40 #define gop_lookupname(fnamep,segflg,followlink,compvpp) lookupname((fnamep),(segflg),(followlink),(compvpp))
41
42 #define osi_vnhold(avc, r)  do { VN_HOLD(AFSTOV(avc)); } while(0)
43
44 #if 0
45 #define afs_suser(x)        suser(x)
46 #endif
47 /*
48  * Global lock support.
49  */
50
51 extern usr_thread_t afs_global_owner;
52 extern usr_mutex_t afs_global_lock;
53
54 #define ISAFS_GLOCK() (usr_thread_self() == afs_global_owner)
55
56 #define AFS_GLOCK() \
57     do { \
58         usr_mutex_lock(&afs_global_lock); \
59         afs_global_owner = usr_thread_self(); \
60     } while(0)
61 #define AFS_GUNLOCK() \
62     do { \
63         AFS_ASSERT_GLOCK(); \
64         memset(&afs_global_owner, 0, sizeof(usr_thread_t)); \
65         usr_mutex_unlock(&afs_global_lock); \
66     } while(0)
67 #define AFS_ASSERT_GLOCK() \
68     do { if (!ISAFS_GLOCK()) { osi_Panic("afs global lock not held"); } } while(0)
69
70 extern int afs_bufferpages;
71
72 extern int afs_suser(void *credp);
73
74 #endif /* _OSI_MACHDEP_H_ */