linux-btrfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Btrfs: fix early ENOSPC due to delalloc
@ 2017-07-07  5:59 Omar Sandoval
  2017-07-14 21:36 ` Omar Sandoval
  0 siblings, 1 reply; 5+ messages in thread
From: Omar Sandoval @ 2017-07-07  5:59 UTC (permalink / raw)
  To: linux-btrfs; +Cc: kernel-team

From: Omar Sandoval <osandov@fb.com>

If a lot of metadata is reserved for outstanding delayed allocations, we
rely on shrink_delalloc() to reclaim metadata space in order to fulfill
reservation tickets. However, shrink_delalloc() has a shortcut where if
it determines that space can be overcommitted, it will stop early. This
made sense before the ticketed enospc system, but now it means that
shrink_delalloc() will often not reclaim enough space to fulfill any
tickets, leading to an early ENOSPC. (Reservation tickets don't care
about being able to overcommit, they need every byte accounted for.)

Fix it by getting rid of the shortcut so that shrink_delalloc() reclaims
all of the metadata it is supposed to. This fixes early ENOSPCs we were
seeing when doing a btrfs receive to populate a new filesystem.

Signed-off-by: Omar Sandoval <osandov@fb.com>
---
I don't have a good reproducer for this except for the btrfs send stream
I was given by someone internally, unfortunately.

 fs/btrfs/extent-tree.c | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
index 33d979e9ea2a..83eecd33ad96 100644
--- a/fs/btrfs/extent-tree.c
+++ b/fs/btrfs/extent-tree.c
@@ -4776,10 +4776,6 @@ static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
 		else
 			flush = BTRFS_RESERVE_NO_FLUSH;
 		spin_lock(&space_info->lock);
-		if (can_overcommit(root, space_info, orig, flush)) {
-			spin_unlock(&space_info->lock);
-			break;
-		}
 		if (list_empty(&space_info->tickets) &&
 		    list_empty(&space_info->priority_tickets)) {
 			spin_unlock(&space_info->lock);
-- 
2.13.2


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

* Re: [PATCH] Btrfs: fix early ENOSPC due to delalloc
  2017-07-07  5:59 [PATCH] Btrfs: fix early ENOSPC due to delalloc Omar Sandoval
@ 2017-07-14 21:36 ` Omar Sandoval
  2017-07-15  6:43   ` Nikolay Borisov
  0 siblings, 1 reply; 5+ messages in thread
From: Omar Sandoval @ 2017-07-14 21:36 UTC (permalink / raw)
  To: linux-btrfs, Jeff Mahoney, Nikolay Borisov; +Cc: kernel-team

On Thu, Jul 06, 2017 at 10:59:27PM -0700, Omar Sandoval wrote:
> From: Omar Sandoval <osandov@fb.com>
> 
> If a lot of metadata is reserved for outstanding delayed allocations, we
> rely on shrink_delalloc() to reclaim metadata space in order to fulfill
> reservation tickets. However, shrink_delalloc() has a shortcut where if
> it determines that space can be overcommitted, it will stop early. This
> made sense before the ticketed enospc system, but now it means that
> shrink_delalloc() will often not reclaim enough space to fulfill any
> tickets, leading to an early ENOSPC. (Reservation tickets don't care
> about being able to overcommit, they need every byte accounted for.)
> 
> Fix it by getting rid of the shortcut so that shrink_delalloc() reclaims
> all of the metadata it is supposed to. This fixes early ENOSPCs we were
> seeing when doing a btrfs receive to populate a new filesystem.

Jeff, Nikolay, did either of you get a chance to test this yet?

> Signed-off-by: Omar Sandoval <osandov@fb.com>
> ---
> I don't have a good reproducer for this except for the btrfs send stream
> I was given by someone internally, unfortunately.
> 
>  fs/btrfs/extent-tree.c | 4 ----
>  1 file changed, 4 deletions(-)
> 
> diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
> index 33d979e9ea2a..83eecd33ad96 100644
> --- a/fs/btrfs/extent-tree.c
> +++ b/fs/btrfs/extent-tree.c
> @@ -4776,10 +4776,6 @@ static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
>  		else
>  			flush = BTRFS_RESERVE_NO_FLUSH;
>  		spin_lock(&space_info->lock);
> -		if (can_overcommit(root, space_info, orig, flush)) {
> -			spin_unlock(&space_info->lock);
> -			break;
> -		}
>  		if (list_empty(&space_info->tickets) &&
>  		    list_empty(&space_info->priority_tickets)) {
>  			spin_unlock(&space_info->lock);
> -- 
> 2.13.2
> 

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

* Re: [PATCH] Btrfs: fix early ENOSPC due to delalloc
  2017-07-14 21:36 ` Omar Sandoval
@ 2017-07-15  6:43   ` Nikolay Borisov
  2017-07-15  7:09     ` Omar Sandoval
  0 siblings, 1 reply; 5+ messages in thread
From: Nikolay Borisov @ 2017-07-15  6:43 UTC (permalink / raw)
  To: Omar Sandoval, linux-btrfs, Jeff Mahoney; +Cc: kernel-team



On 15.07.2017 00:36, Omar Sandoval wrote:
> On Thu, Jul 06, 2017 at 10:59:27PM -0700, Omar Sandoval wrote:
>> From: Omar Sandoval <osandov@fb.com>
>>
>> If a lot of metadata is reserved for outstanding delayed allocations, we
>> rely on shrink_delalloc() to reclaim metadata space in order to fulfill
>> reservation tickets. However, shrink_delalloc() has a shortcut where if
>> it determines that space can be overcommitted, it will stop early. This
>> made sense before the ticketed enospc system, but now it means that
>> shrink_delalloc() will often not reclaim enough space to fulfill any
>> tickets, leading to an early ENOSPC. (Reservation tickets don't care
>> about being able to overcommit, they need every byte accounted for.)
>>
>> Fix it by getting rid of the shortcut so that shrink_delalloc() reclaims
>> all of the metadata it is supposed to. This fixes early ENOSPCs we were
>> seeing when doing a btrfs receive to populate a new filesystem.
> 
> Jeff, Nikolay, did either of you get a chance to test this yet?

I tested this patch with generic/273 and it didn't prevent ENOSPC there.

