Signed-off-by: Hani Benhabiles <h...@linux.com> --- hmp-commands.hx | 1 + hmp.h | 1 + monitor.c | 24 ++++++++++++++++++++++++ 3 files changed, 26 insertions(+)
diff --git a/hmp-commands.hx b/hmp-commands.hx index a411d4f..813c0fb 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -690,6 +690,7 @@ ETEXI .params = "index", .help = "set the default CPU", .mhandler.cmd = hmp_cpu, + .command_completion = cpu_completion, }, STEXI diff --git a/hmp.h b/hmp.h index 6de5d1a..8701b16 100644 --- a/hmp.h +++ b/hmp.h @@ -99,5 +99,6 @@ void device_add_completion(ReadLineState *rs, int nb_args, const char *str); void device_del_completion(ReadLineState *rs, int nb_args, const char *str); void chardev_remove_completion(ReadLineState *rs, int nb_args, const char *str); void chardev_add_completion(ReadLineState *rs, int nb_args, const char *str); +void cpu_completion(ReadLineState *rs, int nb_args, const char *str); #endif diff --git a/monitor.c b/monitor.c index 27caa74..29d4f37 100644 --- a/monitor.c +++ b/monitor.c @@ -4429,6 +4429,30 @@ void object_del_completion(ReadLineState *rs, int nb_args, const char *str) qapi_free_ObjectPropertyInfoList(start); } +void cpu_completion(ReadLineState *rs, int nb_args, const char *str) +{ + CpuInfoList *cpu_list, *start; + size_t len; + + if (nb_args != 2) { + return; + } + len = strlen(str); + readline_set_completion_index(rs, len); + + start = cpu_list = qmp_query_cpus(NULL); + while (cpu_list) { + char name[16]; + snprintf(name, sizeof(name), "%" PRId64, cpu_list->value->CPU); + + if (!strncmp(str, name, len)) { + readline_add_completion(rs, name); + } + cpu_list = cpu_list->next; + } + qapi_free_CpuInfoList(start); +} + static void monitor_find_completion_by_table(Monitor *mon, const mon_cmd_t *cmd_table, char **args, -- 1.8.3.2