super.c (dec214d00e0d78a08b947d7dccdfdb84407a9f4d) | super.c (7a9ca53aea10ad4677a0f347ad7639c304b80194) |
---|---|
1/* 2 * linux/fs/ext4/super.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 1249 unchanged lines hidden (view full) --- 1258static int ext4_get_next_id(struct super_block *sb, struct kqid *qid); 1259 1260static struct dquot **ext4_get_dquots(struct inode *inode) 1261{ 1262 return EXT4_I(inode)->i_dquot; 1263} 1264 1265static const struct dquot_operations ext4_quota_operations = { | 1/* 2 * linux/fs/ext4/super.c 3 * 4 * Copyright (C) 1992, 1993, 1994, 1995 5 * Remy Card (card@masi.ibp.fr) 6 * Laboratoire MASI - Institut Blaise Pascal 7 * Universite Pierre et Marie Curie (Paris VI) 8 * --- 1249 unchanged lines hidden (view full) --- 1258static int ext4_get_next_id(struct super_block *sb, struct kqid *qid); 1259 1260static struct dquot **ext4_get_dquots(struct inode *inode) 1261{ 1262 return EXT4_I(inode)->i_dquot; 1263} 1264 1265static const struct dquot_operations ext4_quota_operations = { |
1266 .get_reserved_space = ext4_get_reserved_space, 1267 .write_dquot = ext4_write_dquot, 1268 .acquire_dquot = ext4_acquire_dquot, 1269 .release_dquot = ext4_release_dquot, 1270 .mark_dirty = ext4_mark_dquot_dirty, 1271 .write_info = ext4_write_info, 1272 .alloc_dquot = dquot_alloc, 1273 .destroy_dquot = dquot_destroy, 1274 .get_projid = ext4_get_projid, 1275 .get_next_id = ext4_get_next_id, | 1266 .get_reserved_space = ext4_get_reserved_space, 1267 .write_dquot = ext4_write_dquot, 1268 .acquire_dquot = ext4_acquire_dquot, 1269 .release_dquot = ext4_release_dquot, 1270 .mark_dirty = ext4_mark_dquot_dirty, 1271 .write_info = ext4_write_info, 1272 .alloc_dquot = dquot_alloc, 1273 .destroy_dquot = dquot_destroy, 1274 .get_projid = ext4_get_projid, 1275 .get_inode_usage = ext4_get_inode_usage, 1276 .get_next_id = ext4_get_next_id, |
1276}; 1277 1278static const struct quotactl_ops ext4_qctl_operations = { 1279 .quota_on = ext4_quota_on, 1280 .quota_off = ext4_quota_off, 1281 .quota_sync = dquot_quota_sync, 1282 .get_state = dquot_get_state, 1283 .set_info = dquot_set_dqinfo, --- 4526 unchanged lines hidden --- | 1277}; 1278 1279static const struct quotactl_ops ext4_qctl_operations = { 1280 .quota_on = ext4_quota_on, 1281 .quota_off = ext4_quota_off, 1282 .quota_sync = dquot_quota_sync, 1283 .get_state = dquot_get_state, 1284 .set_info = dquot_set_dqinfo, --- 4526 unchanged lines hidden --- |