diff mbox series

[v1,1/2] tools: PCI: Fix compilation error

Message ID 20190628131218.10244-1-andriy.shevchenko@linux.intel.com
State Not Applicable
Delegated to: Lorenzo Pieralisi
Headers show
Series [v1,1/2] tools: PCI: Fix compilation error | expand

Commit Message

Andy Shevchenko June 28, 2019, 1:12 p.m. UTC
The commit

  b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")

forgot to update function prototype and thus brought a regression:

pcitest.c:221:9: error: void value not ignored as it ought to be
 return run_test(test);
        ^~~~~~~~~~~~~~

Fix it by changing prototype from void to int.

While here, initialize ret with 0 to avoid compiler warning:

pcitest.c:132:25: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]

Fixes: b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
Cc: Kishon Vijay Abraham I <kishon@ti.com>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 tools/pci/pcitest.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Comments

Lorenzo Pieralisi July 5, 2019, 1:34 p.m. UTC | #1
On Fri, Jun 28, 2019 at 04:12:17PM +0300, Andy Shevchenko wrote:
> The commit
> 
>   b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> 
> forgot to update function prototype and thus brought a regression:
> 
> pcitest.c:221:9: error: void value not ignored as it ought to be
>  return run_test(test);
>         ^~~~~~~~~~~~~~
> 
> Fix it by changing prototype from void to int.
> 
> While here, initialize ret with 0 to avoid compiler warning:
> 
> pcitest.c:132:25: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> 
> Fixes: b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
> Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> Cc: Kishon Vijay Abraham I <kishon@ti.com>
> Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> ---
>  tools/pci/pcitest.c | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)

Patch 1 and 2 already applied from another thread:

https://lore.kernel.org/linux-pci/1558646281-12676-1-git-send-email-alan.mikhak@sifive.com/

Thanks anyway !

Lorenzo

> diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c
> index cb7a47dfd8b6..81b89260e80f 100644
> --- a/tools/pci/pcitest.c
> +++ b/tools/pci/pcitest.c
> @@ -36,15 +36,15 @@ struct pci_test {
>  	unsigned long	size;
>  };
>  
> -static void run_test(struct pci_test *test)
> +static int run_test(struct pci_test *test)
>  {
> -	long ret;
> +	long ret = 0;
>  	int fd;
>  
>  	fd = open(test->device, O_RDWR);
>  	if (fd < 0) {
>  		perror("can't open PCI Endpoint Test device");
> -		return;
> +		return fd;
>  	}
>  
>  	if (test->barnum >= 0 && test->barnum <= 5) {
> @@ -129,7 +129,7 @@ static void run_test(struct pci_test *test)
>  	}
>  
>  	fflush(stdout);
> -	return (ret < 0) ? ret : 1 - ret; /* return 0 if test succeeded */
> +	return (ret < 0) ? ret : 0; /* return 0 if test succeeded */
>  }
>  
>  int main(int argc, char **argv)
> -- 
> 2.20.1
>
Andy Shevchenko July 5, 2019, 2:21 p.m. UTC | #2
On Fri, Jul 05, 2019 at 02:34:41PM +0100, Lorenzo Pieralisi wrote:
> On Fri, Jun 28, 2019 at 04:12:17PM +0300, Andy Shevchenko wrote:
> > The commit
> > 
> >   b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > 
> > forgot to update function prototype and thus brought a regression:
> > 
> > pcitest.c:221:9: error: void value not ignored as it ought to be
> >  return run_test(test);
> >         ^~~~~~~~~~~~~~
> > 
> > Fix it by changing prototype from void to int.
> > 
> > While here, initialize ret with 0 to avoid compiler warning:
> > 
> > pcitest.c:132:25: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> > 
> > Fixes: b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
> > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > Cc: Kishon Vijay Abraham I <kishon@ti.com>
> > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > ---
> >  tools/pci/pcitest.c | 8 ++++----
> >  1 file changed, 4 insertions(+), 4 deletions(-)
> 
> Patch 1 and 2 already applied from another thread:
> 
> https://lore.kernel.org/linux-pci/1558646281-12676-1-git-send-email-alan.mikhak@sifive.com/
> 
> Thanks anyway !

