From: Herbert Xu Date: Tue, 26 May 2009 18:50:19 +0000 (+0000) Subject: gro: Open-code frags copy in skb_gro_receive X-Git-Tag: v2.6.31-rc1~330^2~260 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=42da6994ca6d20ad1d4e30255dee98047db454e7;p=pandora-kernel.git gro: Open-code frags copy in skb_gro_receive gcc does a poor job at generating code for the memcpy of the frags array in skb_gro_receive, which is the primary purpose of that function when merging frags. In particular, it can't utilise the alignment information of the source and destination. This patch open-codes the copy so we process words instead of bytes. Signed-off-by: Herbert Xu Signed-off-by: David S. Miller --- Reading git-diff-tree failed