mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-04-01 03:54:02 +00:00
squashfs: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
This commit is contained in:
parent
883da600b0
commit
53b55e5589
2 changed files with 6 additions and 6 deletions
|
@ -464,10 +464,10 @@ static int squashfs_readpage(struct file *file, struct page *page)
|
||||||
if (PageUptodate(push_page))
|
if (PageUptodate(push_page))
|
||||||
goto skip_page;
|
goto skip_page;
|
||||||
|
|
||||||
pageaddr = kmap_atomic(push_page, KM_USER0);
|
pageaddr = kmap_atomic(push_page);
|
||||||
squashfs_copy_data(pageaddr, buffer, offset, avail);
|
squashfs_copy_data(pageaddr, buffer, offset, avail);
|
||||||
memset(pageaddr + avail, 0, PAGE_CACHE_SIZE - avail);
|
memset(pageaddr + avail, 0, PAGE_CACHE_SIZE - avail);
|
||||||
kunmap_atomic(pageaddr, KM_USER0);
|
kunmap_atomic(pageaddr);
|
||||||
flush_dcache_page(push_page);
|
flush_dcache_page(push_page);
|
||||||
SetPageUptodate(push_page);
|
SetPageUptodate(push_page);
|
||||||
skip_page:
|
skip_page:
|
||||||
|
@ -484,9 +484,9 @@ skip_page:
|
||||||
error_out:
|
error_out:
|
||||||
SetPageError(page);
|
SetPageError(page);
|
||||||
out:
|
out:
|
||||||
pageaddr = kmap_atomic(page, KM_USER0);
|
pageaddr = kmap_atomic(page);
|
||||||
memset(pageaddr, 0, PAGE_CACHE_SIZE);
|
memset(pageaddr, 0, PAGE_CACHE_SIZE);
|
||||||
kunmap_atomic(pageaddr, KM_USER0);
|
kunmap_atomic(pageaddr);
|
||||||
flush_dcache_page(page);
|
flush_dcache_page(page);
|
||||||
if (!PageError(page))
|
if (!PageError(page))
|
||||||
SetPageUptodate(page);
|
SetPageUptodate(page);
|
||||||
|
|
|
@ -90,14 +90,14 @@ static int squashfs_symlink_readpage(struct file *file, struct page *page)
|
||||||
goto error_out;
|
goto error_out;
|
||||||
}
|
}
|
||||||
|
|
||||||
pageaddr = kmap_atomic(page, KM_USER0);
|
pageaddr = kmap_atomic(page);
|
||||||
copied = squashfs_copy_data(pageaddr + bytes, entry, offset,
|
copied = squashfs_copy_data(pageaddr + bytes, entry, offset,
|
||||||
length - bytes);
|
length - bytes);
|
||||||
if (copied == length - bytes)
|
if (copied == length - bytes)
|
||||||
memset(pageaddr + length, 0, PAGE_CACHE_SIZE - length);
|
memset(pageaddr + length, 0, PAGE_CACHE_SIZE - length);
|
||||||
else
|
else
|
||||||
block = entry->next_index;
|
block = entry->next_index;
|
||||||
kunmap_atomic(pageaddr, KM_USER0);
|
kunmap_atomic(pageaddr);
|
||||||
squashfs_cache_put(entry);
|
squashfs_cache_put(entry);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue