As we shrink an object, also see if we can prune the dma-resv of idle fences it is maintaining a reference to. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20201223122051.4624-2-chris@chris-wilson.co.uk
14 lines
226 B
C
14 lines
226 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2020 Intel Corporation
|
|
*/
|
|
|
|
#ifndef DMA_RESV_UTILS_H
|
|
#define DMA_RESV_UTILS_H
|
|
|
|
struct dma_resv;
|
|
|
|
void dma_resv_prune(struct dma_resv *resv);
|
|
|
|
#endif /* DMA_RESV_UTILS_H */
|