search for: tx_

Displaying 6 results from an estimated 6 matches for "tx_".

Did you mean: tx
2008 Apr 24
0
[PATCH 2/6] virtio: fix tx_ stats in virtio_net
An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://lists.linux-foundation.org/pipermail/virtualization/attachments/20080423/059e080b/attachment.txt
2008 Apr 24
0
[PATCH 2/6] virtio: fix tx_ stats in virtio_net
An embedded and charset-unspecified text was scrubbed... Name: not available Url: http://lists.linux-foundation.org/pipermail/virtualization/attachments/20080423/059e080b/attachment.txt
2008 May 02
0
[PULL] virtio & lguest changes for 2.6.26
...er (1): virtio: export more headers to userspace Harvey Harrison (1): virtio: fix sparse return void-valued expression warnings Marcelo Tosatti (1): virtio-blk: fix remove oops Rusty Russell (11): virtio: ignore corrupted virtqueues rather than spinning. virtio: fix tx_ stats in virtio_net virtio: de-structify virtio_block status byte virtio: fix scatterlist sizing in net driver. virtio: wean net driver off NETDEV_TX_BUSY virtio: finer-grained features for virtio_net virtio: change config to guest endian. virtio: explicit advert...
2006 May 02
1
Sharing function between helper and controller
Hi, I have a utility function repeated in both my helper and my controller. Not DRY. I have this repetition because other functions in the helper and in the controller both use the utility function. Where do I put this function so that both the helper and controller can access the function? Mayber there is a different solution? Thanks, Peter
2008 May 02
0
[PULL] virtio & lguest changes for 2.6.26
...er (1): virtio: export more headers to userspace Harvey Harrison (1): virtio: fix sparse return void-valued expression warnings Marcelo Tosatti (1): virtio-blk: fix remove oops Rusty Russell (11): virtio: ignore corrupted virtqueues rather than spinning. virtio: fix tx_ stats in virtio_net virtio: de-structify virtio_block status byte virtio: fix scatterlist sizing in net driver. virtio: wean net driver off NETDEV_TX_BUSY virtio: finer-grained features for virtio_net virtio: change config to guest endian. virtio: explicit advert...
2013 May 21
1
[PATCH net-next V2 2/2] xen-netfront: split event channels support for Xen frontend driver
...) diff --git a/drivers/net/xen-netfront.c b/drivers/net/xen-netfront.c index 5770e3b..1fb2bfb4 100644 --- a/drivers/net/xen-netfront.c +++ b/drivers/net/xen-netfront.c @@ -85,7 +85,15 @@ struct netfront_info { struct napi_struct napi; - unsigned int evtchn; + /* Split event channels support, tx_* == rx_* when using + * single event channel. + */ + unsigned int tx_evtchn, rx_evtchn; + unsigned int tx_irq, rx_irq; + /* Only used when split event channels support is enabled */ + char tx_irq_name[IFNAMSIZ+4]; /* DEVNAME-tx */ + char rx_irq_name[IFNAMSIZ+4]; /* DEVNAME-rx */ + struct xenbus...