aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/reiserfs_fs.h
diff options
context:
space:
mode:
authorJeff Mahoney <jeffm@suse.com>2009-03-30 14:02:18 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2009-03-30 15:16:35 -0400
commiteba00305591714f1d85ccad1afbf58259c2197b4 (patch)
tree260912758e76c1add9e917d22a00544812562a75 /include/linux/reiserfs_fs.h
parent600ed41675d8c384519d8f0b3c76afed39ef2f4b (diff)
reiserfs: use buffer_info for leaf_paste_entries
This patch makes leaf_paste_entries more consistent with respect to the other leaf operations. Using buffer_info instead of buffer_head directly allows us to get a superblock pointer for use in error handling. Signed-off-by: Jeff Mahoney <jeffm@suse.com> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'include/linux/reiserfs_fs.h')
-rw-r--r--include/linux/reiserfs_fs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/reiserfs_fs.h b/include/linux/reiserfs_fs.h
index bd52b949f8c9..65bb5e3e3abe 100644
--- a/include/linux/reiserfs_fs.h
+++ b/include/linux/reiserfs_fs.h
@@ -2026,7 +2026,7 @@ void leaf_paste_in_buffer(struct buffer_info *bi, int pasted_item_num,
2026 int zeros_number); 2026 int zeros_number);
2027void leaf_cut_from_buffer(struct buffer_info *bi, int cut_item_num, 2027void leaf_cut_from_buffer(struct buffer_info *bi, int cut_item_num,
2028 int pos_in_item, int cut_size); 2028 int pos_in_item, int cut_size);
2029void leaf_paste_entries(struct buffer_head *bh, int item_num, int before, 2029void leaf_paste_entries(struct buffer_info *bi, int item_num, int before,
2030 int new_entry_count, struct reiserfs_de_head *new_dehs, 2030 int new_entry_count, struct reiserfs_de_head *new_dehs,
2031 const char *records, int paste_size); 2031 const char *records, int paste_size);
2032/* ibalance.c */ 2032/* ibalance.c */