aboutsummaryrefslogtreecommitdiffstats
path: root/xenolinux-2.4.22-sparse/include/asm-xeno/multicall.h
blob: f0ea5c3a6623324ed0bda45e7015e0b24a7ecdb4 (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
73
74
75
76
77
78
79
80
81
82
83
84
/******************************************************************************
 * multicall.h
 */

#ifndef __MULTICALL_H__
#define __MULTICALL_H__

#include <asm/hypervisor.h>

extern multicall_entry_t multicall_list[];
extern int nr_multicall_ents;

static inline void queue_multicall0(unsigned long op)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    nr_multicall_ents = i+1;
}

static inline void queue_multicall1(unsigned long op, unsigned long arg1)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    multicall_list[i].args[0] = arg1;
    nr_multicall_ents = i+1;
}

static inline void queue_multicall2(
    unsigned long op, unsigned long arg1, unsigned long arg2)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    multicall_list[i].args[0] = arg1;
    multicall_list[i].args[1] = arg2;
    nr_multicall_ents = i+1;
}

static inline void queue_multicall3(
    unsigned long op, unsigned long arg1, unsigned long arg2,
    unsigned long arg3)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    multicall_list[i].args[0] = arg1;
    multicall_list[i].args[1] = arg2;
    multicall_list[i].args[2] = arg3;
    nr_multicall_ents = i+1;
}

static inline void queue_multicall4(
    unsigned long op, unsigned long arg1, unsigned long arg2,
    unsigned long arg3, unsigned long arg4)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    multicall_list[i].args[0] = arg1;
    multicall_list[i].args[1] = arg2;
    multicall_list[i].args[2] = arg3;
    multicall_list[i].args[3] = arg4;
    nr_multicall_ents = i+1;
}

static inline void queue_multicall5(
    unsigned long op, unsigned long arg1, unsigned long arg2,
    unsigned long arg3, unsigned long arg4, unsigned long arg5)
{
    int i = nr_multicall_ents;
    multicall_list[i].op      = op;
    multicall_list[i].args[0] = arg1;
    multicall_list[i].args[1] = arg2;
    multicall_list[i].args[2] = arg3;
    multicall_list[i].args[3] = arg4;
    multicall_list[i].args[4] = arg5;
    nr_multicall_ents = i+1;
}

static inline void execute_multicall_list(void)
{
    if ( unlikely(nr_multicall_ents == 0) ) return;
    (void)HYPERVISOR_multicall(multicall_list, nr_multicall_ents);
    nr_multicall_ents = 0;
}

#endif /* __MULTICALL_H__ */