[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <d3805bb376de6d908fc051d274ca6607ebda4e27.camel@redhat.com>
Date: Tue, 05 Apr 2022 11:44:50 +0200
From: Paolo Abeni <pabeni@...hat.com>
To: David Kahurani <k.kahurani@...il.com>, netdev@...r.kernel.org
Cc: syzbot+d3dbdf31fbe9d8f5f311@...kaller.appspotmail.com,
davem@...emloft.net, jgg@...pe.ca, kuba@...nel.org,
linux-kernel@...r.kernel.org, linux-usb@...r.kernel.org,
phil@...lpotter.co.uk, syzkaller-bugs@...glegroups.com,
arnd@...db.de, paskripkin@...il.com
Subject: Re: [PATCH] net: ax88179: add proper error handling of usb read
errors
On Mon, 2022-04-04 at 18:10 +0300, David Kahurani wrote:
> @@ -354,8 +369,15 @@ static int ax88179_mdio_read(struct net_device *netdev, int phy_id, int loc)
> {
> struct usbnet *dev = netdev_priv(netdev);
> u16 res;
> + int ret;
> +
> + ret = ax88179_read_cmd(dev, AX_ACCESS_PHY, phy_id, (__u16)loc, 2, &res);
> +
> + if (ret < 0){
For the records: another recurring indentation issue is the lack of a
whitespace after the ')'.
Please address all the issues reported by scritps/checkpatch.pl before
submitting the next version, thanks!
Paolo
Powered by blists - more mailing lists