Commit 4d9835b2 authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

[PATCH] fix READA in ll_rw_block()

- Don't convert READA into READ in ll_rw_block().
parent fa4de7cc
...@@ -2449,7 +2449,7 @@ void ll_rw_block(int rw, int nr, struct buffer_head *bhs[]) ...@@ -2449,7 +2449,7 @@ void ll_rw_block(int rw, int nr, struct buffer_head *bhs[])
} }
} else { } else {
if (!buffer_uptodate(bh)) { if (!buffer_uptodate(bh)) {
submit_bh(READ, bh); submit_bh(rw, bh);
continue; continue;
} }
} }
......
Markdown is supported
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