> 
>> Signed-off-by: Omar Sandoval <osandov@fb.com>
>> ---
>> I don't have a good reproducer for this except for the btrfs send stream
>> I was given by someone internally, unfortunately.
>>
>>  fs/btrfs/extent-tree.c | 4 ----
>>  1 file changed, 4 deletions(-)
>>
>> diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
>> index 33d979e9ea2a..83eecd33ad96 100644
>> --- a/fs/btrfs/extent-tree.c
>> +++ b/fs/btrfs/extent-tree.c
>> @@ -4776,10 +4776,6 @@ static void shrink_delalloc(struct btrfs_root *root, u64 to_reclaim, u64 orig,
>>  		else
>>  			flush = BTRFS_RESERVE_NO_FLUSH;
>>  		spin_lock(&space_info->lock);
>> -		if (can_overcommit(root, space_info, orig, flush)) {
>> -			spin_unlock(&space_info->lock);
>> -			break;
>> -		}
>>  		if (list_empty(&space_info->tickets) &&
>>  		    list_empty(&space_info->priority_tickets)) {
>>  			spin_unlock(&space_info->lock);
>> -- 
>> 2.13.2
>>
> 

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

* Re: [PATCH] Btrfs: fix early ENOSPC due to delalloc
  2017-07-15  6:43   ` Nikolay Borisov
@ 2017-07-15  7:09     ` Omar Sandoval
  2017-07-15 10:35       ` Nikolay Borisov
  0 siblings, 1 reply; 5+ messages in thread
From: Omar Sandoval @ 2017-07-15  7:09 UTC (permalink / raw)
  To: Nikolay Borisov; +Cc: linux-btrfs, Jeff Mahoney, kernel-team

On Sat, Jul 15, 2017 at 09:43:18AM +0300, Nikolay Borisov wrote:
> 
> 
> On 15.07.2017 00:36, Omar Sandoval wrote:
> > On Thu, Jul 06, 2017 at 10:59:27PM -0700, Omar Sandoval wrote:
> >> From: Omar Sandoval <osandov@fb.com>
> >>
> >> If a lot of metadata is reserved for outstanding delayed allocations, we
> >> rely on shrink_delalloc() to reclaim metadata space in order to fulfill
> >> reservation tickets. However, shrink_delalloc() has a shortcut where if
> >> it determines that space can be overcommitted, it will stop early. This
> >> made sense before the ticketed enospc system, but now it means that
> >> shrink_delalloc() will often not reclaim enough space to fulfill any
> >> tickets, leading to an early ENOSPC. (Reservation tickets don't care
> >> about being able to overcommit, they need every byte accounted for.)
> >>
> >> Fix it by getting rid of the shortcut so that shrink_delalloc() reclaims
> >> all of the metadata it is supposed to. This fixes early ENOSPCs we were
> >> seeing when doing a btrfs receive to populate a new filesystem.
> > 
> > Jeff, Nikolay, did either of you get a chance to test this yet?
> 
> I tested this patch with generic/273 and it didn't prevent ENOSPC there.

Weird, I've never seen generic/273 fail. Anyways, I'm more interested in
the installer ENOSPCs Jeff mentioned.

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

* Re: [PATCH] Btrfs: fix early ENOSPC due to delalloc
  2017-07-15  7:09     ` Omar Sandoval
@ 2017-07-15 10:35       ` Nikolay Borisov
  0 siblings, 0 replies; 5+ messages in thread
From: Nikolay Borisov @ 2017-07-15 10:35 UTC (permalink / raw)
  To: Omar Sandoval; +Cc: linux-btrfs, Jeff Mahoney, kernel-team



On 15.07.2017 10:09, Omar Sandoval wrote:
> On Sat, Jul 15, 2017 at 09:43:18AM +0300, Nikolay Borisov wrote:
>>
>>
>> On 15.07.2017 00:36, Omar Sandoval wrote:
>>> On Thu, Jul 06, 2017 at 10:59:27PM -0700, Omar Sandoval wrote:
>>>> From: Omar Sandoval <osandov@fb.com>
>>>>
>>>> If a lot of metadata is reserved for outstanding delayed allocations, we
>>>> rely on shrink_delalloc() to reclaim metadata space in order to fulfill
>>>> reservation tickets. However, shrink_delalloc() has a shortcut where if
>>>> it determines that space can be overcommitted, it will stop early. This
>>>> made sense before the ticketed enospc system, but now it means that
>>>> shrink_delalloc() will often not reclaim enough space to fulfill any
>>>> tickets, leading to an early ENOSPC. (Reservation tickets don't care
>>>> about being able to overcommit, they need every byte accounted for.)
>>>>
>>>> Fix it by getting rid of the shortcut so that shrink_delalloc() reclaims
>>>> all of the metadata it is supposed to. This fixes early ENOSPCs we were
>>>> seeing when doing a btrfs receive to populate a new filesystem.
>>>
>>> Jeff, Nikolay, did either of you get a chance to test this yet?
>>
>> I tested this patch with generic/273 and it didn't prevent ENOSPC there.
> 
> Weird, I've never seen generic/273 fail. Anyways, I'm more interested in
> the installer ENOSPCs Jeff mentioned.

It's failing even on current upstream kernels with premature ENOSPC.

> 

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

end of thread, other threads:[~2017-07-15 10:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-07  5:59 [PATCH] Btrfs: fix early ENOSPC due to delalloc Omar Sandoval
2017-07-14 21:36 ` Omar Sandoval
2017-07-15  6:43   ` Nikolay Borisov
2017-07-15  7:09     ` Omar Sandoval
2017-07-15 10:35       ` Nikolay Borisov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).