reindent-20030715
[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
24     ("$Header$");
25
26 #include "afs/sysincludes.h"    /* Standard vendor system headers */
27 #include "afsincludes.h"        /* Afs-based standard headers */
28 #include "afs/osi_inode.h"
29 #include "afs/afs_stats.h"      /* statistics stuff */
30
31 #define BAD_IGET        -1000
32
33 /*
34  * SGI dependent system calls
35  */
36 #ifndef INODESPECIAL
37 /*
38  * `INODESPECIAL' type inodes are ones that describe volumes.
39  */
40 #define INODESPECIAL    0xffffffff      /* ... from ../vol/viceinode.h  */
41 #endif
42
43
44 int
45 afs_syscall_icreate(void)
46 {
47     return 0;
48 }
49
50 int
51 afs_syscall_iopen(void)
52 {
53     return 0;
54 }
55
56 int
57 afs_syscall_iincdec(void)
58 {
59     return 0;
60 }