Commit 9f726323 authored by Jes Sorensen's avatar Jes Sorensen Committed by Avi Kivity

KVM: ia64: 'struct fdesc' build fix

Commit 4611a771 ("[IA64] fix compile failure with non modular builds")
introduced struct fdesc into asm/elf.h, which duplicates KVM's definition.
Remove the latter to avoid the build error.
Signed-off-by: default avatarJes Sorensen <jes@sgi.com>
Acked-by: default avatarTony Luck <tony.luck@intel.com>
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent 9824b8f1
...@@ -38,6 +38,7 @@ ...@@ -38,6 +38,7 @@
#include <asm/cacheflush.h> #include <asm/cacheflush.h>
#include <asm/div64.h> #include <asm/div64.h>
#include <asm/tlb.h> #include <asm/tlb.h>
#include <asm/elf.h>
#include "misc.h" #include "misc.h"
#include "vti.h" #include "vti.h"
...@@ -61,12 +62,6 @@ struct kvm_stats_debugfs_item debugfs_entries[] = { ...@@ -61,12 +62,6 @@ struct kvm_stats_debugfs_item debugfs_entries[] = {
{ NULL } { NULL }
}; };
struct fdesc{
unsigned long ip;
unsigned long gp;
};
static void kvm_flush_icache(unsigned long start, unsigned long len) static void kvm_flush_icache(unsigned long start, unsigned long len)
{ {
int l; int l;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment