提交 196a4f82 编写于 作者: F Fabian Frederick 提交者: Linus Torvalds

fs/affs/symlink.c: remove unneeded err variable

err is only assigned to -EIO.  Return that value at the end of fail
context.
Signed-off-by: NFabian Frederick <fabf@skynet.be>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
上级 4709187e
...@@ -16,14 +16,12 @@ static int affs_symlink_readpage(struct file *file, struct page *page) ...@@ -16,14 +16,12 @@ static int affs_symlink_readpage(struct file *file, struct page *page)
struct inode *inode = page->mapping->host; struct inode *inode = page->mapping->host;
char *link = kmap(page); char *link = kmap(page);
struct slink_front *lf; struct slink_front *lf;
int err;
int i, j; int i, j;
char c; char c;
char lc; char lc;
pr_debug("follow_link(ino=%lu)\n", inode->i_ino); pr_debug("follow_link(ino=%lu)\n", inode->i_ino);
err = -EIO;
bh = affs_bread(inode->i_sb, inode->i_ino); bh = affs_bread(inode->i_sb, inode->i_ino);
if (!bh) if (!bh)
goto fail; goto fail;
...@@ -66,7 +64,7 @@ static int affs_symlink_readpage(struct file *file, struct page *page) ...@@ -66,7 +64,7 @@ static int affs_symlink_readpage(struct file *file, struct page *page)
SetPageError(page); SetPageError(page);
kunmap(page); kunmap(page);
unlock_page(page); unlock_page(page);
return err; return -EIO;
} }
const struct address_space_operations affs_symlink_aops = { const struct address_space_operations affs_symlink_aops = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册