~jderose/ubuntu/raring/qemu/vde-again

« back to all changes in this revision

Viewing changes to softmmu_exec.h

  • Committer: Bazaar Package Importer
  • Author(s): Riku Voipio, Josh Triplett, Riku Voipio
  • Date: 2009-07-29 13:28:05 UTC
  • mfrom: (1.4.1 upstream)
  • mto: (12.1.1 sid) (10.1.13 sid)
  • mto: This revision was merged to the branch mainline in revision 13.
  • Revision ID: james.westby@ubuntu.com-20090729132805-cau7rfexh7dawyb8
Tags: 0.10.50+git20090729-1
[ Josh Triplett ]
* Remove myself from Uploaders.

[ Riku Voipio ]
* new upstream RC version
* nuke all linux-user patches (applied upstream)
  06_exit_segfault
  12_signal_powerpc_support
  21_net_soopts
  30_syscall_ipc
  32_syscall_sysctl
  35_syscall_sockaddr
  48_signal_terminate
  55_unmux_socketcall
* nuke all other applied-upstream patches
  01_nostrip (better version upstream)
  07_i386_exec_name (can be reintroduced in debian/rules)
  50_linuxbios_isa_bios_ram (shouldn't be needed anymore)
  51_linuxbios_piix_ram_size (applied)
  56_dhcp (crap)
  60_ppc_ld (reintroduce if needed)
  64_ppc_asm_constraints (ditto)
  66_tls_ld.patch (ditto)
  81_compile_dtb.patch (applied upstream)
  82_qemu-img_decimal (ditto)
* move to git
* simplify build rules
* Correct my email address

Show diffs side-by-side

added added

removed removed

Lines of Context:
60
60
#include "softmmu_header.h"
61
61
#undef ACCESS_TYPE
62
62
#undef MEMSUFFIX
 
63
#endif /* (NB_MMU_MODES >= 3) */
63
64
 
64
65
#if (NB_MMU_MODES >= 4)
65
66
 
78
79
#include "softmmu_header.h"
79
80
#undef ACCESS_TYPE
80
81
#undef MEMSUFFIX
81
 
 
82
 
#if (NB_MMU_MODES > 4)
83
 
#error "NB_MMU_MODES > 4 is not supported for now"
84
 
#endif /* (NB_MMU_MODES > 4) */
85
 
#endif /* (NB_MMU_MODES == 4) */
86
 
#endif /* (NB_MMU_MODES >= 3) */
 
82
#endif /* (NB_MMU_MODES >= 4) */
 
83
 
 
84
#if (NB_MMU_MODES >= 5)
 
85
 
 
86
#define ACCESS_TYPE 4
 
87
#define MEMSUFFIX MMU_MODE4_SUFFIX
 
88
#define DATA_SIZE 1
 
89
#include "softmmu_header.h"
 
90
 
 
91
#define DATA_SIZE 2
 
92
#include "softmmu_header.h"
 
93
 
 
94
#define DATA_SIZE 4
 
95
#include "softmmu_header.h"
 
96
 
 
97
#define DATA_SIZE 8
 
98
#include "softmmu_header.h"
 
99
#undef ACCESS_TYPE
 
100
#undef MEMSUFFIX
 
101
#endif /* (NB_MMU_MODES >= 5) */
 
102
 
 
103
#if (NB_MMU_MODES > 5)
 
104
#error "NB_MMU_MODES > 5 is not supported for now"
 
105
#endif /* (NB_MMU_MODES > 5) */
87
106
 
88
107
/* these access are slower, they must be as rare as possible */
89
108
#define ACCESS_TYPE (NB_MMU_MODES)