~ubuntu-branches/ubuntu/hardy/kvm/hardy-backports

« back to all changes in this revision

Viewing changes to qemu/qemu-kvm.h

  • Committer: Bazaar Package Importer
  • Author(s): Soren Hansen
  • Date: 2008-01-03 10:39:25 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20080103103925-8480u7sq2646hvbh
Tags: 1:59+dfsg-0ubuntu1
* New upstream release
* Build with alsa support (cherry pick from 57+dfsg-2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
extern int kvm_allowed;
44
44
extern int kvm_irqchip;
45
45
 
 
46
void kvm_tpr_opt_setup(CPUState *env);
 
47
void kvm_tpr_access_report(CPUState *env, uint64_t rip, int is_write);
 
48
 
46
49
#define ALIGN(x, y)  (((x)+(y)-1) & ~((y)-1))
47
50
#define BITMAP_SIZE(m) (ALIGN(((m)>>TARGET_PAGE_BITS), HOST_LONG_BITS) / 8)
 
51
 
 
52
 
48
53
#endif