mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATH 1/2] kvm userspace: Add handler_8/9/10 support to monitor
@ 2009-04-08  1:59 Huang Ying
  0 siblings, 0 replies; only message in thread
From: Huang Ying @ 2009-04-08  1:59 UTC (permalink / raw)
  To: avi; +Cc: kvm, linux-kernel, Andi Kleen

[-- Attachment #1: Type: text/plain, Size: 1927 bytes --]

This is needed by MCE simulation.

Signed-off-by: Huang Ying <ying.huang@intel.com>

---
 qemu/monitor.c |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

--- a/qemu/monitor.c
+++ b/qemu/monitor.c
@@ -2513,6 +2513,15 @@ static void monitor_handle_command(Monit
                       void *arg3, void *arg4, void *arg5);
     void (*handler_7)(Monitor *mon, void *arg0, void *arg1, void *arg2,
                       void *arg3, void *arg4, void *arg5, void *arg6);
+    void (*handler_8)(Monitor *mon, void *arg0, void *arg1, void *arg2,
+		      void *arg3, void *arg4, void *arg5, void *arg6,
+		      void *arg7);
+    void (*handler_9)(Monitor *mon, void *arg0, void *arg1, void *arg2,
+		      void *arg3, void *arg4, void *arg5, void *arg6,
+		      void *arg7, void *arg8);
+    void (*handler_10)(Monitor *mon, void *arg0, void *arg1, void *arg2,
+		       void *arg3, void *arg4, void *arg5, void *arg6,
+		       void *arg7, void *arg8, void *arg9);
 
 #ifdef DEBUG
     monitor_printf(mon, "command='%s'\n", cmdline);
@@ -2810,6 +2819,21 @@ static void monitor_handle_command(Monit
         handler_7(mon, args[0], args[1], args[2], args[3], args[4], args[5],
                   args[6]);
         break;
+    case 8:
+        handler_8 = cmd->handler;
+        handler_8(mon, args[0], args[1], args[2], args[3], args[4], args[5],
+		  args[6], args[7]);
+        break;
+    case 9:
+        handler_9 = cmd->handler;
+        handler_9(mon, args[0], args[1], args[2], args[3], args[4], args[5],
+		  args[6], args[7], args[8]);
+        break;
+    case 10:
+        handler_10 = cmd->handler;
+        handler_10(mon, args[0], args[1], args[2], args[3], args[4], args[5],
+		   args[6], args[7], args[8], args[9]);
+        break;
     default:
         monitor_printf(mon, "unsupported number of arguments: %d\n", nb_args);
         goto fail;


[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2009-04-08  1:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-08  1:59 [PATH 1/2] kvm userspace: Add handler_8/9/10 support to monitor Huang Ying

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®