[Intel-gfx] [PATCH 2/6] drm/i915: dma_buf_vunmap is presumed not to fail, don't let it

2014-04-07 Thread Rodrigo Vivi
From: Chris Wilson Since dma_buf_vunmap() procedes blithely on ignorant of whether the driver failed to actually unmap the backing storage for the dma-buf, we need to make a best-effort to do so. This involves not allowing ourselves to be susceptible to signals causing us to leak the storage. Th

Re: [Intel-gfx] [PATCH 2/6] drm/i915: dma_buf_vunmap is presumed not to fail, don't let it

2014-04-09 Thread Daniel Vetter
On Mon, Apr 07, 2014 at 05:01:47PM -0300, Rodrigo Vivi wrote: > From: Chris Wilson > > Since dma_buf_vunmap() procedes blithely on ignorant of whether the > driver failed to actually unmap the backing storage for the dma-buf, we > need to make a best-effort to do so. This involves not allowing >