Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 40c172e5 authored by Michael S. Tsirkin's avatar Michael S. Tsirkin
Browse files

tools/virtio: move list macro stubs



Makes them more generally available.

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
parent c13f99b7
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -110,4 +110,10 @@ static inline void free_page(unsigned long addr)
	(void) (&_min1 == &_min2);		\
	_min1 < _min2 ? _min1 : _min2; })

/* TODO: empty stubs for now. Broken but enough for virtio_ring.c */
#define list_add_tail(a, b) do {} while (0)
#define list_del(a) do {} while (0)
#define list_for_each_entry(a, b, c) while (0)
/* end of stubs */

#endif /* KERNEL_H */
+0 −6
Original line number Diff line number Diff line
@@ -3,12 +3,6 @@
#include <linux/scatterlist.h>
#include <linux/kernel.h>

/* TODO: empty stubs for now. Broken but enough for virtio_ring.c */
#define list_add_tail(a, b) do {} while (0)
#define list_del(a) do {} while (0)
#define list_for_each_entry(a, b, c) while (0)
/* end of stubs */

struct virtio_device {
	void *dev;
	u64 features;