public inbox for linux-ext4@vger.kernel.org
 help / color / mirror / Atom feed
From: Badari Pulavarty <pbadari@gmail.com>
To: Roel Kluin <12o3l@tiscali.nl>
Cc: linux-ext4@vger.kernel.org, sct@redhat.com,
	akpm@linux-foundation.org, adilger@clusterfs.com,
	Nick Piggin <npiggin@suse.de>
Subject: Re: [PATCH] EXT: fix test ext_generic_write_end() copied return value
Date: Thu, 17 Apr 2008 08:44:36 -0700	[thread overview]
Message-ID: <1208447076.17986.27.camel@badari-desktop> (raw)
In-Reply-To: <4806C23F.7080302@tiscali.nl>


On Thu, 2008-04-17 at 05:21 +0200, Roel Kluin wrote:
> 'copied' is unsigned, whereas 'ret2' is not. The test (copied < 0) fails
> 

While your patch is correct, we don't need it :(

"copied" can never be < 0. Infact, the check itself is NOT needed.
It might have been my fault to add that check, when we converted to
write_begin/end interfaces :(

As you can see block_write_end() never returns < 0.

Thanks,
Badari


> Signed-off-by: Roel Kluin <12o3l@tiscali.nl>
> ---
> diff --git a/fs/ext3/inode.c b/fs/ext3/inode.c
> index eb95670..43daaae 100644
> --- a/fs/ext3/inode.c
> +++ b/fs/ext3/inode.c
> @@ -1261,10 +1261,11 @@ static int ext3_ordered_write_end(struct file *file,
>  		new_i_size = pos + copied;
>  		if (new_i_size > EXT3_I(inode)->i_disksize)
>  			EXT3_I(inode)->i_disksize = new_i_size;
> -		copied = ext3_generic_write_end(file, mapping, pos, len, copied,
> +		ret2 = ext3_generic_write_end(file, mapping, pos, len, copied,
>  							page, fsdata);
> -		if (copied < 0)
> -			ret = copied;
> +		copied = ret2;
> +		if (ret2 < 0)
> +			ret = ret2;
>  	}
>  	ret2 = ext3_journal_stop(handle);
>  	if (!ret)
> @@ -1289,10 +1290,11 @@ static int ext3_writeback_write_end(struct file *file,
>  	if (new_i_size > EXT3_I(inode)->i_disksize)
>  		EXT3_I(inode)->i_disksize = new_i_size;
>  
> -	copied = ext3_generic_write_end(file, mapping, pos, len, copied,
> +	ret2 = ext3_generic_write_end(file, mapping, pos, len, copied,
>  							page, fsdata);
> -	if (copied < 0)
> -		ret = copied;
> +	copied = ret2;
> +	if (ret2 < 0)
> +		ret = ret2;
>  
>  	ret2 = ext3_journal_stop(handle);
>  	if (!ret)
> diff --git a/fs/ext4/inode.c b/fs/ext4/inode.c
> index 945cbf6..47d5d73 100644
> --- a/fs/ext4/inode.c
> +++ b/fs/ext4/inode.c
> @@ -1301,10 +1301,11 @@ static int ext4_ordered_write_end(struct file *file,
>  		new_i_size = pos + copied;
>  		if (new_i_size > EXT4_I(inode)->i_disksize)
>  			EXT4_I(inode)->i_disksize = new_i_size;
> -		copied = ext4_generic_write_end(file, mapping, pos, len, copied,
> +		ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
>  							page, fsdata);
> -		if (copied < 0)
> -			ret = copied;
> +		copied = ret2;
> +		if (ret2 < 0)
> +			ret = ret2;
>  	}
>  	ret2 = ext4_journal_stop(handle);
>  	if (!ret)
> @@ -1329,10 +1330,11 @@ static int ext4_writeback_write_end(struct file *file,
>  	if (new_i_size > EXT4_I(inode)->i_disksize)
>  		EXT4_I(inode)->i_disksize = new_i_size;
>  
> -	copied = ext4_generic_write_end(file, mapping, pos, len, copied,
> +	ret2 = ext4_generic_write_end(file, mapping, pos, len, copied,
>  							page, fsdata);
> -	if (copied < 0)
> -		ret = copied;
> +	copied = ret2;
> +	if (ret2 < 0)
> +		ret = ret2;
>  
>  	ret2 = ext4_journal_stop(handle);
>  	if (!ret)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


      reply	other threads:[~2008-04-17 15:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-04-17  3:21 [PATCH] EXT: fix test ext_generic_write_end() copied return value Roel Kluin
2008-04-17 15:44 ` Badari Pulavarty [this message]

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=1208447076.17986.27.camel@badari-desktop \
    --to=pbadari@gmail.com \
    --cc=12o3l@tiscali.nl \
    --cc=adilger@clusterfs.com \
    --cc=akpm@linux-foundation.org \
    --cc=linux-ext4@vger.kernel.org \
    --cc=npiggin@suse.de \
    --cc=sct@redhat.com \
    /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