qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] netdev: add more commands to preconfig mode
@ 2021-05-11 15:39 Paolo Bonzini
  2021-06-07 14:15 ` Paolo Bonzini
  2021-06-07 14:22 ` Daniel P. Berrangé
  0 siblings, 2 replies; 4+ messages in thread
From: Paolo Bonzini @ 2021-05-11 15:39 UTC (permalink / raw)
  To: qemu-devel; +Cc: jasowang

Creating and destroying network backend does not require a fully
constructed machine.  Allow the related monitor commands to run before
machine initialization has concluded.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 hmp-commands.hx | 2 ++
 qapi/net.json   | 6 ++++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hmp-commands.hx b/hmp-commands.hx
index 901a50ebd1..1768bc5df0 100644
--- a/hmp-commands.hx
+++ b/hmp-commands.hx
@@ -1276,6 +1276,7 @@ ERST
         .help       = "add host network device",
         .cmd        = hmp_netdev_add,
         .command_completion = netdev_add_completion,
+        .flags      = "p",
     },
 
 SRST
@@ -1290,6 +1291,7 @@ ERST
         .help       = "remove host network device",
         .cmd        = hmp_netdev_del,
         .command_completion = netdev_del_completion,
+        .flags      = "p",
     },
 
 SRST
diff --git a/qapi/net.json b/qapi/net.json
index af3f5b0fda..7fab2e7cd8 100644
--- a/qapi/net.json
+++ b/qapi/net.json
@@ -55,7 +55,8 @@
 # <- { "return": {} }
 #
 ##
-{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true }
+{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true,
+  'allow-preconfig': true }
 
 ##
 # @netdev_del:
@@ -75,7 +76,8 @@
 # <- { "return": {} }
 #
 ##
-{ 'command': 'netdev_del', 'data': {'id': 'str'} }
+{ 'command': 'netdev_del', 'data': {'id': 'str'},
+  'allow-preconfig': true }
 
 ##
 # @NetLegacyNicOptions:
-- 
2.26.2



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

* Re: [PATCH] netdev: add more commands to preconfig mode
  2021-05-11 15:39 [PATCH] netdev: add more commands to preconfig mode Paolo Bonzini
@ 2021-06-07 14:15 ` Paolo Bonzini
  2021-06-07 14:22 ` Daniel P. Berrangé
  1 sibling, 0 replies; 4+ messages in thread
From: Paolo Bonzini @ 2021-06-07 14:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: jasowang

On 11/05/21 17:39, Paolo Bonzini wrote:
> Creating and destroying network backend does not require a fully
> constructed machine.  Allow the related monitor commands to run before
> machine initialization has concluded.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>   hmp-commands.hx | 2 ++
>   qapi/net.json   | 6 ++++--
>   2 files changed, 6 insertions(+), 2 deletions(-)
> 
> diff --git a/hmp-commands.hx b/hmp-commands.hx
> index 901a50ebd1..1768bc5df0 100644
> --- a/hmp-commands.hx
> +++ b/hmp-commands.hx
> @@ -1276,6 +1276,7 @@ ERST
>           .help       = "add host network device",
>           .cmd        = hmp_netdev_add,
>           .command_completion = netdev_add_completion,
> +        .flags      = "p",
>       },
>   
>   SRST
> @@ -1290,6 +1291,7 @@ ERST
>           .help       = "remove host network device",
>           .cmd        = hmp_netdev_del,
>           .command_completion = netdev_del_completion,
> +        .flags      = "p",
>       },
>   
>   SRST
> diff --git a/qapi/net.json b/qapi/net.json
> index af3f5b0fda..7fab2e7cd8 100644
> --- a/qapi/net.json
> +++ b/qapi/net.json
> @@ -55,7 +55,8 @@
>   # <- { "return": {} }
>   #
>   ##
> -{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true }
> +{ 'command': 'netdev_add', 'data': 'Netdev', 'boxed': true,
> +  'allow-preconfig': true }
>   
>   ##
>   # @netdev_del:
> @@ -75,7 +76,8 @@
>   # <- { "return": {} }
>   #
>   ##
> -{ 'command': 'netdev_del', 'data': {'id': 'str'} }
> +{ 'command': 'netdev_del', 'data': {'id': 'str'},
> +  'allow-preconfig': true }
>   
>   ##
>   # @NetLegacyNicOptions:
> 

Ping.


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

* Re: [PATCH] netdev: add more commands to preconfig mode
  2021-05-11 15:39 [PATCH] netdev: add more commands to preconfig mode Paolo Bonzini
  2021-06-07 14:15 ` Paolo Bonzini
@ 2021-06-07 14:22 ` Daniel P. Berrangé
  2021-06-08  2:40   ` Jason Wang
  1 sibling, 1 reply; 4+ messages in thread
From: Daniel P. Berrangé @ 2021-06-07 14:22 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: jasowang, qemu-devel

On Tue, May 11, 2021 at 11:39:55AM -0400, Paolo Bonzini wrote:
> Creating and destroying network backend does not require a fully
> constructed machine.  Allow the related monitor commands to run before
> machine initialization has concluded.
> 
> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
> ---
>  hmp-commands.hx | 2 ++
>  qapi/net.json   | 6 ++++--
>  2 files changed, 6 insertions(+), 2 deletions(-)

Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|



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

* Re: [PATCH] netdev: add more commands to preconfig mode
  2021-06-07 14:22 ` Daniel P. Berrangé
@ 2021-06-08  2:40   ` Jason Wang
  0 siblings, 0 replies; 4+ messages in thread
From: Jason Wang @ 2021-06-08  2:40 UTC (permalink / raw)
  To: Daniel P. Berrangé, Paolo Bonzini; +Cc: qemu-devel


在 2021/6/7 下午10:22, Daniel P. Berrangé 写道:
> On Tue, May 11, 2021 at 11:39:55AM -0400, Paolo Bonzini wrote:
>> Creating and destroying network backend does not require a fully
>> constructed machine.  Allow the related monitor commands to run before
>> machine initialization has concluded.
>>
>> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
>> ---
>>   hmp-commands.hx | 2 ++
>>   qapi/net.json   | 6 ++++--
>>   2 files changed, 6 insertions(+), 2 deletions(-)
> Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
>
>
> Regards,
> Daniel


Queued.

Thanks



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

end of thread, other threads:[~2021-06-08  2:41 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-05-11 15:39 [PATCH] netdev: add more commands to preconfig mode Paolo Bonzini
2021-06-07 14:15 ` Paolo Bonzini
2021-06-07 14:22 ` Daniel P. Berrangé
2021-06-08  2:40   ` Jason Wang

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