mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 16:53:55 -06:00
qemu-log: Rename cpu_str_to_log_mask to qemu_str_to_log_mask
Rename cpu_str_to_log_mask() to qemu_str_to_log_mask(), since the qemu_log functionality is no longer restricted to TCG CPU debug logging. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Andreas Färber <afaerber@suse.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
59a6fa6e67
commit
4fde1eba0f
6 changed files with 6 additions and 6 deletions
|
@ -975,7 +975,7 @@ static void do_log(Monitor *mon, const QDict *qdict)
|
|||
if (!strcmp(items, "none")) {
|
||||
mask = 0;
|
||||
} else {
|
||||
mask = cpu_str_to_log_mask(items);
|
||||
mask = qemu_str_to_log_mask(items);
|
||||
if (!mask) {
|
||||
help_cmd(mon, "log");
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue