Re: [Qemu-devel] [PATCH v3 01/14] monitor: Use BB list for BB name completion

2016-02-17 Thread Max Reitz
On 17.02.2016 11:09, Kevin Wolf wrote: > Am 16.02.2016 um 19:08 hat Max Reitz geschrieben: >> Signed-off-by: Max Reitz > > In the long run, I guess we want to have to separate types, one of which > accepts only BlockBackend names and the other one BB and BDS names. Well, for the second type we s

Re: [Qemu-devel] [PATCH v3 01/14] monitor: Use BB list for BB name completion

2016-02-17 Thread Kevin Wolf
Am 16.02.2016 um 19:08 hat Max Reitz geschrieben: > Signed-off-by: Max Reitz In the long run, I guess we want to have to separate types, one of which accepts only BlockBackend names and the other one BB and BDS names. Though I think that most HMP commands currently require a BB, so this patch is

[Qemu-devel] [PATCH v3 01/14] monitor: Use BB list for BB name completion

2016-02-16 Thread Max Reitz
Signed-off-by: Max Reitz --- monitor.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/monitor.c b/monitor.c index 73eac17..7620e20 100644 --- a/monitor.c +++ b/monitor.c @@ -42,6 +42,7 @@ #include "ui/console.h" #include "ui/input.h" #include "sysemu/blockdev.h" +#i