Commit 8f77e95e authored by Alexander Viro's avatar Alexander Viro Committed by Linus Torvalds

[PATCH] symlink 9/9: jff2

jffs2 switched; leaks plugged.
parent a8454157
...@@ -15,43 +15,31 @@ ...@@ -15,43 +15,31 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/namei.h>
#include "nodelist.h" #include "nodelist.h"
int jffs2_readlink(struct dentry *dentry, char *buffer, int buflen); static int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd);
int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd); static void jffs2_put_link(struct dentry *dentry, struct nameidata *nd);
struct inode_operations jffs2_symlink_inode_operations = struct inode_operations jffs2_symlink_inode_operations =
{ {
.readlink = jffs2_readlink, .readlink = generic_readlink,
.follow_link = jffs2_follow_link, .follow_link = jffs2_follow_link,
.put_link = jffs2_put_link,
.setattr = jffs2_setattr .setattr = jffs2_setattr
}; };
int jffs2_readlink(struct dentry *dentry, char *buffer, int buflen) static int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
{
unsigned char *kbuf;
int ret;
kbuf = jffs2_getlink(JFFS2_SB_INFO(dentry->d_inode->i_sb), JFFS2_INODE_INFO(dentry->d_inode));
if (IS_ERR(kbuf))
return PTR_ERR(kbuf);
ret = vfs_readlink(dentry, buffer, buflen, kbuf);
kfree(kbuf);
return ret;
}
int jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
{ {
unsigned char *buf; unsigned char *buf;
int ret;
buf = jffs2_getlink(JFFS2_SB_INFO(dentry->d_inode->i_sb), JFFS2_INODE_INFO(dentry->d_inode)); buf = jffs2_getlink(JFFS2_SB_INFO(dentry->d_inode->i_sb), JFFS2_INODE_INFO(dentry->d_inode));
nd_set_link(nd, buf);
return 0;
}
if (IS_ERR(buf)) static void jffs2_put_link(struct dentry *dentry, struct nameidata *nd)
return PTR_ERR(buf); {
char *s = nd_get_link(nd);
ret = vfs_follow_link(nd, buf); if (!IS_ERR(s))
kfree(buf); kfree(s);
return ret;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment