From: Cong Wang Date: Fri, 25 Nov 2011 15:14:36 +0000 (+0800) Subject: ubifs: remove the second argument of k[un]map_atomic() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=a1c7c13783c9d2d1d67f53c49dc4eaf34811a290;p=deliverable%2Flinux.git ubifs: remove the second argument of k[un]map_atomic() Signed-off-by: Cong Wang --- diff --git a/fs/ubifs/file.c b/fs/ubifs/file.c index f9c234bf33d3..5c8f6dc1d28b 100644 --- a/fs/ubifs/file.c +++ b/fs/ubifs/file.c @@ -1042,10 +1042,10 @@ static int ubifs_writepage(struct page *page, struct writeback_control *wbc) * the page size, the remaining memory is zeroed when mapped, and * writes to that region are not written out to the file." */ - kaddr = kmap_atomic(page, KM_USER0); + kaddr = kmap_atomic(page); memset(kaddr + len, 0, PAGE_CACHE_SIZE - len); flush_dcache_page(page); - kunmap_atomic(kaddr, KM_USER0); + kunmap_atomic(kaddr); if (i_size > synced_i_size) { err = inode->i_sb->s_op->write_inode(inode, NULL);