[CIFS] Typo in previous patch
Signed-off-by: Steve French <sfrench@us.ibm.com>
This commit is contained in:
parent
6fa20d4fb5
commit
7e42ca886b
1 changed files with 1 additions and 2 deletions
|
@ -1346,14 +1346,13 @@ static int cifs_truncate_page(struct address_space *mapping, loff_t from)
|
||||||
pgoff_t index = from >> PAGE_CACHE_SHIFT;
|
pgoff_t index = from >> PAGE_CACHE_SHIFT;
|
||||||
unsigned offset = from & (PAGE_CACHE_SIZE - 1);
|
unsigned offset = from & (PAGE_CACHE_SIZE - 1);
|
||||||
struct page *page;
|
struct page *page;
|
||||||
char *kaddr;
|
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
|
|
||||||
page = grab_cache_page(mapping, index);
|
page = grab_cache_page(mapping, index);
|
||||||
if (!page)
|
if (!page)
|
||||||
return -ENOMEM;
|
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);
|
unlock_page(page);
|
||||||
page_cache_release(page);
|
page_cache_release(page);
|
||||||
return rc;
|
return rc;
|
||||||
|
|
Loading…
Reference in a new issue