Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
8f77e95e
Commit
8f77e95e
authored
Jun 23, 2004
by
Alexander Viro
Committed by
Linus Torvalds
Jun 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[PATCH] symlink 9/9: jff2
jffs2 switched; leaks plugged.
parent
a8454157
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
26 deletions
+14
-26
fs/jffs2/symlink.c
fs/jffs2/symlink.c
+14
-26
No files found.
fs/jffs2/symlink.c
View file @
8f77e95e
...
...
@@ -15,43 +15,31 @@
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/fs.h>
#include <linux/namei.h>
#include "nodelist.h"
int
jffs2_readlink
(
struct
dentry
*
dentry
,
char
*
buffer
,
int
buflen
);
int
jffs2_follow
_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
);
static
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
=
{
.
readlink
=
jffs2
_readlink
,
.
readlink
=
generic
_readlink
,
.
follow_link
=
jffs2_follow_link
,
.
put_link
=
jffs2_put_link
,
.
setattr
=
jffs2_setattr
};
int
jffs2_readlink
(
struct
dentry
*
dentry
,
char
*
buffer
,
int
buflen
)
{
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
)
static
int
jffs2_follow_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
unsigned
char
*
buf
;
int
ret
;
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
))
return
PTR_ERR
(
buf
);
ret
=
vfs_follow_link
(
nd
,
buf
);
kfree
(
buf
);
return
ret
;
static
void
jffs2_put_link
(
struct
dentry
*
dentry
,
struct
nameidata
*
nd
)
{
char
*
s
=
nd_get_link
(
nd
);
if
(
!
IS_ERR
(
s
))
kfree
(
s
);
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment