* [PATCH] libxl: set channel devid when not provided by application
@ 2018-02-08 3:04 Jim Fehlig
2018-02-21 22:33 ` Jim Fehlig
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Jim Fehlig @ 2018-02-08 3:04 UTC (permalink / raw)
To: xen-devel; +Cc: wei.liu2, Jim Fehlig, ian.jackson
Applications like libvirt may not populate a device devid field,
delegating that to libxl. If needed, the application can later
retrieve the libxl-produced devid. Indeed most devices are handled
this way in libvirt, channel devices included.
This works well when only one channel device is defined, but more
than one results in
qemu-system-i386: -chardev socket,id=libxl-channel-1,\
path=/tmp/test-org.qemu.guest_agent.00,server,nowait:
Duplicate ID 'libxl-channel-1' for chardev
Besides the odd '-1' value in the id, multiple channels have the same
id, causing qemu to fail. A simple fix is to set an uninitialized
devid (-1) to the dev_num passed to libxl__init_console_from_channel().
Signed-off-by: Jim Fehlig <jfehlig@suse.com>
---
I get the feeling that if needed devid should be set earlier, but
this seems like the most opportune spot. Suggestions for improvements
welcome.
tools/libxl/libxl_console.c | 3 +++
1 file changed, 3 insertions(+)
diff --git a/tools/libxl/libxl_console.c b/tools/libxl/libxl_console.c
index 39d8430df8..8faf3a24f3 100644
--- a/tools/libxl/libxl_console.c
+++ b/tools/libxl/libxl_console.c
@@ -401,6 +401,9 @@ int libxl__init_console_from_channel(libxl__gc *gc,
/* Perform validation first, allocate second. */
+ if (channel->devid == -1)
+ channel->devid = dev_num;
+
if (!channel->name) {
LOG(ERROR, "channel %d has no name", channel->devid);
return ERROR_INVAL;
--
2.16.0
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] libxl: set channel devid when not provided by application
2018-02-08 3:04 [PATCH] libxl: set channel devid when not provided by application Jim Fehlig
@ 2018-02-21 22:33 ` Jim Fehlig
2018-02-23 16:31 ` Roger Pau Monné
2018-02-23 18:26 ` Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Jim Fehlig @ 2018-02-21 22:33 UTC (permalink / raw)
To: xen-devel; +Cc: ian.jackson, wei.liu2
Any comments on this patch? Thanks!
Regards,
Jim
On 02/07/2018 08:04 PM, Jim Fehlig wrote:
> Applications like libvirt may not populate a device devid field,
> delegating that to libxl. If needed, the application can later
> retrieve the libxl-produced devid. Indeed most devices are handled
> this way in libvirt, channel devices included.
>
> This works well when only one channel device is defined, but more
> than one results in
>
> qemu-system-i386: -chardev socket,id=libxl-channel-1,\
> path=/tmp/test-org.qemu.guest_agent.00,server,nowait:
> Duplicate ID 'libxl-channel-1' for chardev
>
> Besides the odd '-1' value in the id, multiple channels have the same
> id, causing qemu to fail. A simple fix is to set an uninitialized
> devid (-1) to the dev_num passed to libxl__init_console_from_channel().
>
> Signed-off-by: Jim Fehlig <jfehlig@suse.com>
> ---
>
> I get the feeling that if needed devid should be set earlier, but
> this seems like the most opportune spot. Suggestions for improvements
> welcome.
>
> tools/libxl/libxl_console.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/tools/libxl/libxl_console.c b/tools/libxl/libxl_console.c
> index 39d8430df8..8faf3a24f3 100644
> --- a/tools/libxl/libxl_console.c
> +++ b/tools/libxl/libxl_console.c
> @@ -401,6 +401,9 @@ int libxl__init_console_from_channel(libxl__gc *gc,
>
> /* Perform validation first, allocate second. */
>
> + if (channel->devid == -1)
> + channel->devid = dev_num;
> +
> if (!channel->name) {
> LOG(ERROR, "channel %d has no name", channel->devid);
> return ERROR_INVAL;
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libxl: set channel devid when not provided by application
2018-02-08 3:04 [PATCH] libxl: set channel devid when not provided by application Jim Fehlig
2018-02-21 22:33 ` Jim Fehlig
@ 2018-02-23 16:31 ` Roger Pau Monné
2018-02-23 18:26 ` Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Roger Pau Monné @ 2018-02-23 16:31 UTC (permalink / raw)
To: Jim Fehlig; +Cc: xen-devel, wei.liu2, ian.jackson
On Wed, Feb 07, 2018 at 08:04:10PM -0700, Jim Fehlig wrote:
> Applications like libvirt may not populate a device devid field,
> delegating that to libxl. If needed, the application can later
> retrieve the libxl-produced devid. Indeed most devices are handled
> this way in libvirt, channel devices included.
>
> This works well when only one channel device is defined, but more
> than one results in
>
> qemu-system-i386: -chardev socket,id=libxl-channel-1,\
> path=/tmp/test-org.qemu.guest_agent.00,server,nowait:
> Duplicate ID 'libxl-channel-1' for chardev
>
> Besides the odd '-1' value in the id, multiple channels have the same
> id, causing qemu to fail. A simple fix is to set an uninitialized
> devid (-1) to the dev_num passed to libxl__init_console_from_channel().
>
> Signed-off-by: Jim Fehlig <jfehlig@suse.com>
> ---
>
> I get the feeling that if needed devid should be set earlier, but
> this seems like the most opportune spot. Suggestions for improvements
> welcome.
>
> tools/libxl/libxl_console.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/tools/libxl/libxl_console.c b/tools/libxl/libxl_console.c
> index 39d8430df8..8faf3a24f3 100644
> --- a/tools/libxl/libxl_console.c
> +++ b/tools/libxl/libxl_console.c
> @@ -401,6 +401,9 @@ int libxl__init_console_from_channel(libxl__gc *gc,
>
> /* Perform validation first, allocate second. */
>
> + if (channel->devid == -1)
> + channel->devid = dev_num;
This chunk looks fine, but below in this function there's a:
console->devid = dev_num;
Which needs to be replaced with:
console->devid = channel->devid;
In this same patch.
Thanks, Roger.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] libxl: set channel devid when not provided by application
2018-02-08 3:04 [PATCH] libxl: set channel devid when not provided by application Jim Fehlig
2018-02-21 22:33 ` Jim Fehlig
2018-02-23 16:31 ` Roger Pau Monné
@ 2018-02-23 18:26 ` Wei Liu
2 siblings, 0 replies; 4+ messages in thread
From: Wei Liu @ 2018-02-23 18:26 UTC (permalink / raw)
To: Jim Fehlig; +Cc: xen-devel, ian.jackson, wei.liu2
On Wed, Feb 07, 2018 at 08:04:10PM -0700, Jim Fehlig wrote:
> Applications like libvirt may not populate a device devid field,
> delegating that to libxl. If needed, the application can later
> retrieve the libxl-produced devid. Indeed most devices are handled
> this way in libvirt, channel devices included.
>
> This works well when only one channel device is defined, but more
> than one results in
>
> qemu-system-i386: -chardev socket,id=libxl-channel-1,\
> path=/tmp/test-org.qemu.guest_agent.00,server,nowait:
> Duplicate ID 'libxl-channel-1' for chardev
>
> Besides the odd '-1' value in the id, multiple channels have the same
> id, causing qemu to fail. A simple fix is to set an uninitialized
> devid (-1) to the dev_num passed to libxl__init_console_from_channel().
>
> Signed-off-by: Jim Fehlig <jfehlig@suse.com>
> ---
>
> I get the feeling that if needed devid should be set earlier, but
> this seems like the most opportune spot. Suggestions for improvements
> welcome.
I think this approach is fine.
Wei.
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2018-02-23 18:27 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-02-08 3:04 [PATCH] libxl: set channel devid when not provided by application Jim Fehlig
2018-02-21 22:33 ` Jim Fehlig
2018-02-23 16:31 ` Roger Pau Monné
2018-02-23 18:26 ` Wei Liu
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).