Skip to content
This repository has been archived by the owner on Aug 14, 2023. It is now read-only.

Commit

Permalink
namei: page_getlink() and page_follow_link_light() are the same thing
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Dec 7, 2015
1 parent 9cdce3c commit aa80dea
Showing 1 changed file with 13 additions and 19 deletions.
32 changes: 13 additions & 19 deletions fs/namei.c
Original file line number Diff line number Diff line change
Expand Up @@ -4518,39 +4518,23 @@ int generic_readlink(struct dentry *dentry, char __user *buffer, int buflen)
EXPORT_SYMBOL(generic_readlink);

/* get the link contents into pagecache */
static char *page_getlink(struct dentry * dentry, struct page **ppage)
static const char *page_getlink(struct dentry * dentry, void **cookie)
{
char *kaddr;
struct page *page;
struct address_space *mapping = dentry->d_inode->i_mapping;
page = read_mapping_page(mapping, 0, NULL);
if (IS_ERR(page))
return (char*)page;
*ppage = page;
*cookie = page;
kaddr = kmap(page);
nd_terminate_link(kaddr, dentry->d_inode->i_size, PAGE_SIZE - 1);
return kaddr;
}

int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
{
struct page *page = NULL;
int res = readlink_copy(buffer, buflen, page_getlink(dentry, &page));
if (page) {
kunmap(page);
page_cache_release(page);
}
return res;
}
EXPORT_SYMBOL(page_readlink);

const char *page_follow_link_light(struct dentry *dentry, void **cookie)
{
struct page *page = NULL;
char *res = page_getlink(dentry, &page);
if (!IS_ERR(res))
*cookie = page;
return res;
return page_getlink(dentry, cookie);
}
EXPORT_SYMBOL(page_follow_link_light);

Expand All @@ -4562,6 +4546,16 @@ void page_put_link(struct inode *unused, void *cookie)
}
EXPORT_SYMBOL(page_put_link);

int page_readlink(struct dentry *dentry, char __user *buffer, int buflen)
{
void *cookie = NULL;
int res = readlink_copy(buffer, buflen, page_getlink(dentry, &cookie));
if (cookie)
page_put_link(NULL, cookie);
return res;
}
EXPORT_SYMBOL(page_readlink);

/*
* The nofs argument instructs pagecache_write_begin to pass AOP_FLAG_NOFS
*/
Expand Down

0 comments on commit aa80dea

Please sign in to comment.