X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fdevices%2Fparagraph.c;h=36e44d860f4a57f822e8a9b3e5f5db5aaef64009;hb=d3d6d09894dba66f4e2361bb2f903139a2d83684;hp=32f07f1de502f050816adca57bf119d3f8750b6c;hpb=4454a172129d12e97793c9c353339b85d3335af4;p=palacios.git diff --git a/palacios/src/devices/paragraph.c b/palacios/src/devices/paragraph.c index 32f07f1..36e44d8 100644 --- a/palacios/src/devices/paragraph.c +++ b/palacios/src/devices/paragraph.c @@ -452,7 +452,7 @@ static int paragraph_init(struct v3_vm_info * vm, v3_cfg_tree_t * cfg) if (state->mode==MEM || state->mode==GCONS_MEM) { state->mem_size=MAXX*MAXY*MAXBPP; PrintDebug(vm, VCORE_NONE, "paragraph: allocating %llu bytes for local framebuffer\n", state->mem_size); - state->mem_paddr = V3_AllocShadowSafePages(vm,ceil_pages(state->mem_size)); + state->mem_paddr = V3_AllocPages(ceil_pages(state->mem_size)); if (!state->mem_paddr) { PrintError(state->vm, VCORE_NONE, "paragraph: Cannot allocate memory for framebuffer\n"); paragraph_free_internal(state);