linux-raid.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mdadm: fix build failures (ppc64)
@ 2011-07-06 19:48 Milan Broz
  2011-07-14  3:59 ` NeilBrown
  0 siblings, 1 reply; 2+ messages in thread
From: Milan Broz @ 2011-07-06 19:48 UTC (permalink / raw)
  To: linux-raid; +Cc: neilb, Milan Broz

This patch fixes these build issues:

super-intel.c: In function 'getinfo_super_imsm_volume':
super-intel.c:2327:4: error: format '%llu' expects argument of type 'long long
unsigned int', but argument 3 has type '__u64' [-Werror=format]

super-intel.c: In function 'imsm_reshape_super':
super-intel.c:8665:7: error: 'devnum' may be used uninitialized in this function [-Werror=uninitialized]

Signed-off-by: Milan Broz <mbroz@redhat.com>
---
 super-intel.c |   10 ++++++++--
 1 files changed, 8 insertions(+), 2 deletions(-)

diff --git a/super-intel.c b/super-intel.c
index 2ef2b3c..572b710 100644
--- a/super-intel.c
+++ b/super-intel.c
@@ -2326,7 +2326,9 @@ static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info,
 
 			dprintf("IMSM: General Migration checkpoint : %llu "
 			       "(%llu) -> read reshape progress : %llu\n",
-				units, blocks_per_unit, info->reshape_progress);
+				(unsigned long long)units,
+				(unsigned long long)blocks_per_unit,
+				info->reshape_progress);
 
 			used_disks = imsm_num_data_members(dev, 1);
 			if (used_disks > 0) {
@@ -8661,7 +8663,11 @@ static int imsm_reshape_super(struct supertype *st, long long size, int level,
 		dprintf("imsm: info: Volume operation\n");
 		/* find requested device */
 		while (dev) {
-			imsm_find_array_minor_by_subdev(dev->index, st->container_dev, &devnum);
+			if (imsm_find_array_minor_by_subdev(dev->index,
+			    st->container_dev, &devnum) < 0) {
+				dprintf("imsm: cannot find array\n");
+				goto exit_imsm_reshape_super;
+			}
 			if (devnum == geo.dev_id)
 				break;
 			dev = dev->next;
-- 
1.7.5.4


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] mdadm: fix build failures (ppc64)
  2011-07-06 19:48 [PATCH] mdadm: fix build failures (ppc64) Milan Broz
@ 2011-07-14  3:59 ` NeilBrown
  0 siblings, 0 replies; 2+ messages in thread
From: NeilBrown @ 2011-07-14  3:59 UTC (permalink / raw)
  To: Milan Broz; +Cc: linux-raid

On Wed,  6 Jul 2011 21:48:00 +0200 Milan Broz <mbroz@redhat.com> wrote:

> This patch fixes these build issues:
> 
> super-intel.c: In function 'getinfo_super_imsm_volume':
> super-intel.c:2327:4: error: format '%llu' expects argument of type 'long long
> unsigned int', but argument 3 has type '__u64' [-Werror=format]

Thanks.  This bit looks good.

> 
> super-intel.c: In function 'imsm_reshape_super':
> super-intel.c:8665:7: error: 'devnum' may be used uninitialized in this function [-Werror=uninitialized]

However I don't agree with your fix for this bit.  If the array isn't
found, we should simply go around the loop again like this.

@@ -8661,8 +8663,9 @@ static int imsm_reshape_super(struct supertype *st, long long size, int level,
 		dprintf("imsm: info: Volume operation\n");
 		/* find requested device */
 		while (dev) {
-			imsm_find_array_minor_by_subdev(dev->index, st->container_dev, &devnum);
-			if (devnum == geo.dev_id)
+			if (imsm_find_array_minor_by_subdev(
+				    dev->index, st->container_dev, &devnum) == 0
+			    && devnum == geo.dev_id)
 				break;
 			dev = dev->next;
 		}


So I have changed it to that and applied.

Thanks,
NeilBrown



> 
> Signed-off-by: Milan Broz <mbroz@redhat.com>
> ---
>  super-intel.c |   10 ++++++++--
>  1 files changed, 8 insertions(+), 2 deletions(-)
> 
> diff --git a/super-intel.c b/super-intel.c
> index 2ef2b3c..572b710 100644
> --- a/super-intel.c
> +++ b/super-intel.c
> @@ -2326,7 +2326,9 @@ static void getinfo_super_imsm_volume(struct supertype *st, struct mdinfo *info,
>  
>  			dprintf("IMSM: General Migration checkpoint : %llu "
>  			       "(%llu) -> read reshape progress : %llu\n",
> -				units, blocks_per_unit, info->reshape_progress);
> +				(unsigned long long)units,
> +				(unsigned long long)blocks_per_unit,
> +				info->reshape_progress);
>  
>  			used_disks = imsm_num_data_members(dev, 1);
>  			if (used_disks > 0) {
> @@ -8661,7 +8663,11 @@ static int imsm_reshape_super(struct supertype *st, long long size, int level,
>  		dprintf("imsm: info: Volume operation\n");
>  		/* find requested device */
>  		while (dev) {
> -			imsm_find_array_minor_by_subdev(dev->index, st->container_dev, &devnum);
> +			if (imsm_find_array_minor_by_subdev(dev->index,
> +			    st->container_dev, &devnum) < 0) {
> +				dprintf("imsm: cannot find array\n");
> +				goto exit_imsm_reshape_super;
> +			}
>  			if (devnum == geo.dev_id)
>  				break;
>  			dev = dev->next;


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-07-14  3:59 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-07-06 19:48 [PATCH] mdadm: fix build failures (ppc64) Milan Broz
2011-07-14  3:59 ` NeilBrown

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).