xfs-masters
[Top] [All Lists]

[xfs-masters] Re: [PATCH] fs/xfs/xfs_bmap.c: initialize variable, remove

To: linux-kernel@xxxxxxxxxxxxxxx
Subject: [xfs-masters] Re: [PATCH] fs/xfs/xfs_bmap.c: initialize variable, remove warning
From: Luca <kronos.it@xxxxxxxxx>
Date: Tue, 2 May 2006 22:54:06 +0200
Cc: "Petri T. Koistinen" <petri.koistinen@xxxxxx>, xfs-masters@xxxxxxxxxxx, nathans@xxxxxxx
Domainkey-signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:cc:subject:message-id:mime-version:content-type:content-disposition:in-reply-to:user-agent; b=ZnV5ArETFS5ZvCqwA8RhMoAAmS/3hZwVOJxSxCAr3gp/0iqydyT8mVqgcPUg086ZQLXx1qIw5ldif90D6XPUkIFbhY5tz0pX5H8d5aPO9z2d/CkqCqChav3yJ5Jz+ItpFvPtAXqLlv3oE6UnvQ+zwFXd0XwP1Buvht76Tv9DJLc=
In-reply-to: <Pine.LNX.4.64.0605020015230.5245@joo>
Reply-to: xfs-masters@xxxxxxxxxxx
Sender: xfs-masters-bounce@xxxxxxxxxxx
User-agent: Mutt/1.5.11+cvs20060126
Petri T. Koistinen <petri.koistinen@xxxxxx> ha scritto:
> From: Petri T. Koistinen <petri.koistinen@xxxxxx>
> 
> Remove warning by initializing uninitialized variable.
> 
> Warning:
>  CC      fs/xfs/xfs_bmap.o
> fs/xfs/xfs_bmap.c: In function 'xfs_bmapi':
> fs/xfs/xfs_bmap.c:2498: warning: 'rtx' is used uninitialized in this function
> 
> Signed-off-by: Petri T. Koistinen <petri.koistinen@xxxxxx>
> ---
> fs/xfs/xfs_bmap.c |    2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
> ---
> diff --git a/fs/xfs/xfs_bmap.c b/fs/xfs/xfs_bmap.c
> index 26939d3..35bad7b 100644
> --- a/fs/xfs/xfs_bmap.c
> +++ b/fs/xfs/xfs_bmap.c
> @@ -2453,7 +2453,7 @@ xfs_bmap_rtalloc(
>       xfs_extlen_t    prod = 0;       /* product factor for allocators */
>       xfs_extlen_t    ralen = 0;      /* realtime allocation length */
>       xfs_extlen_t    align;          /* minimum allocation alignment */
> -     xfs_rtblock_t   rtx;            /* realtime extent number */
> +     xfs_rtblock_t   rtx = 0;        /* realtime extent number */
>       xfs_rtblock_t   rtb;
> 
>       mp = ap->ip->i_mount;


Dump compiler ;)

rtx is initialized by xfs_rtpick_extent(); if xfs_rtpick_extent succedes
then rtx is initialized, if it fails then rtx is never used.

I also see the warning, and I'm compiling without CONFIG_XFS_RT; in this
case xfs_rtpick_extent() is a noop (ENOSYS), gcc really should see that
rtx won't be used. Funny.

Luca
-- 
Home: http://kronoz.cjb.net
Il piu` bel momento dell'amore e` quando ci si illude che duri per 
sempre; il piu` brutto, quando ci si accorge che dura da troppo.


<Prev in Thread] Current Thread [Next in Thread>