Import Upstream version 1.8.5
[hcoop/debian/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
24 #include "afs/sysincludes.h" /* Standard vendor system headers */
25 #include "afsincludes.h" /* Afs-based standard headers */
26 #include "afs/osi_inode.h"
27 #include "afs/afs_stats.h" /* statistics stuff */
28
29 int
30 afs_syscall_icreate(long a, long b, long c, long d, long e, long f)
31 {
32 return 0;
33 }
34
35 int
36 afs_syscall_iopen(int a, int b, int c)
37 {
38 return 0;
39 }
40
41 int
42 afs_syscall_iincdec(int a, int v, int c, int d)
43 {
44 return 0;
45 }