Skip to content
Commit ad8c48ad authored by Catalin(ux aka Dino) BOIE's avatar Catalin(ux aka Dino) BOIE Committed by Jeff Garzik
Browse files

Fix io ordering problems in e100



Checking e100.c code against Documentation/io_ordering.txt I found the
following problem:

spin_lock_irq...
write
spin-unlock
e100_write_flush

The attached patch fix the code like this:

spin_lock_irq...
write
e100_write_flush
spin-unlock

Signed-off-by: default avatarCatalin BOIE <catab@umbrella.ro>
Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent e72fd96e
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment