mirror of
https://github.com/torvalds/linux.git
synced 2024-10-31 17:21:49 +00:00
edac: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
This commit is contained in:
parent
237f259ce2
commit
4e5df7ca30
@ -620,13 +620,13 @@ static void edac_mc_scrub_block(unsigned long page, unsigned long offset,
|
||||
if (PageHighMem(pg))
|
||||
local_irq_save(flags);
|
||||
|
||||
virt_addr = kmap_atomic(pg, KM_BOUNCE_READ);
|
||||
virt_addr = kmap_atomic(pg);
|
||||
|
||||
/* Perform architecture specific atomic scrub operation */
|
||||
atomic_scrub(virt_addr + offset, size);
|
||||
|
||||
/* Unmap and complete */
|
||||
kunmap_atomic(virt_addr, KM_BOUNCE_READ);
|
||||
kunmap_atomic(virt_addr);
|
||||
|
||||
if (PageHighMem(pg))
|
||||
local_irq_restore(flags);
|
||||
|
Loading…
Reference in New Issue
Block a user