|
@@ -48,7 +48,7 @@ static atomic64_t dma_fence_context_counter = ATOMIC64_INIT(0);
|
|
|
*/
|
|
|
u64 dma_fence_context_alloc(unsigned num)
|
|
|
{
|
|
|
- BUG_ON(!num);
|
|
|
+ WARN_ON(!num);
|
|
|
return atomic64_add_return(num, &dma_fence_context_counter) - num;
|
|
|
}
|
|
|
EXPORT_SYMBOL(dma_fence_context_alloc);
|
|
@@ -177,7 +177,7 @@ void dma_fence_release(struct kref *kref)
|
|
|
|
|
|
trace_dma_fence_destroy(fence);
|
|
|
|
|
|
- BUG_ON(!list_empty(&fence->cb_list));
|
|
|
+ WARN_ON(!list_empty(&fence->cb_list));
|
|
|
|
|
|
if (fence->ops->release)
|
|
|
fence->ops->release(fence);
|