Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7e42ca88 authored by Steve French's avatar Steve French
Browse files

[CIFS] Typo in previous patch



Signed-off-by: default avatarSteve French <sfrench@us.ibm.com>
parent 6fa20d4f
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -1346,14 +1346,13 @@ static int cifs_truncate_page(struct address_space *mapping, loff_t from)
	pgoff_t index = from >> PAGE_CACHE_SHIFT;
	unsigned offset = from & (PAGE_CACHE_SIZE - 1);
	struct page *page;
	char *kaddr;
	int rc = 0;

	page = grab_cache_page(mapping, index);
	if (!page)
		return -ENOMEM;

	zero_user_page(page, offset, PAGE_CACHE_SIZE - offset), KM_USER0);
	zero_user_page(page, offset, PAGE_CACHE_SIZE - offset, KM_USER0);
	unlock_page(page);
	page_cache_release(page);
	return rc;