All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ext4: don't retry file block mapping on bigalloc fs with non-extent file
@ 2015-03-19 21:25 Darrick J. Wong
  2015-06-22  1:20 ` Theodore Ts'o
  0 siblings, 1 reply; 2+ messages in thread
From: Darrick J. Wong @ 2015-03-19 21:25 UTC (permalink / raw)
  To: tytso, linux-ext4

ext4 isn't willing to map clusters to a non-extent file.  Don't signal
this with an out of space error, since the FS will retry the
allocation (which didn't fail) forever.  Instead, return EUCLEAN so
that the operation will fail immediately all the way back to userspace.

(The fix is either to run e2fsck -E bmap2extent, or to chattr +e the file.)

Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
---
 fs/ext4/indirect.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ext4/indirect.c b/fs/ext4/indirect.c
index 45fe924..b46f2b2 100644
--- a/fs/ext4/indirect.c
+++ b/fs/ext4/indirect.c
@@ -565,7 +565,7 @@ int ext4_ind_map_blocks(handle_t *handle, struct inode *inode,
 				       EXT4_FEATURE_RO_COMPAT_BIGALLOC)) {
 		EXT4_ERROR_INODE(inode, "Can't allocate blocks for "
 				 "non-extent mapped inodes with bigalloc");
-		return -ENOSPC;
+		return -EUCLEAN;
 	}
 
 	/* Set up for the direct block allocation */

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ext4: don't retry file block mapping on bigalloc fs with non-extent file
  2015-03-19 21:25 [PATCH] ext4: don't retry file block mapping on bigalloc fs with non-extent file Darrick J. Wong
@ 2015-06-22  1:20 ` Theodore Ts'o
  0 siblings, 0 replies; 2+ messages in thread
From: Theodore Ts'o @ 2015-06-22  1:20 UTC (permalink / raw)
  To: Darrick J. Wong; +Cc: linux-ext4

On Thu, Mar 19, 2015 at 02:25:57PM -0700, Darrick J. Wong wrote:
> ext4 isn't willing to map clusters to a non-extent file.  Don't signal
> this with an out of space error, since the FS will retry the
> allocation (which didn't fail) forever.  Instead, return EUCLEAN so
> that the operation will fail immediately all the way back to userspace.
> 
> (The fix is either to run e2fsck -E bmap2extent, or to chattr +e the file.)
> 
> Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>

Applied, thanks.

						- Ted
--
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-06-22  1:20 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-19 21:25 [PATCH] ext4: don't retry file block mapping on bigalloc fs with non-extent file Darrick J. Wong
2015-06-22  1:20 ` Theodore Ts'o

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.