Searched refs:_vq (Results 1 – 3 of 3) sorted by relevance
45 #define BAD_RING(_vq, fmt, args...) \ argument47 dev_err(&(_vq)->vq.vdev->dev, \48 "%s:"fmt, (_vq)->vq.name, ##args); \52 #define START_USE(_vq) \ argument54 if ((_vq)->in_use) \56 (_vq)->vq.name, (_vq)->in_use); \57 (_vq)->in_use = __LINE__; \59 #define END_USE(_vq) \ argument60 do { BUG_ON(!(_vq)->in_use); (_vq)->in_use = 0; } while(0)62 #define BAD_RING(_vq, fmt, args...) \ argument[all …]
129 irqreturn_t vring_interrupt(int irq, void *_vq);
975 static int do_thread(void *_vq) in do_thread() argument977 struct virtqueue *vq = _vq; in do_thread()