igb: Change memcpy to struct assignment
authorCarolyn Wyborny <carolyn.wyborny@intel.com>
Fri, 11 Apr 2014 02:20:44 +0000 (02:20 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Fri, 25 Apr 2014 00:41:17 +0000 (17:41 -0700)
This patch fixes issue found by updated coccicheck.

Signed-off-by: Carolyn Wyborny <carolyn.wyborny@intel.com>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igb/igb_main.c

index 5e8c5cc3abc6391986999a97181bf279ed36099a..bfcda8a455f46cc99058faf1a8bd0c339e7300e2 100644 (file)
@@ -6499,7 +6499,7 @@ static void igb_reuse_rx_page(struct igb_ring *rx_ring,
        rx_ring->next_to_alloc = (nta < rx_ring->count) ? nta : 0;
 
        /* transfer page from old buffer to new buffer */
-       memcpy(new_buff, old_buff, sizeof(struct igb_rx_buffer));
+       *new_buff = *old_buff;
 
        /* sync the buffer for use by the device */
        dma_sync_single_range_for_device(rx_ring->dev, old_buff->dma,
This page took 0.044824 seconds and 5 git commands to generate.