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
@ -865,7 +865,7 @@ int main(int argc, char **argv)
|
||||
if (log_mask) {
|
||||
int mask;
|
||||
|
||||
mask = cpu_str_to_log_mask(log_mask);
|
||||
mask = qemu_str_to_log_mask(log_mask);
|
||||
if (!mask) {
|
||||
qemu_print_log_usage(stdout);
|
||||
exit(1);
|
||||
|
2
cpus.c
2
cpus.c
@ -1179,7 +1179,7 @@ void set_cpu_log(const char *optarg)
|
||||
{
|
||||
int mask;
|
||||
|
||||
mask = cpu_str_to_log_mask(optarg);
|
||||
mask = qemu_str_to_log_mask(optarg);
|
||||
if (!mask) {
|
||||
qemu_print_log_usage(stdout);
|
||||
exit(1);
|
||||
|
@ -155,7 +155,7 @@ static inline void cpu_set_log(int log_flags)
|
||||
}
|
||||
|
||||
void qemu_set_log_filename(const char *filename);
|
||||
int cpu_str_to_log_mask(const char *str);
|
||||
int qemu_str_to_log_mask(const char *str);
|
||||
|
||||
/* Print a usage message listing all the valid logging categories
|
||||
* to the specified FILE*.
|
||||
|
@ -3099,7 +3099,7 @@ static void handle_arg_log(const char *arg)
|
||||
{
|
||||
int mask;
|
||||
|
||||
mask = cpu_str_to_log_mask(arg);
|
||||
mask = qemu_str_to_log_mask(arg);
|
||||
if (!mask) {
|
||||
qemu_print_log_usage(stdout);
|
||||
exit(1);
|
||||
|
@ -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;
|
||||
|
@ -136,7 +136,7 @@ static int cmp1(const char *s1, int n, const char *s2)
|
||||
}
|
||||
|
||||
/* takes a comma separated list of log masks. Return 0 if error. */
|
||||
int cpu_str_to_log_mask(const char *str)
|
||||
int qemu_str_to_log_mask(const char *str)
|
||||
{
|
||||
const CPULogItem *item;
|
||||
int mask;
|
||||
|
Loading…
Reference in New Issue
Block a user