dect
/
linux-2.6
Archived
13
0
Fork 0
This repository has been archived on 2022-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
linux-2.6/drivers/net/igbvf
Jesse Brandeburg 945a51517c intel drivers: repair missing flush operations
after review of all intel drivers, found several instances where
drivers had the incorrect pattern of:
memory mapped write();
delay();

which should always be:
memory mapped write();
write flush(); /* aka memory mapped read */
delay();

explanation:
The reason for including the flush is that writes can be held
(posted) in PCI/PCIe bridges, but the read always has to complete
synchronously and therefore has to flush all pending writes to a
device.  If a write is held and followed by a delay, the delay
means nothing because the write may not have reached hardware
(maybe even not until the next read)

Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by:  Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
2011-08-04 04:59:07 -07:00
..
Makefile igbvf: Update version and Copyright 2010-11-16 19:41:35 -08:00
defines.h igbvf: Update version and Copyright 2010-11-16 19:41:35 -08:00
ethtool.c igbvf: remove bogus phys_id 2011-05-04 12:12:22 -07:00
igbvf.h igbvf: do vlan cleanup 2011-07-21 13:47:55 -07:00
mbx.c igbvf: Update version and Copyright 2010-11-16 19:41:35 -08:00
mbx.h igbvf: Update version and Copyright 2010-11-16 19:41:35 -08:00
netdev.c intel drivers: repair missing flush operations 2011-08-04 04:59:07 -07:00
regs.h igbvf: Update version and Copyright 2010-11-16 19:41:35 -08:00
vf.c igb: fix sparse warning 2011-03-02 03:33:48 -08:00
vf.h igbvf: add support for i350 VF device 2010-12-24 21:38:47 -08:00