I don't see neither in v5.2-rc7, nor in Linux Next.
In which repository is it?
Lorenzo Pieralisi July 5, 2019, 3:04 p.m. UTC | #3
On Fri, Jul 05, 2019 at 05:21:47PM +0300, Andy Shevchenko wrote:
> On Fri, Jul 05, 2019 at 02:34:41PM +0100, Lorenzo Pieralisi wrote:
> > On Fri, Jun 28, 2019 at 04:12:17PM +0300, Andy Shevchenko wrote:
> > > The commit
> > > 
> > >   b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > > 
> > > forgot to update function prototype and thus brought a regression:
> > > 
> > > pcitest.c:221:9: error: void value not ignored as it ought to be
> > >  return run_test(test);
> > >         ^~~~~~~~~~~~~~
> > > 
> > > Fix it by changing prototype from void to int.
> > > 
> > > While here, initialize ret with 0 to avoid compiler warning:
> > > 
> > > pcitest.c:132:25: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> > > 
> > > Fixes: b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > > Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
> > > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > Cc: Kishon Vijay Abraham I <kishon@ti.com>
> > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > ---
> > >  tools/pci/pcitest.c | 8 ++++----
> > >  1 file changed, 4 insertions(+), 4 deletions(-)
> > 
> > Patch 1 and 2 already applied from another thread:
> > 
> > https://lore.kernel.org/linux-pci/1558646281-12676-1-git-send-email-alan.mikhak@sifive.com/
> > 
> > Thanks anyway !
> 
> I don't see neither in v5.2-rc7, nor in Linux Next.
> In which repository is it?

It is in -next:

https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/log/tools/pci/pcitest.c?h=next-20190705
Andy Shevchenko July 5, 2019, 3:49 p.m. UTC | #4
On Fri, Jul 05, 2019 at 04:04:12PM +0100, Lorenzo Pieralisi wrote:
> On Fri, Jul 05, 2019 at 05:21:47PM +0300, Andy Shevchenko wrote:
> > On Fri, Jul 05, 2019 at 02:34:41PM +0100, Lorenzo Pieralisi wrote:
> > > On Fri, Jun 28, 2019 at 04:12:17PM +0300, Andy Shevchenko wrote:
> > > > The commit
> > > > 
> > > >   b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > > > 
> > > > forgot to update function prototype and thus brought a regression:
> > > > 
> > > > pcitest.c:221:9: error: void value not ignored as it ought to be
> > > >  return run_test(test);
> > > >         ^~~~~~~~~~~~~~
> > > > 
> > > > Fix it by changing prototype from void to int.
> > > > 
> > > > While here, initialize ret with 0 to avoid compiler warning:
> > > > 
> > > > pcitest.c:132:25: warning: ‘ret’ may be used uninitialized in this function [-Wmaybe-uninitialized]
> > > > 
> > > > Fixes: b71f0a0b1e3f ("tools: PCI: Exit with error code when test fails")
> > > > Cc: Jean-Jacques Hiblot <jjhiblot@ti.com>
> > > > Cc: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
> > > > Cc: Kishon Vijay Abraham I <kishon@ti.com>
> > > > Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
> > > > ---
> > > >  tools/pci/pcitest.c | 8 ++++----
> > > >  1 file changed, 4 insertions(+), 4 deletions(-)
> > > 
> > > Patch 1 and 2 already applied from another thread:
> > > 
> > > https://lore.kernel.org/linux-pci/1558646281-12676-1-git-send-email-alan.mikhak@sifive.com/
> > > 
> > > Thanks anyway !
> > 
> > I don't see neither in v5.2-rc7, nor in Linux Next.
> > In which repository is it?
> 
> It is in -next:
> 
> https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git/log/tools/pci/pcitest.c?h=next-20190705

Ah, thanks. It seems I forgot to update my local branch.
diff mbox series

Patch

diff --git a/tools/pci/pcitest.c b/tools/pci/pcitest.c
index cb7a47dfd8b6..81b89260e80f 100644
--- a/tools/pci/pcitest.c
+++ b/tools/pci/pcitest.c
@@ -36,15 +36,15 @@  struct pci_test {
 	unsigned long	size;
 };
 
-static void run_test(struct pci_test *test)
+static int run_test(struct pci_test *test)
 {
-	long ret;
+	long ret = 0;
 	int fd;
 
 	fd = open(test->device, O_RDWR);
 	if (fd < 0) {
 		perror("can't open PCI Endpoint Test device");
-		return;
+		return fd;
 	}
 
 	if (test->barnum >= 0 && test->barnum <= 5) {
@@ -129,7 +129,7 @@  static void run_test(struct pci_test *test)
 	}
 
 	fflush(stdout);
-	return (ret < 0) ? ret : 1 - ret; /* return 0 if test succeeded */
+	return (ret < 0) ? ret : 0; /* return 0 if test succeeded */
 }
 
 int main(int argc, char **argv)