[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <8a794a772a8044d9bd3a22197da57945@BY2PR03MB299.namprd03.prod.outlook.com>
Date: Tue, 11 Mar 2014 00:42:35 +0000
From: KY Srinivasan <kys@...rosoft.com>
To: David Miller <davem@...emloft.net>
CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"devel@...uxdriverproject.org" <devel@...uxdriverproject.org>,
"olaf@...fle.de" <olaf@...fle.de>,
"apw@...onical.com" <apw@...onical.com>,
"jasowang@...hat.com" <jasowang@...hat.com>
Subject: RE: [PATCH V3 0/6] Drivers: net: hyperv: Enable various offloads
> -----Original Message-----
> From: David Miller [mailto:davem@...emloft.net]
> Sent: Tuesday, March 11, 2014 1:26 AM
> To: KY Srinivasan
> Cc: netdev@...r.kernel.org; linux-kernel@...r.kernel.org;
> devel@...uxdriverproject.org; olaf@...fle.de; apw@...onical.com;
> jasowang@...hat.com
> Subject: Re: [PATCH V3 0/6] Drivers: net: hyperv: Enable various offloads
>
> From: "K. Y. Srinivasan" <kys@...rosoft.com>
> Date: Sat, 8 Mar 2014 19:22:42 -0800
>
> > This patch set enables both checksum as well as segmentation offload.
> > As part of this effort I have enabled scatter gather I/O a well.
> >
> > In version 2 of these patches, I addressed comments from David Miller
> > and Dan Carpenter.
> >
> > In this version I have addressed the latest comments from David Miller.
>
> Series applied, thanks.
>
> I still think that fill_pg_buf() could be improved.
>
> For example, it returns '1' if len is passed in as zero. Maybe that can't
> happen, but if it does the page buffer array will be corrupted and the driver
> will process garbage.
>
> It seems so much more straightforward to me if you simply incremented 'j' in
> the loop when an array entry is actually filled in. Then just return 'j'.
>
> int j;
> ...
> pb[j].pfn = page_to_pfn(page);
> pb[j].offset = offset;
> pb[j].len = bytes;
> j++;
> ...
> return j;
>
>
> Then 'j' is unambiguously the number of pb array entries which were filled in,
> no matter what.
Thanks David. As you suggest, I will send a patch to make this cleaner.
Regards,
K. Y
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists