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

« back to all changes in this revision

Viewing changes to target-cris/mmu.h

  • Committer: Bazaar Package Importer
  • Author(s): Aurelien Jarno, Aurelien Jarno
  • Date: 2009-03-22 10:13:17 UTC
  • mfrom: (1.2.1 upstream) (6.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090322101317-iigjtnu5qil35dtb
Tags: 0.10.1-1
[ Aurelien Jarno ]
* New upstream stable release:
  - patches/80_stable-branch.patch: remove.
* debian/control: 
  - Remove depends on proll.
  - Move depends on device-tree-compiler to build-depends.
  - Bump Standards-Version to 3.8.1 (no changes).
* patches/82_qemu-img_decimal.patch: new patch from upstream to make
  qemu-img accept sizes with decimal values (closes: bug#501400).

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
struct cris_mmu_result_t
7
7
{
8
8
        uint32_t phy;
9
 
        uint32_t pfn;
10
 
        int g:1;
11
 
        int v:1;
12
 
        int k:1;
13
 
        int w:1;
14
 
        int e:1;
15
 
        int cause_op;
 
9
        int prot;
 
10
        int bf_vec;
16
11
};
17
12
 
 
13
void cris_mmu_init(CPUState *env);
 
14
void cris_mmu_flush_pid(CPUState *env, uint32_t pid);
18
15
int cris_mmu_translate(struct cris_mmu_result_t *res,
19
16
                       CPUState *env, uint32_t vaddr,
20
17
                       int rw, int mmu_idx);