aboutsummaryrefslogtreecommitdiffstats
path: root/tools/misc/xc_shadow.c
blob: f0f60c9c5c0dea1ae29d9d27f78ee6a28b856b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*-  Mode:C; c-basic-offset:4; tab-width:4 -*-
 ****************************************************************************
 * (C) 2005 - Rolf Neugebauer - Intel Research Cambridge
 ****************************************************************************
 *
 *        File: xc_shadow.c
 *      Author: Rolf Neugebauer (rolf.neugebauer@intel.com)
 *        Date: Mar 2005
 * 
 * Description: 
 */


#include <xenctrl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/mman.h>
#include <errno.h>
#include <string.h>

void usage(void)
{
    printf("xc_shadow: -[0|1|2]\n");
    printf("    set shadow mode\n");
    exit(0);
}

int main(int argc, char *argv[])
{
    int xc_handle;
    int mode = 0;

    if ( argc > 1 )
    {
        char *p = argv[1];
        if (*p++ == '-') {
            if (*p == '1')
                mode = 1;
            else if (*p == '2')
                mode = 2;
            else if (*p == '0')
                mode = 0;
            else
                usage();
        } else
            usage();
    } 
    else
        usage();

    if ( (xc_handle = xc_interface_open()) == -1 )
    {
        fprintf(stderr, "Error opening xc interface: %d (%s)\n",
                errno, strerror(errno));
        return 1;
    }

    if ( xc_shadow_control(xc_handle,
                           0,
                           mode, 
                           NULL,
                           0,
                           NULL,
                           0,
                           NULL) < 0 )
    {    
        fprintf(stderr, "Error reseting performance counters: %d (%s)\n",
                errno, strerror(errno));
        return 1;
    }
    return 0;
}