Home
last modified time | relevance | path

Searched refs:_vq (Results 1 – 3 of 3) sorted by relevance

/linux-2.6.39/drivers/virtio/
Dvirtio_ring.c45 #define BAD_RING(_vq, fmt, args...) \ argument
47 dev_err(&(_vq)->vq.vdev->dev, \
48 "%s:"fmt, (_vq)->vq.name, ##args); \
52 #define START_USE(_vq) \ argument
54 if ((_vq)->in_use) \
56 (_vq)->vq.name, (_vq)->in_use); \
57 (_vq)->in_use = __LINE__; \
59 #define END_USE(_vq) \ argument
60 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0)
62 #define BAD_RING(_vq, fmt, args...) \ argument
[all …]
/linux-2.6.39/include/linux/
Dvirtio_ring.h129 irqreturn_t vring_interrupt(int irq, void *_vq);
/linux-2.6.39/Documentation/lguest/
Dlguest.c975 static int do_thread(void *_vq) in do_thread() argument
977 struct virtqueue *vq = _vq; in do_thread()