diff options
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_quotaops.c')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_quotaops.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/xfs/linux-2.6/xfs_quotaops.c b/fs/xfs/linux-2.6/xfs_quotaops.c index 1947514ce1ad..9ac8aea91529 100644 --- a/fs/xfs/linux-2.6/xfs_quotaops.c +++ b/fs/xfs/linux-2.6/xfs_quotaops.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include "xfs_dmapi.h" | 19 | #include "xfs_dmapi.h" |
20 | #include "xfs_sb.h" | 20 | #include "xfs_sb.h" |
21 | #include "xfs_inum.h" | 21 | #include "xfs_inum.h" |
22 | #include "xfs_log.h" | ||
22 | #include "xfs_ag.h" | 23 | #include "xfs_ag.h" |
23 | #include "xfs_mount.h" | 24 | #include "xfs_mount.h" |
24 | #include "xfs_quota.h" | 25 | #include "xfs_quota.h" |
@@ -97,7 +98,7 @@ xfs_fs_set_xstate( | |||
97 | } | 98 | } |
98 | 99 | ||
99 | STATIC int | 100 | STATIC int |
100 | xfs_fs_get_xquota( | 101 | xfs_fs_get_dqblk( |
101 | struct super_block *sb, | 102 | struct super_block *sb, |
102 | int type, | 103 | int type, |
103 | qid_t id, | 104 | qid_t id, |
@@ -114,7 +115,7 @@ xfs_fs_get_xquota( | |||
114 | } | 115 | } |
115 | 116 | ||
116 | STATIC int | 117 | STATIC int |
117 | xfs_fs_set_xquota( | 118 | xfs_fs_set_dqblk( |
118 | struct super_block *sb, | 119 | struct super_block *sb, |
119 | int type, | 120 | int type, |
120 | qid_t id, | 121 | qid_t id, |
@@ -135,6 +136,6 @@ xfs_fs_set_xquota( | |||
135 | const struct quotactl_ops xfs_quotactl_operations = { | 136 | const struct quotactl_ops xfs_quotactl_operations = { |
136 | .get_xstate = xfs_fs_get_xstate, | 137 | .get_xstate = xfs_fs_get_xstate, |
137 | .set_xstate = xfs_fs_set_xstate, | 138 | .set_xstate = xfs_fs_set_xstate, |
138 | .get_xquota = xfs_fs_get_xquota, | 139 | .get_dqblk = xfs_fs_get_dqblk, |
139 | .set_xquota = xfs_fs_set_xquota, | 140 | .set_dqblk = xfs_fs_set_dqblk, |
140 | }; | 141 | }; |