|
@@ -563,8 +563,8 @@ int ocfs2_add_inode_data(struct ocfs2_super *osb,
|
|
return ret;
|
|
return ret;
|
|
}
|
|
}
|
|
|
|
|
|
-static int __ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
|
|
|
|
- u32 clusters_to_add, int mark_unwritten)
|
|
|
|
|
|
+static int ocfs2_extend_allocation(struct inode *inode, u32 logical_start,
|
|
|
|
+ u32 clusters_to_add, int mark_unwritten)
|
|
{
|
|
{
|
|
int status = 0;
|
|
int status = 0;
|
|
int restart_func = 0;
|
|
int restart_func = 0;
|
|
@@ -1035,8 +1035,8 @@ int ocfs2_extend_no_holes(struct inode *inode, struct buffer_head *di_bh,
|
|
clusters_to_add -= oi->ip_clusters;
|
|
clusters_to_add -= oi->ip_clusters;
|
|
|
|
|
|
if (clusters_to_add) {
|
|
if (clusters_to_add) {
|
|
- ret = __ocfs2_extend_allocation(inode, oi->ip_clusters,
|
|
|
|
- clusters_to_add, 0);
|
|
|
|
|
|
+ ret = ocfs2_extend_allocation(inode, oi->ip_clusters,
|
|
|
|
+ clusters_to_add, 0);
|
|
if (ret) {
|
|
if (ret) {
|
|
mlog_errno(ret);
|
|
mlog_errno(ret);
|
|
goto out;
|
|
goto out;
|
|
@@ -1493,7 +1493,7 @@ static int ocfs2_allocate_unwritten_extents(struct inode *inode,
|
|
goto next;
|
|
goto next;
|
|
}
|
|
}
|
|
|
|
|
|
- ret = __ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
|
|
|
|
|
|
+ ret = ocfs2_extend_allocation(inode, cpos, alloc_size, 1);
|
|
if (ret) {
|
|
if (ret) {
|
|
if (ret != -ENOSPC)
|
|
if (ret != -ENOSPC)
|
|
mlog_errno(ret);
|
|
mlog_errno(ret);
|