public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
From: Eric Sandeen <sandeen@sandeen.net>
To: Christoph Hellwig <hch@lst.de>
Cc: xfs@oss.sgi.com
Subject: Re: [PATCH] fix sparse shadowed variable warnings
Date: Sat, 14 Jul 2007 11:44:12 -0500	[thread overview]
Message-ID: <4698FD5C.60900@sandeen.net> (raw)
In-Reply-To: <20070714160825.GD7768@lst.de>

Christoph Hellwig wrote:
>  - in xfs_probe_cluster rename the inner len to pg_len.  There's no harm
>    here because the utter len isn't used after the inner len comes into
>    existance but it keeps the code clean.
>  - in xfs_da_do_buf remove the inner i because both useage don't overlap
>    and they are the same type.
> 

Looks fine

-Eric

> Signed-off-by: Christoph Hellwig <hch@lst.de>
> 
> Index: linux-2.6-xfs/fs/xfs/linux-2.6/xfs_aops.c
> ===================================================================
> --- linux-2.6-xfs.orig/fs/xfs/linux-2.6/xfs_aops.c	2007-07-14 16:02:19.000000000 +0200
> +++ linux-2.6-xfs/fs/xfs/linux-2.6/xfs_aops.c	2007-07-14 16:03:09.000000000 +0200
> @@ -652,7 +652,7 @@ xfs_probe_cluster(
>  
>  		for (i = 0; i < pagevec_count(&pvec); i++) {
>  			struct page *page = pvec.pages[i];
> -			size_t pg_offset, len = 0;
> +			size_t pg_offset, pg_len = 0;
>  
>  			if (tindex == tlast) {
>  				pg_offset =
> @@ -665,16 +665,16 @@ xfs_probe_cluster(
>  				pg_offset = PAGE_CACHE_SIZE;
>  
>  			if (page->index == tindex && !TestSetPageLocked(page)) {
> -				len = xfs_probe_page(page, pg_offset, mapped);
> +				pg_len = xfs_probe_page(page, pg_offset, mapped);
>  				unlock_page(page);
>  			}
>  
> -			if (!len) {
> +			if (!pg_len) {
>  				done = 1;
>  				break;
>  			}
>  
> -			total += len;
> +			total += pg_len;
>  			tindex++;
>  		}
>  
> Index: linux-2.6-xfs/fs/xfs/xfs_da_btree.c
> ===================================================================
> --- linux-2.6-xfs.orig/fs/xfs/xfs_da_btree.c	2007-07-14 16:01:43.000000000 +0200
> +++ linux-2.6-xfs/fs/xfs/xfs_da_btree.c	2007-07-14 16:02:01.000000000 +0200
> @@ -1975,7 +1975,6 @@ xfs_da_do_buf(
>  		error = mappedbno == -2 ? 0 : XFS_ERROR(EFSCORRUPTED);
>  		if (unlikely(error == EFSCORRUPTED)) {
>  			if (xfs_error_level >= XFS_ERRLEVEL_LOW) {
> -				int	i;
>  				cmn_err(CE_ALERT, "xfs_da_do_buf: bno %lld\n",
>  					(long long)bno);
>  				cmn_err(CE_ALERT, "dir: inode %lld\n",
> 
> 

      reply	other threads:[~2007-07-14 16:44 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-07-14 16:08 [PATCH] fix sparse shadowed variable warnings Christoph Hellwig
2007-07-14 16:44 ` Eric Sandeen [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=4698FD5C.60900@sandeen.net \
    --to=sandeen@sandeen.net \
    --cc=hch@lst.de \
    --cc=xfs@oss.sgi.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