All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] libxl: set rc to 0 in init_acpi_config in success path
@ 2016-12-16 15:51 Wei Liu
  2016-12-16 15:59 ` Boris Ostrovsky
  0 siblings, 1 reply; 2+ messages in thread
From: Wei Liu @ 2016-12-16 15:51 UTC (permalink / raw)
  To: Xen-devel; +Cc: Ian Jackson, Boris Ostrovsky, Wei Liu

xc_doamin_getinfo returns >=0 in success path, and if there is no vnode
configured, that rc will be returned to caller, which indicates error.

Fix that by setting rc to 0 in success path.

Reported-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: Wei Liu <wei.liu2@citrix.com>
---
Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Cc: Ian Jackson <ian.jackson@eu.citrix.com>

Please squash this with "libxl: init_acpi_config should return rc
in exit path" when backporting to 4.8.
---
 tools/libxl/libxl_x86_acpi.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/libxl/libxl_x86_acpi.c b/tools/libxl/libxl_x86_acpi.c
index 6cf0c30..173188f 100644
--- a/tools/libxl/libxl_x86_acpi.c
+++ b/tools/libxl/libxl_x86_acpi.c
@@ -153,6 +153,7 @@ static int init_acpi_config(libxl__gc *gc,
     config->lapic_id = acpi_lapic_id;
     config->acpi_revision = 5;
 
+    rc = 0;
 out:
     return rc;
 }
-- 
2.1.4


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

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

* Re: [PATCH] libxl: set rc to 0 in init_acpi_config in success path
  2016-12-16 15:51 [PATCH] libxl: set rc to 0 in init_acpi_config in success path Wei Liu
@ 2016-12-16 15:59 ` Boris Ostrovsky
  0 siblings, 0 replies; 2+ messages in thread
From: Boris Ostrovsky @ 2016-12-16 15:59 UTC (permalink / raw)
  To: Wei Liu, Xen-devel; +Cc: Ian Jackson

On 12/16/2016 10:51 AM, Wei Liu wrote:
> xc_doamin_getinfo returns >=0 in success path, and if there is no vnode
> configured, that rc will be returned to caller, which indicates error.
>
> Fix that by setting rc to 0 in success path.
>
> Reported-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Signed-off-by: Wei Liu <wei.liu2@citrix.com>
> ---
> Cc: Boris Ostrovsky <boris.ostrovsky@oracle.com>
> Cc: Ian Jackson <ian.jackson@eu.citrix.com>
>
> Please squash this with "libxl: init_acpi_config should return rc
> in exit path" when backporting to 4.8.
> ---
>  tools/libxl/libxl_x86_acpi.c | 1 +
>  1 file changed, 1 insertion(+)
>
> diff --git a/tools/libxl/libxl_x86_acpi.c b/tools/libxl/libxl_x86_acpi.c
> index 6cf0c30..173188f 100644
> --- a/tools/libxl/libxl_x86_acpi.c
> +++ b/tools/libxl/libxl_x86_acpi.c
> @@ -153,6 +153,7 @@ static int init_acpi_config(libxl__gc *gc,
>      config->lapic_id = acpi_lapic_id;
>      config->acpi_revision = 5;
>  
> +    rc = 0;
>  out:
>      return rc;
>  }

You can also drop 'int rc = 0;' definition.

Either way,

Tested-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

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

end of thread, other threads:[~2016-12-16 15:57 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-12-16 15:51 [PATCH] libxl: set rc to 0 in init_acpi_config in success path Wei Liu
2016-12-16 15:59 ` Boris Ostrovsky

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.