[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <BN6PR15MB15534B86BEFB74B5CEC5BE2E9AC80@BN6PR15MB1553.namprd15.prod.outlook.com>
Date: Mon, 19 Feb 2018 17:19:52 +0000
From: Jon Maloy <jon.maloy@...csson.com>
To: David Laight <David.Laight@...LAB.COM>
CC: "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
"Mohan Krishna Ghanta Krishnamurthy"
<mohan.krishna.ghanta.krishnamurthy@...csson.com>,
"Tung Quang Nguyen" <tung.q.nguyen@...tech.com.au>,
Hoang Huu Le <hoang.h.le@...tech.com.au>,
Canh Duc Luu <canh.d.luu@...tech.com.au>,
"Ying Xue" <ying.xue@...driver.com>,
"tipc-discussion@...ts.sourceforge.net"
<tipc-discussion@...ts.sourceforge.net>
Subject: RE: [net-next v2 1/1] tipc: avoid unnecessary copying of bundled
messages
> -----Original Message-----
> From: David Laight [mailto:David.Laight@...LAB.COM]
> Sent: Monday, February 19, 2018 14:30
> To: Jon Maloy <jon.maloy@...csson.com>
> Cc: netdev@...r.kernel.org; Mohan Krishna Ghanta Krishnamurthy
> <mohan.krishna.ghanta.krishnamurthy@...csson.com>; Tung Quang Nguyen
> <tung.q.nguyen@...tech.com.au>; Hoang Huu Le
> <hoang.h.le@...tech.com.au>; Canh Duc Luu
> <canh.d.luu@...tech.com.au>; Ying Xue <ying.xue@...driver.com>; tipc-
> discussion@...ts.sourceforge.net
> Subject: RE: [net-next v2 1/1] tipc: avoid unnecessary copying of bundled
> messages
>
> From: Jon Maloy <jon.maloy@...csson.com>
> Date: Thu, 15 Feb 2018 14:14:37 +0100
>
> > A received sk buffer may contain dozens of smaller 'bundled' messages
> > which after extraction go each in their own direction.
> >
> > Unfortunately, when we extract those messages using skb_clone() each
> > of the extracted buffers inherit the truesize value of the original
> > buffer. Apart from causing massive overaccounting of the base buffer's
> > memory, this often causes tipc_msg_validate() to come to the false
> > conclusion that the ratio truesize/datasize > 4, and perform an
> > unnecessary copying of the extracted buffer.
> >
> > We now fix this problem by explicitly correcting the truesize value of
> > the buffer clones to be the truesize of the clone itself plus a
> > calculated fraction of the base buffer's overhead. This change
> > eliminates the overaccounting and at least mitigates the occurrence of
> > unnecessary buffer copying.
>
> Have you actually checked that copying the data when you extract the
> messages isn't faster than cloning and trying to avoid the copy?
> Copying at the point is probably cheaper because it leads to a simpler
> message structure.
Yes, that is probably what I'll end up doing, if copying is unavoidable anyway.
///jon
>
> David
Powered by blists - more mailing lists