search for: 95a02f0e0e21

Displaying 3 results from an estimated 3 matches for "95a02f0e0e21".

2008 May 30
2
[PATCH 1/3] virtio: VIRTIO_F_NOTIFY_ON_EMPTY to force callback on empty
...driver has disabled them (again, it had no locking and hence was unreliable anyway). Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> --- drivers/virtio/virtio_ring.c | 7 ------- include/linux/virtio_config.h | 4 ++++ 2 files changed, 4 insertions(+), 7 deletions(-) diff -r 95a02f0e0e21 drivers/virtio/virtio_ring.c --- a/drivers/virtio/virtio_ring.c Tue May 27 12:45:17 2008 +1000 +++ b/drivers/virtio/virtio_ring.c Tue May 27 15:53:41 2008 +1000 @@ -253,13 +253,6 @@ irqreturn_t vring_interrupt(int irq, voi if (unlikely(vq->broken)) return IRQ_HANDLED; - /* Other side may...
2008 May 30
2
[PATCH 1/3] virtio: VIRTIO_F_NOTIFY_ON_EMPTY to force callback on empty
...driver has disabled them (again, it had no locking and hence was unreliable anyway). Signed-off-by: Rusty Russell <rusty at rustcorp.com.au> --- drivers/virtio/virtio_ring.c | 7 ------- include/linux/virtio_config.h | 4 ++++ 2 files changed, 4 insertions(+), 7 deletions(-) diff -r 95a02f0e0e21 drivers/virtio/virtio_ring.c --- a/drivers/virtio/virtio_ring.c Tue May 27 12:45:17 2008 +1000 +++ b/drivers/virtio/virtio_ring.c Tue May 27 15:53:41 2008 +1000 @@ -253,13 +253,6 @@ irqreturn_t vring_interrupt(int irq, voi if (unlikely(vq->broken)) return IRQ_HANDLED; - /* Other side may...
2008 Jun 08
2
[PATCH 1/4] virtio_net: Fix skb->csum_start computation
From: Mark McLoughlin <markmc at redhat.com> hdr->csum_start is the offset from the start of the ethernet header to the transport layer checksum field. skb->csum_start is the offset from skb->head. skb_partial_csum_set() assumes that skb->data points to the ethernet header - i.e. it computes skb->csum_start by adding the headroom to hdr->csum_start. Since