Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
Macros | Functions | Variables
paravirt_patchlist.c File Reference
#include <linux/bug.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <asm/paravirt.h>

Go to the source code of this file.

Macros

#define DECLARE(name)
 
#define ASSIGN(name)
 
#define CASE(NAME, name)
 

Functions

 DECLARE (fsyscall)
 
 DECLARE (brl_fsys_bubble_down)
 
 DECLARE (vtop)
 
 DECLARE (mckinley_e9)
 
unsigned long __init paravirt_get_gate_patchlist (enum pv_gate_patchlist type)
 
void *__init paravirt_get_gate_section (void)
 

Variables

unsigned long __start_gate_section []
 
struct pv_patchdata pv_patchdata __initdata
 

Macro Definition Documentation

#define ASSIGN (   name)
Value:
.start_##name##_patchlist = \
(unsigned long)__ia64_native_start_gate_##name##_patchlist, \
.end_##name##_patchlist = \
(unsigned long)__ia64_native_end_gate_##name##_patchlist

Definition at line 39 of file paravirt_patchlist.c.

#define CASE (   NAME,
  name 
)
Value:
case PV_GATE_START_##NAME: \
return pv_patchdata.start_##name##_patchlist; \
case PV_GATE_END_##NAME: \
return pv_patchdata.end_##name##_patchlist; \
#define DECLARE (   name)
Value:
extern unsigned long \
__ia64_native_start_gate_##name##_patchlist[]; \
extern unsigned long \
__ia64_native_end_gate_##name##_patchlist[]

Definition at line 26 of file paravirt_patchlist.c.

Function Documentation

DECLARE ( fsyscall  )
DECLARE ( brl_fsys_bubble_down  )
DECLARE ( vtop  )
DECLARE ( mckinley_e9  )
unsigned long __init paravirt_get_gate_patchlist ( enum pv_gate_patchlist  type)

Definition at line 56 of file paravirt_patchlist.c.

void* __init paravirt_get_gate_section ( void  )

Definition at line 78 of file paravirt_patchlist.c.

Variable Documentation

Initial value:
= {
ASSIGN(fsyscall),
ASSIGN(brl_fsys_bubble_down),
.gate_section = (void*)__start_gate_section,
}

Definition at line 45 of file paravirt_patchlist.c.

unsigned long __start_gate_section[]