ixgbe: use rx_buffer_info->dma instead of nr_frags to determine skb unmap
authorAlexander Duyck <alexander.h.duyck@intel.com>
Thu, 4 Jun 2009 15:59:49 +0000 (15:59 +0000)
committerDavid S. Miller <davem@davemloft.net>
Sun, 7 Jun 2009 12:20:20 +0000 (05:20 -0700)
commit21fa4e66bd0bedfa4ed6aa6f7008b2aff6d45c8d
treea0a828616b4645b5843b62de87321857096ae7a5
parent74766013a131f1e1c2fe8fd138e12841eb708060
ixgbe: use rx_buffer_info->dma instead of nr_frags to determine skb unmap

This patch changes the driver so that it uses rx_buffer_info->dma to
determine if it needs to unmap the page instead of sh_info->nr_frags.  This
helps to prevent a cache line miss when receiving small packets as the
rx_buffer_info data should already be in the cache.

Signed-off-by: Alexander Duyck <alexander.h.duyck@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ixgbe/ixgbe_main.c