Deleted Added
full compact
hypercall.h (181638) hypercall.h (215818)
1/******************************************************************************
2 * hypercall.h
3 *
4 * Linux-specific hypervisor handling.
5 *
6 * Copyright (c) 2002-2004, K A Fraser
7 *
8 * This file may be distributed separately from the Linux kernel, or

--- 220 unchanged lines hidden (view full) ---

229
230static inline int
231HYPERVISOR_memory_op(
232 unsigned int cmd, void *arg)
233{
234 return _hypercall2(int, memory_op, cmd, arg);
235}
236
1/******************************************************************************
2 * hypercall.h
3 *
4 * Linux-specific hypervisor handling.
5 *
6 * Copyright (c) 2002-2004, K A Fraser
7 *
8 * This file may be distributed separately from the Linux kernel, or

--- 220 unchanged lines hidden (view full) ---

229
230static inline int
231HYPERVISOR_memory_op(
232 unsigned int cmd, void *arg)
233{
234 return _hypercall2(int, memory_op, cmd, arg);
235}
236
237int HYPERVISOR_multicall(multicall_entry_t *, int);
237static inline int
238static inline int
238HYPERVISOR_multicall(
239_HYPERVISOR_multicall(
239 void *call_list, int nr_calls)
240{
241 return _hypercall2(int, multicall, call_list, nr_calls);
242}
243
244static inline int
245HYPERVISOR_update_va_mapping(
246 unsigned long va, uint64_t new_val, unsigned long flags)

--- 159 unchanged lines hidden ---
240 void *call_list, int nr_calls)
241{
242 return _hypercall2(int, multicall, call_list, nr_calls);
243}
244
245static inline int
246HYPERVISOR_update_va_mapping(
247 unsigned long va, uint64_t new_val, unsigned long flags)

--- 159 unchanged lines hidden ---