aboutsummaryrefslogtreecommitdiffstats
path: root/tools/xentrace/xentrace.c
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-26 17:05:10 +0000
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2007-02-26 17:05:10 +0000
commit9f60d763169aca08e416511c25b49a0f89627b26 (patch)
treea3e9738c23d1858e8200da01d2427e2bac61e619 /tools/xentrace/xentrace.c
parent7998832e812ab453e5373d8e63c0afa164fcddfe (diff)
downloadxen-9f60d763169aca08e416511c25b49a0f89627b26.tar.gz
xen-9f60d763169aca08e416511c25b49a0f89627b26.tar.bz2
xen-9f60d763169aca08e416511c25b49a0f89627b26.zip
Missing files from previous changeset.
Signed-off-by: Thomas Friebel <thomas.friebel@amd.com>
Diffstat (limited to 'tools/xentrace/xentrace.c')
-rw-r--r--tools/xentrace/xentrace.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xentrace/xentrace.c b/tools/xentrace/xentrace.c
index 64327a6836..d37d86d8b6 100644
--- a/tools/xentrace/xentrace.c
+++ b/tools/xentrace/xentrace.c
@@ -350,8 +350,8 @@ int parse_evtmask(char *arg, struct argp_state *state)
setup->evt_mask |= TRC_SCHED;
} else if(strcmp(arg, "dom0op") == 0){
setup->evt_mask |= TRC_DOM0OP;
- } else if(strcmp(arg, "vmx") == 0){
- setup->evt_mask |= TRC_VMX;
+ } else if(strcmp(arg, "hvm") == 0){
+ setup->evt_mask |= TRC_HVM;
} else if(strcmp(arg, "all") == 0){
setup->evt_mask |= TRC_ALL;
} else {