Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 257970
b: refs/heads/master
c: 9630421
h: refs/heads/master
v: v3
  • Loading branch information
Avi Kivity committed Jul 12, 2011
1 parent 022f8b1 commit fa155e2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5e520e62787afd8fc28626fd8d4f77491135119d
refs/heads/master: 96304217a783a65c0923a26f54141cfe7a2a71b5
8 changes: 4 additions & 4 deletions trunk/arch/x86/kvm/vmx.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ static inline void ept_sync_individual_addr(u64 eptp, gpa_t gpa)
}
}

static unsigned long vmcs_readl(unsigned long field)
static __always_inline unsigned long vmcs_readl(unsigned long field)
{
unsigned long value;

Expand All @@ -596,17 +596,17 @@ static unsigned long vmcs_readl(unsigned long field)
return value;
}

static u16 vmcs_read16(unsigned long field)
static __always_inline u16 vmcs_read16(unsigned long field)
{
return vmcs_readl(field);
}

static u32 vmcs_read32(unsigned long field)
static __always_inline u32 vmcs_read32(unsigned long field)
{
return vmcs_readl(field);
}

static u64 vmcs_read64(unsigned long field)
static __always_inline u64 vmcs_read64(unsigned long field)
{
#ifdef CONFIG_X86_64
return vmcs_readl(field);
Expand Down

0 comments on commit fa155e2

Please sign in to comment.