This source file includes following definitions.
- sync_dquots
- invalidate_dquots
- dquot_initialize
- dquot_drop
- dquot_init
- quota_off
- quota_on
- sys_quotactl
1
2
3
4
5
6
7
8
9
10
11 #include <linux/errno.h>
12 #include <linux/kernel.h>
13 #include <linux/sched.h>
14 #include <linux/types.h>
15 #include <linux/string.h>
16 #include <linux/fcntl.h>
17 #include <linux/stat.h>
18 #include <linux/tty.h>
19 #include <linux/malloc.h>
20 #include <linux/mount.h>
21
22 #include <asm/segment.h>
23
24 #ifndef min
25 #define min(a,b) ((a) < (b)) ? (a) : (b)
26 #endif
27
28 int sync_dquots(kdev_t dev, short type)
29 {
30 return(0);
31 }
32
33
34
35
36
37 void invalidate_dquots(kdev_t dev, short type)
38 {
39 }
40
41
42
43
44 void dquot_initialize(struct inode *inode, short type)
45 {
46 }
47
48 void dquot_drop(struct inode *inode)
49 {
50 }
51
52 void dquot_init(void)
53 {
54 }
55
56
57
58
59
60 int quota_off(kdev_t dev, short type)
61 {
62 return(0);
63 }
64
65 int quota_on(kdev_t dev, short type, char *path)
66 {
67 return(-ENOPKG);
68 }
69
70
71
72
73
74
75
76 asmlinkage int sys_quotactl(int cmd, const char *special, int id, caddr_t addr)
77 {
78 return(-ENOPKG);
79 }