From: Michael S. Tsirkin Date: Tue, 20 Mar 2018 00:41:04 +0000 (+0200) Subject: ptr_ring: fix build X-Git-Tag: v4.19~1222^2~13 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c8f06a066816b17f3d1c07da9a5c4f387871c590;p=platform%2Fkernel%2Flinux-rpi.git ptr_ring: fix build Fixes after recent use of kvmalloc Signed-off-by: Michael S. Tsirkin --- diff --git a/tools/virtio/ringtest/ptr_ring.c b/tools/virtio/ringtest/ptr_ring.c index 477899c..2d566fb 100644 --- a/tools/virtio/ringtest/ptr_ring.c +++ b/tools/virtio/ringtest/ptr_ring.c @@ -17,6 +17,8 @@ #define likely(x) (__builtin_expect(!!(x), 1)) #define ALIGN(x, a) (((x) + (a) - 1) / (a) * (a)) #define SIZE_MAX (~(size_t)0) +#define KMALLOC_MAX_SIZE SIZE_MAX +#define BUG_ON(x) assert(x) typedef pthread_spinlock_t spinlock_t; @@ -57,6 +59,9 @@ static void kfree(void *p) free(p); } +#define kvmalloc_array kmalloc_array +#define kvfree kfree + static void spin_lock_init(spinlock_t *lock) { int r = pthread_spin_init(lock, 0);