Heiko Carstens cae7ca3d3d [IPVS]: Use IP_VS_WAIT_WHILE when encessary.
For architectures that don't have a volatile atomic_ts constructs like
while (atomic_read(&something)); might result in endless loops since a
barrier() is missing which forces the compiler to generate code that
actually reads memory contents.
Fix this in ipvs by using the IP_VS_WAIT_WHILE macro which resolves to
while (expr) { cpu_relax(); }
(why isn't this open coded btw?)

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Simon Horman <horms@verge.net.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-13 22:52:15 -07:00
..
2007-07-31 15:39:42 -07:00
2007-07-31 14:00:02 -07:00
2007-07-19 10:43:13 +09:00
2007-07-19 10:44:40 +09:00
2007-07-26 11:11:56 -07:00
2007-07-31 02:28:27 -07:00
2007-07-16 09:05:45 -07:00
2005-04-16 15:20:36 -07:00