lkml.org 
[lkml]   [2013]   [Apr]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[ 114/171 ] Btrfs: limit the global reserve to 512mb
    3.6.11.2 stable review patch.
    If anyone has any objections, please let me know.

    ------------------

    From: Josef Bacik <jbacik@fusionio.com>

    [ Upstream commit fdf30d1c1b386e1b73116cc7e0fb14e962b763b0 ]

    A user reported a problem where he was getting early ENOSPC with hundreds of
    gigs of free data space and 6 gigs of free metadata space. This is because the
    global block reserve was taking up the entire free metadata space. This is
    ridiculous, we have infrastructure in place to throttle if we start using too
    much of the global reserve, so instead of letting it get this huge just limit it
    to 512mb so that users can still get work done. This allowed the user to
    complete his rsync without issues. Thanks

    Cc: stable@vger.kernel.org
    Reported-and-tested-by: Stefan Priebe <s.priebe@profihost.ag>
    Signed-off-by: Josef Bacik <jbacik@fusionio.com>
    Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
    ---
    fs/btrfs/extent-tree.c | 2 +-
    1 file changed, 1 insertion(+), 1 deletion(-)

    diff --git a/fs/btrfs/extent-tree.c b/fs/btrfs/extent-tree.c
    index ba58024..f1bdfb5 100644
    --- a/fs/btrfs/extent-tree.c
    +++ b/fs/btrfs/extent-tree.c
    @@ -4301,7 +4301,7 @@ static void update_global_block_rsv(struct btrfs_fs_info *fs_info)
    spin_lock(&sinfo->lock);
    spin_lock(&block_rsv->lock);

    - block_rsv->size = num_bytes;
    + block_rsv->size = min_t(u64, num_bytes, 512 * 1024 * 1024);

    num_bytes = sinfo->bytes_used + sinfo->bytes_pinned +
    sinfo->bytes_reserved + sinfo->bytes_readonly +
    --
    1.7.10.4



    \
     
     \ /
      Last update: 2013-04-12 00:01    [W:4.133 / U:0.592 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site