linux-ext4.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Lukáš Czerner" <lczerner@redhat.com>
To: Namjae Jeon <namjae.jeon@samsung.com>
Cc: "Theodore Ts'o" <tytso@mit.edu>, linux-ext4 <linux-ext4@vger.kernel.org>
Subject: Re: [PATCH 3/3] ext4: disable COLLAPSE_RANGE for bigalloc
Date: Thu, 17 Apr 2014 13:15:48 +0200 (CEST)	[thread overview]
Message-ID: <alpine.LFD.2.00.1404171313210.2143@localhost.localdomain> (raw)
In-Reply-To: <002b01cf59c3$878af780$96a0e680$@samsung.com>

[-- Attachment #1: Type: TEXT/PLAIN, Size: 1478 bytes --]

On Thu, 17 Apr 2014, Namjae Jeon wrote:

> Date: Thu, 17 Apr 2014 07:30:54 +0900
> From: Namjae Jeon <namjae.jeon@samsung.com>
> To: Theodore Ts'o <tytso@mit.edu>
> Cc: linux-ext4 <linux-ext4@vger.kernel.org>,
>     Lukáš Czerner <lczerner@redhat.com>
> Subject: [PATCH 3/3] ext4: disable COLLAPSE_RANGE for bigalloc
> 
> From: Namjae Jeon <namjae.jeon@samsung.com>
> 
> Once COLLAPSE RANGE is be disable for ext4 with bigalloc feature till finding
> root-cause of problem. It will be enable with fixing that regression of
> xfstest(generic 075 and 091) again.
> 
> Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
> Signed-off-by: Ashish Sangwan <a.sangwan@samsung.com>
> ---
>  fs/ext4/extents.c | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
> index a64242f..8d45ef8 100644
> --- a/fs/ext4/extents.c
> +++ b/fs/ext4/extents.c
> @@ -5461,6 +5461,11 @@ int ext4_collapse_range(struct inode *inode, loff_t offset, loff_t len)
>  		goto out_mutex;
>  	}
>  
> +	if (EXT4_SB(inode->i_sb)->s_cluster_ratio > 1) {
> +		ret = -EOPNOTSUPP;
> +		goto out_mutex;
> +	}
> +

I do not think we need to hold mutex for this. You can move it to
the beginning of the function preferably right after S_ISREG check.

Otherwise it looks ok, but it would be better if we could fix it :)

Reviewed-by: Lukas Czerner <lczerner@redhat.com>

>  	truncate_pagecache_range(inode, ioffset, -1);
>  
>  	/* Wait for existing dio to complete */
> 

  reply	other threads:[~2014-04-17 11:15 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-16 22:30 [PATCH 3/3] ext4: disable COLLAPSE_RANGE for bigalloc Namjae Jeon
2014-04-17 11:15 ` Lukáš Czerner [this message]
2014-04-17 11:27   ` Namjae Jeon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=alpine.LFD.2.00.1404171313210.2143@localhost.localdomain \
    --to=lczerner@redhat.com \
    --cc=linux-ext4@vger.kernel.org \
    --cc=namjae.jeon@samsung.com \
    --cc=tytso@mit.edu \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).