OSDN Git Service

qemu-log: Rename cpu_str_to_log_mask to qemu_str_to_log_mask
authorPeter Maydell <peter.maydell@linaro.org>
Mon, 11 Feb 2013 16:41:22 +0000 (16:41 +0000)
committerBlue Swirl <blauwirbel@gmail.com>
Sat, 16 Feb 2013 10:44:27 +0000 (10:44 +0000)
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>
bsd-user/main.c
cpus.c
include/qemu/log.h
linux-user/main.c
monitor.c
qemu-log.c

index 26604b4..4b12e65 100644 (file)
@@ -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);
diff --git a/cpus.c b/cpus.c
index 0fdc48c..63cfb73 100644 (file)
--- a/cpus.c
+++ b/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);
index 59511a3..10792ce 100644 (file)
@@ -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*.
index 00b0125..862619b 100644 (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);
index 578a318..2a55d56 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -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;
index 786d335..10a8581 100644 (file)
@@ -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;