914cb223d579ab94a6df43bc3c3d797789b31d27
[openafs.git] / src / afs / UKERNEL / osi_vm.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 "../afs/param.h"       /* Should be always first */
11 #include <afsconfig.h>
12
13 RCSID("$Header$");
14
15 #include "../afs/sysincludes.h" /* Standard vendor system headers */
16 #include "../afs/afsincludes.h" /* Afs-based standard headers */
17 #include "../afs/afs_stats.h"  /* statistics */
18
19 void osi_VM_Truncate(avc, alen, acred)
20     struct vcache *avc;
21     int alen;
22     struct AFS_UCRED *acred;
23 {
24     return;
25 }
26
27 int osi_VM_FlushVCache(avc, slept)
28     struct vcache *avc;
29     int *slept;
30 {
31     return 0;
32 }
33
34 void osi_VM_StoreAllSegments(avc)
35     struct vcache *avc;
36 {
37     return;
38 }
39
40 void osi_VM_TryToSmush(avc, acred, sync)
41     struct vcache *avc;
42     struct AFS_UCRED *acred;
43     int sync;
44 {
45     return;
46 }
47
48 void osi_VM_FlushPages(avc, credp)
49     struct vcache *avc;
50     struct AFS_UCRED *credp;
51 {
52     return;
53 }