From: Stephen Hemminger Date: Thu, 23 Mar 2006 19:07:24 +0000 (-0800) Subject: [PATCH] skge: dont use dev_alloc_skb for rx buffs X-Git-Tag: v2.6.17-rc1~994^2~6 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5d56ddc3f839e94e97a3eb8afb4d0d64a9f2ef8;p=pandora-kernel.git [PATCH] skge: dont use dev_alloc_skb for rx buffs The skge driver was using dev_alloc_skb which reserves space for the Ethernet header. This unnecessary and it should just use alloc_skb, also by using GFP_KERNEL during startup it won't run into problems when a user asks for a huge ring size or mtu and potentially drains the reserved atomic pool. Signed-off-by: Stephen Hemminger Signed-off-by: Jeff Garzik --- Reading git-diff-tree failed