Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-12-02 Thread Michael S. Tsirkin
BTW cover letter subject needs fixing. Maybe: drivers: net: timeout improvements ? On Tue, Nov 26, 2019 at 05:06:26PM -0300, Julio Faracco wrote: > This series add two important features. One of them changes the > .ndo_tx_timeout to include an extra parameter to identify the stuck > queue. Many

Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-27 Thread Michael S. Tsirkin
On Wed, Nov 27, 2019 at 10:59:56AM -0800, David Miller wrote: > From: "Michael S. Tsirkin" > Date: Wed, 27 Nov 2019 06:38:35 -0500 > > > On Tue, Nov 26, 2019 at 02:06:30PM -0800, David Miller wrote: > >> > >> net-next is closed > > > > Could you merge this early when net-next reopens though? >

Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-27 Thread David Miller
From: "Michael S. Tsirkin" Date: Wed, 27 Nov 2019 06:38:35 -0500 > On Tue, Nov 26, 2019 at 02:06:30PM -0800, David Miller wrote: >> >> net-next is closed > > Could you merge this early when net-next reopens though? > This way I don't need to keep adding drivers to update. It simply needs to

Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-27 Thread Michael S. Tsirkin
On Wed, Nov 27, 2019 at 06:38:39AM -0500, Michael S. Tsirkin wrote: > On Tue, Nov 26, 2019 at 02:06:30PM -0800, David Miller wrote: > > > > net-next is closed > > Could you merge this early when net-next reopens though? > This way I don't need to keep adding drivers to update. I just mean 1/2

Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-27 Thread Michael S. Tsirkin
On Tue, Nov 26, 2019 at 02:06:30PM -0800, David Miller wrote: > > net-next is closed Could you merge this early when net-next reopens though? This way I don't need to keep adding drivers to update. Thanks, -- MST ___ Virtualization mailing list

Re: [net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-26 Thread David Miller
net-next is closed ___ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization

[net-next V3 0/2] drivers: net: virtio_net: implement

2019-11-26 Thread Julio Faracco
This series add two important features. One of them changes the .ndo_tx_timeout to include an extra parameter to identify the stuck queue. Many drivers are using a nester loop to identify which queue is stooped/stucked. This is a redundant work since dev_watchdog is doing exactly the same thing.