|
@@ -382,9 +382,9 @@ ondemand_readahead(struct address_space *mapping,
|
|
|
if (hit_readahead_marker) {
|
|
|
pgoff_t start;
|
|
|
|
|
|
- read_lock_irq(&mapping->tree_lock);
|
|
|
- start = radix_tree_next_hole(&mapping->page_tree, offset, max+1);
|
|
|
- read_unlock_irq(&mapping->tree_lock);
|
|
|
+ rcu_read_lock();
|
|
|
+ start = radix_tree_next_hole(&mapping->page_tree, offset,max+1);
|
|
|
+ rcu_read_unlock();
|
|
|
|
|
|
if (!start || start - offset > max)
|
|
|
return 0;
|