diff options
Diffstat (limited to 'src/i830_memory.c')
-rw-r--r-- | src/i830_memory.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/i830_memory.c b/src/i830_memory.c index cdb7c47d..85a78f56 100644 --- a/src/i830_memory.c +++ b/src/i830_memory.c @@ -709,14 +709,17 @@ i830_allocate_memory_bo(ScrnInfoPtr pScrn, const char *name, mem->offset = -1; mem->end = -1; mem->size = size; - if (flags & NEED_LIFETIME_FIXED) { + if (flags & NEED_LIFETIME_FIXED) + mem->lifetime_fixed_offset = TRUE; + + /* Bind it if we currently control the VT */ + if (pScrn->vtSema) { if (!i830_bind_memory(pScrn, mem)) { drmBOUnReference(pI830->drmSubFD, &mem->bo); xfree(mem->name); xfree(mem); return NULL; } - mem->lifetime_fixed_offset = TRUE; } /* Insert new allocation into the list */ |