| Submitter | Paolo Bonzini |
|---|---|
| Date | Aug. 12, 2011, 11:18 a.m. |
| Message ID | <1313147894-12524-1-git-send-email-pbonzini@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/109827/ |
| State | New |
| Headers | show |
Comments
On Fri, Aug 12, 2011 at 01:18:14PM +0200, Paolo Bonzini wrote: > Spotted while reviewing the migration thread patches. > > Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> > --- > cpu-all.h | 2 +- > exec.c | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) Thanks, applied to the trivial patches tree: http://repo.or.cz/w/qemu/stefanha.git/shortlog/refs/heads/trivial-patches Stefan
Patch
diff --git a/cpu-all.h b/cpu-all.h index fa0205c..f5c82cd 100644 --- a/cpu-all.h +++ b/cpu-all.h @@ -488,7 +488,7 @@ typedef struct RAMBlock { typedef struct RAMList { uint8_t *phys_dirty; - QLIST_HEAD(ram, RAMBlock) blocks; + QLIST_HEAD(, RAMBlock) blocks; } RAMList; extern RAMList ram_list; diff --git a/exec.c b/exec.c index 476b507..253f42c 100644 --- a/exec.c +++ b/exec.c @@ -110,7 +110,7 @@ static uint8_t *code_gen_ptr; int phys_ram_fd; static int in_migration; -RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list) }; +RAMList ram_list = { .blocks = QLIST_HEAD_INITIALIZER(ram_list.blocks) }; static MemoryRegion *system_memory;
Spotted while reviewing the migration thread patches. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> --- cpu-all.h | 2 +- exec.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)