aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ext4/extents.c
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2009-05-14 00:57:44 -0400
committerTheodore Ts'o <tytso@mit.edu>2009-05-14 00:57:44 -0400
commit12b7ac176831df1aa58a787e67c3e5d698b30163 (patch)
treed8d3ab93fd28d5b84efff0b5c247da74c84788e0 /fs/ext4/extents.c
parente4d996ca806e93dddb5d76c0d3d859b494c559f6 (diff)
ext4: Rename ext4_get_blocks_wrap() to be ext4_get_blocks()
Another function rename for clarity's sake. The _wrap prefix simply confuses people, and didn't add much people trying to follow the code paths. Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'fs/ext4/extents.c')
-rw-r--r--fs/ext4/extents.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 4fec6b746382..7e7d02dd2739 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -3151,9 +3151,9 @@ retry:
3151 break; 3151 break;
3152 } 3152 }
3153 map_bh.b_state = 0; 3153 map_bh.b_state = 0;
3154 ret = ext4_get_blocks_wrap(handle, inode, block, 3154 ret = ext4_get_blocks(handle, inode, block,
3155 max_blocks, &map_bh, 3155 max_blocks, &map_bh,
3156 EXT4_CREATE_UNINITIALIZED_EXT, 0, 0); 3156 EXT4_CREATE_UNINITIALIZED_EXT, 0, 0);
3157 if (ret <= 0) { 3157 if (ret <= 0) {
3158#ifdef EXT4FS_DEBUG 3158#ifdef EXT4FS_DEBUG
3159 WARN_ON(ret <= 0); 3159 WARN_ON(ret <= 0);