Messages in this thread Patch in this message |  | | From | harsha <> | Subject | [PATCH] Staging:android:ion:ion_heap.c : Using WARN_ON() rather than BUG_ON() | Date | Fri, 25 Aug 2017 23:05:05 +0530 |
| |
--- drivers/staging/android/ion/ion_heap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/staging/android/ion/ion_heap.c b/drivers/staging/android/ion/ion_heap.c index 91faa7f..476e741 100644 --- a/drivers/staging/android/ion/ion_heap.c +++ b/drivers/staging/android/ion/ion_heap.c @@ -49,7 +49,7 @@ void *ion_heap_map_kernel(struct ion_heap *heap, int npages_this_entry = PAGE_ALIGN(sg->length) / PAGE_SIZE; struct page *page = sg_page(sg); - BUG_ON(i >= npages); + WARN_ON(i >= npages); for (j = 0; j < npages_this_entry; j++) *(tmp++) = page++; } -- 1.9.1
|  |