memory: use RCU_READ_LOCK_GUARD
Cc: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2a86be2571
commit
293a733df7
@ -2171,7 +2171,7 @@ MemTxResult address_space_read(AddressSpace *as, hwaddr addr,
|
|||||||
|
|
||||||
if (__builtin_constant_p(len)) {
|
if (__builtin_constant_p(len)) {
|
||||||
if (len) {
|
if (len) {
|
||||||
rcu_read_lock();
|
RCU_READ_LOCK_GUARD();
|
||||||
fv = address_space_to_flatview(as);
|
fv = address_space_to_flatview(as);
|
||||||
l = len;
|
l = len;
|
||||||
mr = flatview_translate(fv, addr, &addr1, &l, false, attrs);
|
mr = flatview_translate(fv, addr, &addr1, &l, false, attrs);
|
||||||
@ -2182,7 +2182,6 @@ MemTxResult address_space_read(AddressSpace *as, hwaddr addr,
|
|||||||
result = flatview_read_continue(fv, addr, attrs, buf, len,
|
result = flatview_read_continue(fv, addr, attrs, buf, len,
|
||||||
addr1, l, mr);
|
addr1, l, mr);
|
||||||
}
|
}
|
||||||
rcu_read_unlock();
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
result = address_space_read_full(as, addr, attrs, buf, len);
|
result = address_space_read_full(as, addr, attrs, buf, len);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user