diff options
| author | Jan Kara <jack@suse.cz> | 2009-01-26 11:14:18 -0500 |
|---|---|---|
| committer | Jan Kara <jack@suse.cz> | 2009-03-25 21:18:36 -0400 |
| commit | 77db4f25bca22ce96be0cd3c5a3160599817ff45 (patch) | |
| tree | c920107811ce80952c320071065ac3872073d900 /fs | |
| parent | a269eb18294d35874c53311acc2cd0b5ef477ce5 (diff) | |
reiserfs: Use lowercase names of quota functions
Use lowercase names of quota functions instead of old uppercase ones.
Signed-off-by: Jan Kara <jack@suse.cz>
CC: reiserfs-devel@vger.kernel.org
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/reiserfs/bitmap.c | 14 | ||||
| -rw-r--r-- | fs/reiserfs/inode.c | 10 | ||||
| -rw-r--r-- | fs/reiserfs/namei.c | 6 | ||||
| -rw-r--r-- | fs/reiserfs/stree.c | 14 | ||||
| -rw-r--r-- | fs/reiserfs/super.c | 2 |
5 files changed, 24 insertions, 22 deletions
diff --git a/fs/reiserfs/bitmap.c b/fs/reiserfs/bitmap.c index 4646caa60455..f32d1425cc9f 100644 --- a/fs/reiserfs/bitmap.c +++ b/fs/reiserfs/bitmap.c | |||
| @@ -430,7 +430,7 @@ static void _reiserfs_free_block(struct reiserfs_transaction_handle *th, | |||
| 430 | 430 | ||
| 431 | journal_mark_dirty(th, s, sbh); | 431 | journal_mark_dirty(th, s, sbh); |
| 432 | if (for_unformatted) | 432 | if (for_unformatted) |
| 433 | DQUOT_FREE_BLOCK_NODIRTY(inode, 1); | 433 | vfs_dq_free_block_nodirty(inode, 1); |
| 434 | } | 434 | } |
| 435 | 435 | ||
| 436 | void reiserfs_free_block(struct reiserfs_transaction_handle *th, | 436 | void reiserfs_free_block(struct reiserfs_transaction_handle *th, |
| @@ -1055,7 +1055,7 @@ static inline int blocknrs_and_prealloc_arrays_from_search_start | |||
| 1055 | amount_needed, hint->inode->i_uid); | 1055 | amount_needed, hint->inode->i_uid); |
| 1056 | #endif | 1056 | #endif |
| 1057 | quota_ret = | 1057 | quota_ret = |
| 1058 | DQUOT_ALLOC_BLOCK_NODIRTY(hint->inode, amount_needed); | 1058 | vfs_dq_alloc_block_nodirty(hint->inode, amount_needed); |
| 1059 | if (quota_ret) /* Quota exceeded? */ | 1059 | if (quota_ret) /* Quota exceeded? */ |
| 1060 | return QUOTA_EXCEEDED; | 1060 | return QUOTA_EXCEEDED; |
| 1061 | if (hint->preallocate && hint->prealloc_size) { | 1061 | if (hint->preallocate && hint->prealloc_size) { |
| @@ -1064,8 +1064,7 @@ static inline int blocknrs_and_prealloc_arrays_from_search_start | |||
| 1064 | "reiserquota: allocating (prealloc) %d blocks id=%u", | 1064 | "reiserquota: allocating (prealloc) %d blocks id=%u", |
| 1065 | hint->prealloc_size, hint->inode->i_uid); | 1065 | hint->prealloc_size, hint->inode->i_uid); |
| 1066 | #endif | 1066 | #endif |
| 1067 | quota_ret = | 1067 | quota_ret = vfs_dq_prealloc_block_nodirty(hint->inode, |
| 1068 | DQUOT_PREALLOC_BLOCK_NODIRTY(hint->inode, | ||
| 1069 | hint->prealloc_size); | 1068 | hint->prealloc_size); |
| 1070 | if (quota_ret) | 1069 | if (quota_ret) |
| 1071 | hint->preallocate = hint->prealloc_size = 0; | 1070 | hint->preallocate = hint->prealloc_size = 0; |
| @@ -1098,7 +1097,10 @@ static inline int blocknrs_and_prealloc_arrays_from_search_start | |||
| 1098 | nr_allocated, | 1097 | nr_allocated, |
| 1099 | hint->inode->i_uid); | 1098 | hint->inode->i_uid); |
| 1100 | #endif | 1099 | #endif |
| 1101 | DQUOT_FREE_BLOCK_NODIRTY(hint->inode, amount_needed + hint->prealloc_size - nr_allocated); /* Free not allocated blocks */ | 1100 | /* Free not allocated blocks */ |
| 1101 | vfs_dq_free_block_nodirty(hint->inode, | ||
| 1102 | amount_needed + hint->prealloc_size - | ||
| 1103 | nr_allocated); | ||
| 1102 | } | 1104 | } |
| 1103 | while (nr_allocated--) | 1105 | while (nr_allocated--) |
| 1104 | reiserfs_free_block(hint->th, hint->inode, | 1106 | reiserfs_free_block(hint->th, hint->inode, |
| @@ -1129,7 +1131,7 @@ static inline int blocknrs_and_prealloc_arrays_from_search_start | |||
| 1129 | REISERFS_I(hint->inode)->i_prealloc_count, | 1131 | REISERFS_I(hint->inode)->i_prealloc_count, |
| 1130 | hint->inode->i_uid); | 1132 | hint->inode->i_uid); |
| 1131 | #endif | 1133 | #endif |
| 1132 | DQUOT_FREE_BLOCK_NODIRTY(hint->inode, amount_needed + | 1134 | vfs_dq_free_block_nodirty(hint->inode, amount_needed + |
| 1133 | hint->prealloc_size - nr_allocated - | 1135 | hint->prealloc_size - nr_allocated - |
| 1134 | REISERFS_I(hint->inode)-> | 1136 | REISERFS_I(hint->inode)-> |
| 1135 | i_prealloc_count); | 1137 | i_prealloc_count); |
diff --git a/fs/reiserfs/inode.c b/fs/reiserfs/inode.c index 55fce92cdf18..823227a7662a 100644 --- a/fs/reiserfs/inode.c +++ b/fs/reiserfs/inode.c | |||
| @@ -53,7 +53,7 @@ void reiserfs_delete_inode(struct inode *inode) | |||
| 53 | * after delete_object so that quota updates go into the same transaction as | 53 | * after delete_object so that quota updates go into the same transaction as |
| 54 | * stat data deletion */ | 54 | * stat data deletion */ |
| 55 | if (!err) | 55 | if (!err) |
| 56 | DQUOT_FREE_INODE(inode); | 56 | vfs_dq_free_inode(inode); |
| 57 | 57 | ||
| 58 | if (journal_end(&th, inode->i_sb, jbegin_count)) | 58 | if (journal_end(&th, inode->i_sb, jbegin_count)) |
| 59 | goto out; | 59 | goto out; |
| @@ -1763,7 +1763,7 @@ int reiserfs_new_inode(struct reiserfs_transaction_handle *th, | |||
| 1763 | 1763 | ||
| 1764 | BUG_ON(!th->t_trans_id); | 1764 | BUG_ON(!th->t_trans_id); |
| 1765 | 1765 | ||
| 1766 | if (DQUOT_ALLOC_INODE(inode)) { | 1766 | if (vfs_dq_alloc_inode(inode)) { |
| 1767 | err = -EDQUOT; | 1767 | err = -EDQUOT; |
| 1768 | goto out_end_trans; | 1768 | goto out_end_trans; |
| 1769 | } | 1769 | } |
| @@ -1947,12 +1947,12 @@ int reiserfs_new_inode(struct reiserfs_transaction_handle *th, | |||
| 1947 | INODE_PKEY(inode)->k_objectid = 0; | 1947 | INODE_PKEY(inode)->k_objectid = 0; |
| 1948 | 1948 | ||
| 1949 | /* Quota change must be inside a transaction for journaling */ | 1949 | /* Quota change must be inside a transaction for journaling */ |
| 1950 | DQUOT_FREE_INODE(inode); | 1950 | vfs_dq_free_inode(inode); |
| 1951 | 1951 | ||
| 1952 | out_end_trans: | 1952 | out_end_trans: |
| 1953 | journal_end(th, th->t_super, th->t_blocks_allocated); | 1953 | journal_end(th, th->t_super, th->t_blocks_allocated); |
| 1954 | /* Drop can be outside and it needs more credits so it's better to have it outside */ | 1954 | /* Drop can be outside and it needs more credits so it's better to have it outside */ |
| 1955 | DQUOT_DROP(inode); | 1955 | vfs_dq_drop(inode); |
| 1956 | inode->i_flags |= S_NOQUOTA; | 1956 | inode->i_flags |= S_NOQUOTA; |
| 1957 | make_bad_inode(inode); | 1957 | make_bad_inode(inode); |
| 1958 | 1958 | ||
| @@ -3119,7 +3119,7 @@ int reiserfs_setattr(struct dentry *dentry, struct iattr *attr) | |||
| 3119 | if (error) | 3119 | if (error) |
| 3120 | goto out; | 3120 | goto out; |
| 3121 | error = | 3121 | error = |
| 3122 | DQUOT_TRANSFER(inode, attr) ? -EDQUOT : 0; | 3122 | vfs_dq_transfer(inode, attr) ? -EDQUOT : 0; |
| 3123 | if (error) { | 3123 | if (error) { |
| 3124 | journal_end(&th, inode->i_sb, | 3124 | journal_end(&th, inode->i_sb, |
| 3125 | jbegin_count); | 3125 | jbegin_count); |
diff --git a/fs/reiserfs/namei.c b/fs/reiserfs/namei.c index 738967f6c8ee..639d635d9d4b 100644 --- a/fs/reiserfs/namei.c +++ b/fs/reiserfs/namei.c | |||
| @@ -555,7 +555,7 @@ static int reiserfs_add_entry(struct reiserfs_transaction_handle *th, | |||
| 555 | */ | 555 | */ |
| 556 | static int drop_new_inode(struct inode *inode) | 556 | static int drop_new_inode(struct inode *inode) |
| 557 | { | 557 | { |
| 558 | DQUOT_DROP(inode); | 558 | vfs_dq_drop(inode); |
| 559 | make_bad_inode(inode); | 559 | make_bad_inode(inode); |
| 560 | inode->i_flags |= S_NOQUOTA; | 560 | inode->i_flags |= S_NOQUOTA; |
| 561 | iput(inode); | 561 | iput(inode); |
| @@ -563,7 +563,7 @@ static int drop_new_inode(struct inode *inode) | |||
| 563 | } | 563 | } |
| 564 | 564 | ||
| 565 | /* utility function that does setup for reiserfs_new_inode. | 565 | /* utility function that does setup for reiserfs_new_inode. |
| 566 | ** DQUOT_INIT needs lots of credits so it's better to have it | 566 | ** vfs_dq_init needs lots of credits so it's better to have it |
| 567 | ** outside of a transaction, so we had to pull some bits of | 567 | ** outside of a transaction, so we had to pull some bits of |
| 568 | ** reiserfs_new_inode out into this func. | 568 | ** reiserfs_new_inode out into this func. |
| 569 | */ | 569 | */ |
| @@ -586,7 +586,7 @@ static int new_inode_init(struct inode *inode, struct inode *dir, int mode) | |||
| 586 | } else { | 586 | } else { |
| 587 | inode->i_gid = current_fsgid(); | 587 | inode->i_gid = current_fsgid(); |
| 588 | } | 588 | } |
| 589 | DQUOT_INIT(inode); | 589 | vfs_dq_init(inode); |
| 590 | return 0; | 590 | return 0; |
| 591 | } | 591 | } |
| 592 | 592 | ||
diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c index abbc64dcc8d4..73aaa33f6735 100644 --- a/fs/reiserfs/stree.c +++ b/fs/reiserfs/stree.c | |||
| @@ -1297,7 +1297,7 @@ int reiserfs_delete_item(struct reiserfs_transaction_handle *th, struct treepath | |||
| 1297 | "reiserquota delete_item(): freeing %u, id=%u type=%c", | 1297 | "reiserquota delete_item(): freeing %u, id=%u type=%c", |
| 1298 | quota_cut_bytes, p_s_inode->i_uid, head2type(&s_ih)); | 1298 | quota_cut_bytes, p_s_inode->i_uid, head2type(&s_ih)); |
| 1299 | #endif | 1299 | #endif |
| 1300 | DQUOT_FREE_SPACE_NODIRTY(p_s_inode, quota_cut_bytes); | 1300 | vfs_dq_free_space_nodirty(p_s_inode, quota_cut_bytes); |
| 1301 | 1301 | ||
| 1302 | /* Return deleted body length */ | 1302 | /* Return deleted body length */ |
| 1303 | return n_ret_value; | 1303 | return n_ret_value; |
| @@ -1383,7 +1383,7 @@ void reiserfs_delete_solid_item(struct reiserfs_transaction_handle *th, | |||
| 1383 | quota_cut_bytes, inode->i_uid, | 1383 | quota_cut_bytes, inode->i_uid, |
| 1384 | key2type(key)); | 1384 | key2type(key)); |
| 1385 | #endif | 1385 | #endif |
| 1386 | DQUOT_FREE_SPACE_NODIRTY(inode, | 1386 | vfs_dq_free_space_nodirty(inode, |
| 1387 | quota_cut_bytes); | 1387 | quota_cut_bytes); |
| 1388 | } | 1388 | } |
| 1389 | break; | 1389 | break; |
| @@ -1734,7 +1734,7 @@ int reiserfs_cut_from_item(struct reiserfs_transaction_handle *th, | |||
| 1734 | "reiserquota cut_from_item(): freeing %u id=%u type=%c", | 1734 | "reiserquota cut_from_item(): freeing %u id=%u type=%c", |
| 1735 | quota_cut_bytes, p_s_inode->i_uid, '?'); | 1735 | quota_cut_bytes, p_s_inode->i_uid, '?'); |
| 1736 | #endif | 1736 | #endif |
| 1737 | DQUOT_FREE_SPACE_NODIRTY(p_s_inode, quota_cut_bytes); | 1737 | vfs_dq_free_space_nodirty(p_s_inode, quota_cut_bytes); |
| 1738 | return n_ret_value; | 1738 | return n_ret_value; |
| 1739 | } | 1739 | } |
| 1740 | 1740 | ||
| @@ -1971,7 +1971,7 @@ int reiserfs_paste_into_item(struct reiserfs_transaction_handle *th, struct tree | |||
| 1971 | key2type(&(p_s_key->on_disk_key))); | 1971 | key2type(&(p_s_key->on_disk_key))); |
| 1972 | #endif | 1972 | #endif |
| 1973 | 1973 | ||
| 1974 | if (DQUOT_ALLOC_SPACE_NODIRTY(inode, n_pasted_size)) { | 1974 | if (vfs_dq_alloc_space_nodirty(inode, n_pasted_size)) { |
| 1975 | pathrelse(p_s_search_path); | 1975 | pathrelse(p_s_search_path); |
| 1976 | return -EDQUOT; | 1976 | return -EDQUOT; |
| 1977 | } | 1977 | } |
| @@ -2027,7 +2027,7 @@ int reiserfs_paste_into_item(struct reiserfs_transaction_handle *th, struct tree | |||
| 2027 | n_pasted_size, inode->i_uid, | 2027 | n_pasted_size, inode->i_uid, |
| 2028 | key2type(&(p_s_key->on_disk_key))); | 2028 | key2type(&(p_s_key->on_disk_key))); |
| 2029 | #endif | 2029 | #endif |
| 2030 | DQUOT_FREE_SPACE_NODIRTY(inode, n_pasted_size); | 2030 | vfs_dq_free_space_nodirty(inode, n_pasted_size); |
| 2031 | return retval; | 2031 | return retval; |
| 2032 | } | 2032 | } |
| 2033 | 2033 | ||
| @@ -2060,7 +2060,7 @@ int reiserfs_insert_item(struct reiserfs_transaction_handle *th, struct treepath | |||
| 2060 | #endif | 2060 | #endif |
| 2061 | /* We can't dirty inode here. It would be immediately written but | 2061 | /* We can't dirty inode here. It would be immediately written but |
| 2062 | * appropriate stat item isn't inserted yet... */ | 2062 | * appropriate stat item isn't inserted yet... */ |
| 2063 | if (DQUOT_ALLOC_SPACE_NODIRTY(inode, quota_bytes)) { | 2063 | if (vfs_dq_alloc_space_nodirty(inode, quota_bytes)) { |
| 2064 | pathrelse(p_s_path); | 2064 | pathrelse(p_s_path); |
| 2065 | return -EDQUOT; | 2065 | return -EDQUOT; |
| 2066 | } | 2066 | } |
| @@ -2112,6 +2112,6 @@ int reiserfs_insert_item(struct reiserfs_transaction_handle *th, struct treepath | |||
| 2112 | quota_bytes, inode->i_uid, head2type(p_s_ih)); | 2112 | quota_bytes, inode->i_uid, head2type(p_s_ih)); |
| 2113 | #endif | 2113 | #endif |
| 2114 | if (inode) | 2114 | if (inode) |
| 2115 | DQUOT_FREE_SPACE_NODIRTY(inode, quota_bytes); | 2115 | vfs_dq_free_space_nodirty(inode, quota_bytes); |
| 2116 | return retval; | 2116 | return retval; |
| 2117 | } | 2117 | } |
diff --git a/fs/reiserfs/super.c b/fs/reiserfs/super.c index 317c0352163c..5dbafb739401 100644 --- a/fs/reiserfs/super.c +++ b/fs/reiserfs/super.c | |||
| @@ -250,7 +250,7 @@ static int finish_unfinished(struct super_block *s) | |||
| 250 | retval = remove_save_link_only(s, &save_link_key, 0); | 250 | retval = remove_save_link_only(s, &save_link_key, 0); |
| 251 | continue; | 251 | continue; |
| 252 | } | 252 | } |
| 253 | DQUOT_INIT(inode); | 253 | vfs_dq_init(inode); |
| 254 | 254 | ||
| 255 | if (truncate && S_ISDIR(inode->i_mode)) { | 255 | if (truncate && S_ISDIR(inode->i_mode)) { |
| 256 | /* We got a truncate request for a dir which is impossible. | 256 | /* We got a truncate request for a dir which is impossible. |
