Browse Source

[CIFS] zero_user_page() conversions

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Eric 18 years ago
parent
commit
6fa20d4fb5
1 changed files with 1 additions and 4 deletions
  1. 1 4
      fs/cifs/inode.c

+ 1 - 4
fs/cifs/inode.c

@@ -1353,10 +1353,7 @@ static int cifs_truncate_page(struct address_space *mapping, loff_t from)
 	if (!page)
 		return -ENOMEM;
 
-	kaddr = kmap_atomic(page, KM_USER0);
-	memset(kaddr + offset, 0, PAGE_CACHE_SIZE - offset);
-	flush_dcache_page(page);
-	kunmap_atomic(kaddr, KM_USER0);
+	zero_user_page(page, offset, PAGE_CACHE_SIZE - offset), KM_USER0);
 	unlock_page(page);
 	page_cache_release(page);
 	return rc;