no-copy-libafs-builds-20021015
[openafs.git] / src / afs / LINUX / osi_inode.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 /*
11  * LINUX inode operations
12  *
13  * Implements:
14  * afs_syscall_icreate
15  * afs_syscall_iopen
16  * afs_syscall_iincdec
17  *
18  */
19
20 #include <afsconfig.h>
21 #include "afs/param.h"
22
23 RCSID("$Header$");
24
25 #include "afs/sysincludes.h"    /* Standard vendor system headers */
26 #include "afsincludes.h"        /* Afs-based standard headers */
27 #include "afs/osi_inode.h"
28 #include "afs/afs_stats.h" /* statistics stuff */
29
30 #define BAD_IGET        -1000
31
32 /*
33  * SGI dependent system calls
34  */
35 #ifndef INODESPECIAL
36 /*
37  * `INODESPECIAL' type inodes are ones that describe volumes.
38  */
39 #define INODESPECIAL    0xffffffff      /* ... from ../vol/viceinode.h  */
40 #endif
41
42
43 int afs_syscall_icreate(void)
44 {
45     return 0;
46 }
47
48 int afs_syscall_iopen(void)
49 {
50     return 0;
51 }
52
53 int afs_syscall_iincdec(void)
54 {
55     return 0;
56 }