Переглянути джерело

Merge branch 'sfc-3.9' of git://git.kernel.org/pub/scm/linux/kernel/git/bwh/sfc

Ben Hutchings says:

====================
Just the one bug fix I mentioned before, but it's a pretty important one
as it can cause silent data corruption or IOMMU page faults.

This would be suitable for stable and should apply cleanly to all the
3.x.y branches.  I'm still working through testing of larger sets of
fixes.
====================

Signed-off-by: David S. Miller <davem@davemloft.net>
David S. Miller 12 роки тому
батько
коміт
6f08158de9
1 змінених файлів з 2 додано та 1 видалено
  1. 2 1
      drivers/net/ethernet/sfc/nic.c

+ 2 - 1
drivers/net/ethernet/sfc/nic.c

@@ -376,7 +376,8 @@ efx_may_push_tx_desc(struct efx_tx_queue *tx_queue, unsigned int write_count)
 		return false;
 		return false;
 
 
 	tx_queue->empty_read_count = 0;
 	tx_queue->empty_read_count = 0;
-	return ((empty_read_count ^ write_count) & ~EFX_EMPTY_COUNT_VALID) == 0;
+	return ((empty_read_count ^ write_count) & ~EFX_EMPTY_COUNT_VALID) == 0
+		&& tx_queue->write_count - write_count == 1;
 }
 }
 
 
 /* For each entry inserted into the software descriptor ring, create a
 /* For each entry inserted into the software descriptor ring, create a