27525f72a166883717f0290ea1e7ae428434b123
[openafs.git] / src / afs / SOLARIS / osi_vcache.c
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 #include <afsconfig.h>
11 #include "afs/param.h"
12
13 #include "afs/sysincludes.h"    /*Standard vendor system headers */
14 #include "afsincludes.h"        /*AFS-based standard headers */
15
16 int
17 osi_TryEvictVCache(struct vcache *avc, int *slept, int defersleep)
18 {
19     int code;
20
21     if (!VREFCOUNT_GT(avc,0)
22          && avc->opens == 0 && (avc->f.states & CUnlinkedDel) == 0) {
23         code = afs_FlushVCache(avc, slept);
24         if (code == 0)
25             return 1;
26     }
27     return 0;
28 }
29
30 struct vcache *
31 osi_NewVnode(void)
32 {
33     struct vcache *avc;
34
35     avc = afs_osi_Alloc(sizeof(struct vcache));
36     osi_Assert(avc != NULL);
37     return avc;
38 }
39
40 void
41 osi_PrePopulateVCache(struct vcache *avc)
42 {
43     memset(avc, 0, sizeof(struct vcache));
44
45     QInit(&avc->multiPage);
46
47     AFS_RWLOCK_INIT(&avc->vlock, "vcache vlock");
48
49     rw_init(&avc->rwlock, "vcache rwlock", RW_DEFAULT, NULL);
50
51 #ifndef AFS_SUN511_ENV
52     /* This is required if the kaio (kernel aynchronous io)
53      ** module is installed. Inside the kernel, the function
54      ** check_vp( common/os/aio.c) checks to see if the kernel has
55      ** to provide asynchronous io for this vnode. This
56      ** function extracts the device number by following the
57      ** v_data field of the vnode. If we do not set this field
58      ** then the system panics. The  value of the v_data field
59      ** is not really important for AFS vnodes because the kernel
60      ** does not do asynchronous io for regular files. Hence,
61      ** for the time being, we fill up the v_data field with the
62      ** vnode pointer itself. */
63     avc->v.v_data = (char *)avc;
64 #endif /* !AFS_SUN511_ENV */
65 }
66
67 void
68 osi_AttachVnode(struct vcache *avc, int seq)
69 {
70 #ifdef AFS_SUN511_ENV
71     struct vnode *vp;
72
73     osi_Assert(AFSTOV(avc) == NULL);
74
75     vp = vn_alloc(KM_SLEEP);
76     osi_Assert(vp != NULL);
77
78     vp->v_data = avc;
79     AFSTOV(avc) = vp;
80 #endif
81 }
82
83 void
84 osi_PostPopulateVCache(struct vcache *avc)
85 {
86     AFSTOV(avc)->v_op = afs_ops;
87     AFSTOV(avc)->v_vfsp = afs_globalVFS;
88     vSetType(avc, VREG);
89
90     /* Normally we do this in osi_vnhold when we notice the ref count went from
91      * 0 -> 1. But if we just setup or reused a vcache, we set the refcount to
92      * 1 directly. So, we must explicitly VFS_HOLD here. */
93     VFS_HOLD(afs_globalVFS);
94 }