All of lore.kernel.org
 help / color / mirror / Atom feed
From: Hans N <agenthh@gmail.com>
To: qemu-trivial@nongnu.org
Subject: [Qemu-trivial] [PATCH] Fix debug log option parsing in user-mode emulation
Date: Mon, 27 Jun 2011 23:11:54 -0700	[thread overview]
Message-ID: <4E0970AA.4060501@gmail.com> (raw)

Fix cpu_str_to_log_mask() to actually use log_mask

Signed-off-by: Hans Nielsen <agenthh@gmail.com>
---
  bsd-user/main.c    |    2 +-
  darwin-user/main.c |    2 +-
  linux-user/main.c  |    2 +-
  3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bsd-user/main.c b/bsd-user/main.c
index 5f790b2..6018a41 100644
--- a/bsd-user/main.c
+++ b/bsd-user/main.c
@@ -866,7 +866,7 @@ int main(int argc, char **argv)
          int mask;
          const CPULogItem *item;

-        mask = cpu_str_to_log_mask(r);
+        mask = cpu_str_to_log_mask(log_mask);
          if (!mask) {
              printf("Log items (comma separated):\n");
              for (item = cpu_log_items; item->mask != 0; item++) {
diff --git a/darwin-user/main.c b/darwin-user/main.c
index a6dc859..35196a1 100644
--- a/darwin-user/main.c
+++ b/darwin-user/main.c
@@ -819,7 +819,7 @@ int main(int argc, char **argv)
          int mask;
          CPULogItem *item;

-        mask = cpu_str_to_log_mask(r);
+        mask = cpu_str_to_log_mask(log_mask);
          if (!mask) {
              printf("Log items (comma separated):\n");
              for (item = cpu_log_items; item->mask != 0; item++) {
diff --git a/linux-user/main.c b/linux-user/main.c
index db5577b..289054b 100644
--- a/linux-user/main.c
+++ b/linux-user/main.c
@@ -3030,7 +3030,7 @@ int main(int argc, char **argv, char **envp)
          int mask;
          const CPULogItem *item;

-        mask = cpu_str_to_log_mask(r);
+        mask = cpu_str_to_log_mask(log_mask);
          if (!mask) {
              printf("Log items (comma separated):\n");
              for (item = cpu_log_items; item->mask != 0; item++) {
--
1.7.5.4


             reply	other threads:[~2011-06-28  6:12 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-28  6:11 Hans N [this message]
2011-06-28 10:33 ` [Qemu-trivial] [PATCH] Fix debug log option parsing in user-mode emulation Stefan Hajnoczi
2011-06-29  8:14   ` Stefan Hajnoczi

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E0970AA.4060501@gmail.com \
    --to=agenthh@gmail.com \
    --cc=qemu-trivial@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.