From: Robert Foss <robert.foss@collabora.com>
To: freddy@asix.com.tw, Dean_Jenkins@mentor.com,
Mark_Craske@mentor.com, davem@davemloft.net, ivecera@redhat.com,
john.stultz@linaro.org, vpalatin@chromium.org,
stephen@networkplumber.org, grundler@chromium.org,
changchias@gmail.com, allan@asix.com.tw, andrew@lunn.ch,
tremyfr@gmail.com, colin.king@canonical.com,
linux-usb@vger.kernel.org, netdev@vger.kernel.org,
linux-kernel@vger.kernel.org, vpalatin@google.com
Subject: Re: [PATCH v3 0/5] net/usb: asix driver improvements
Date: Wed, 31 Aug 2016 13:28:34 -0400 [thread overview]
Message-ID: <b1afa44f-7c41-c9bc-bb0f-9ccced25a0ef@collabora.com> (raw)
In-Reply-To: <cover.c702ef6af13be7c1282a2f2d3189281fdc327abe.1472155176.git-series.robert.foss@collabora.com>
Additional testing has been done the hardware that is available to me.
I'm not seeing any dmesg warnings/errors that are new to this series:
AX88772A
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress
- Pass network_EthernetStressPlug + iperf3 UDP stress
AX88772B
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress
- Pass network_EthernetStressPlug + iperf3 UDP stress
Cisco AX88772 A(?)
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress
- Pass network_EthernetStressPlug + iperf3 UDP stress
Cisco AX88772 B(?)
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress
- Pass network_EthernetStressPlug + iperf3 UDP stress
AX88178
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress
- Pass network_EthernetStressPlug + iperf3 UDP stress
AX88179
- Pass network_EthernetStressPlug
- Pass phy up/down + iperf3 UDP stress?
-- [ 8794.555902] ax88179_178a 1-1.3:1.0 eth1: kevent 4 may have been
dropped
- Pass network_EthernetStressPlug + iperf3 UDP stresss
I also saw some sporadic header checksum errors.
But those too are seen on upstream/master.
asix_rx_fixup() Bad Header Length 0x98a993c8, offset 4
Test details:
network_EthernetStressPlug:
http://memcpy.io/ethernet-device-stress-testing.html
phy up/down:
for i in
{1..10}
do
sudo ifdown eth1
if sudo ifup eth1; then
echo "Command success"
else
echo "Command failed"
fi
done
iperf3 UDP:
sudo iperf3 -c 192.168.0.28 -u -b 100M -t 0
On 2016-08-29 09:32 AM, robert.foss@collabora.com wrote:
> From: Robert Foss <robert.foss@collabora.com>
>
> This is a resubmission of v3, since the netdev
> mailinlist was not sent the previous submission.
>
> This series improves power management of the asix driver.
>
> - Suspend/resume support is improved to save needed registers.
> - Device disconnection is improved.
> - Fixes AX88772x resume failures
> - Implementes IEEE 802.3 spec section "22.2.4.1.1 Reset" correctly
> - Fixes AX_CMD_WRITE_MEDIUM_MODE being set incorrectly
>
> Changes since v1:
> - Added proper metadata tags to series.
> - Added two more patches to series.
>
> Changes since v2:
> - Added coverletter
> - Tested patches on AX88772A/AX88772B/AX88178/AX88179 hardware
>
> Allan Chou (1):
> net: asix: Fix AX88772x resume failures
>
> Freddy Xin (1):
> net: asix: Add in_pm parameter
>
> Grant Grundler (2):
> net: asix: see 802.3 spec for phy reset
> net: asix: autoneg will set WRITE_MEDIUM reg
>
> Vincent Palatin (1):
> net: asix: Avoid looping when the device is disconnected
>
> drivers/net/usb/asix.h | 40 ++-
> drivers/net/usb/asix_common.c | 212 ++++++++++++----
> drivers/net/usb/asix_devices.c | 450 +++++++++++++++++++++++++++-------
> drivers/net/usb/ax88172a.c | 29 +-
> 4 files changed, 575 insertions(+), 156 deletions(-)
>
next prev parent reply other threads:[~2016-08-31 17:28 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-25 20:06 robert.foss
2016-08-25 20:06 ` [PATCH v3 1/5] net: asix: Add in_pm parameter robert.foss
2016-08-25 20:06 ` [PATCH v3 2/5] net: asix: Avoid looping when the device is disconnected robert.foss
2016-08-25 20:06 ` [PATCH v3 3/5] net: asix: Fix AX88772x resume failures robert.foss
2016-11-10 12:01 ` Jon Hunter
2016-11-14 8:50 ` ASIX_Allan [Home]
2016-11-14 9:34 ` Jon Hunter
2016-11-14 9:45 ` ASIX_Allan [Office]
2016-11-18 15:09 ` Jon Hunter
2016-11-22 15:34 ` Jon Hunter
2016-11-29 8:54 ` ASIX_Allan [Office]
2016-11-29 10:51 ` Jon Hunter
2016-08-25 20:06 ` [PATCH v3 4/5] net: asix: see 802.3 spec for phy reset robert.foss
2016-08-25 20:06 ` [PATCH v3 5/5] net: asix: autoneg will set WRITE_MEDIUM reg robert.foss
2016-09-01 16:43 ` Eric Dumazet
2016-09-01 16:47 ` Robert Foss
2016-09-01 17:02 ` Eric Dumazet
2016-09-06 16:41 ` Grant Grundler
2016-09-06 21:48 ` Robert Foss
2016-08-25 20:06 ` [PATCH v3 1/5] net: asix: Add in_pm parameter robert.foss
2016-08-25 20:06 ` [PATCH v3 2/5] net: asix: Avoid looping when the device is disconnected robert.foss
2016-08-25 20:06 ` [PATCH v3 3/5] net: asix: Fix AX88772x resume failures robert.foss
2016-08-25 20:06 ` [PATCH v3 4/5] net: asix: see 802.3 spec for phy reset robert.foss
2016-08-25 20:06 ` [PATCH v3 5/5] net: asix: autoneg will set WRITE_MEDIUM reg robert.foss
2016-08-27 4:24 ` [PATCH v3 0/5] net/usb: asix driver improvements David Miller
2016-08-29 13:32 ` [PATCH v3 1/5] net: asix: Add in_pm parameter robert.foss
2016-08-29 13:32 ` [PATCH v3 2/5] net: asix: Avoid looping when the device is disconnected robert.foss
2016-08-29 13:32 ` [PATCH v3 3/5] net: asix: Fix AX88772x resume failures robert.foss
2016-08-29 13:32 ` [PATCH v3 4/5] net: asix: see 802.3 spec for phy reset robert.foss
2016-08-29 13:32 ` [PATCH v3 5/5] net: asix: autoneg will set WRITE_MEDIUM reg robert.foss
2016-08-31 17:28 ` Robert Foss [this message]
2016-09-01 4:07 ` [PATCH v3 0/5] net/usb: asix driver improvements David Miller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=b1afa44f-7c41-c9bc-bb0f-9ccced25a0ef@collabora.com \
--to=robert.foss@collabora.com \
--cc=Dean_Jenkins@mentor.com \
--cc=Mark_Craske@mentor.com \
--cc=allan@asix.com.tw \
--cc=andrew@lunn.ch \
--cc=changchias@gmail.com \
--cc=colin.king@canonical.com \
--cc=davem@davemloft.net \
--cc=freddy@asix.com.tw \
--cc=grundler@chromium.org \
--cc=ivecera@redhat.com \
--cc=john.stultz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=netdev@vger.kernel.org \
--cc=stephen@networkplumber.org \
--cc=tremyfr@gmail.com \
--cc=vpalatin@chromium.org \
--cc=vpalatin@google.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®