2005-04-17 02:20:36 +04:00
/*
* JFFS2 - - Journalling Flash File System , Version 2.
*
2007-04-25 17:16:47 +04:00
* Copyright © 2001 - 2007 Red Hat , Inc .
2005-04-17 02:20:36 +04:00
*
* Created by David Woodhouse < dwmw2 @ infradead . org >
*
* For licensing information , see the file ' LICENCE ' in this directory .
*
*/
# include <linux/kernel.h>
# include <linux/fs.h>
# include <linux/namei.h>
# include "nodelist.h"
[PATCH] Fix up symlink function pointers
This fixes up the symlink functions for the calling convention change:
* afs, autofs4, befs, devfs, freevxfs, jffs2, jfs, ncpfs, procfs,
smbfs, sysvfs, ufs, xfs - prototype change for ->follow_link()
* befs, smbfs, xfs - same for ->put_link()
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-08-20 03:17:39 +04:00
static void * jffs2_follow_link ( struct dentry * dentry , struct nameidata * nd ) ;
2005-04-17 02:20:36 +04:00
2007-02-12 11:55:39 +03:00
const struct inode_operations jffs2_symlink_inode_operations =
2005-11-07 14:16:07 +03:00
{
2005-04-17 02:20:36 +04:00
. readlink = generic_readlink ,
. follow_link = jffs2_follow_link ,
2011-07-23 19:37:31 +04:00
. get_acl = jffs2_get_acl ,
2006-05-13 10:09:47 +04:00
. setattr = jffs2_setattr ,
. setxattr = jffs2_setxattr ,
. getxattr = jffs2_getxattr ,
. listxattr = jffs2_listxattr ,
. removexattr = jffs2_removexattr
2005-04-17 02:20:36 +04:00
} ;
[PATCH] Fix up symlink function pointers
This fixes up the symlink functions for the calling convention change:
* afs, autofs4, befs, devfs, freevxfs, jffs2, jfs, ncpfs, procfs,
smbfs, sysvfs, ufs, xfs - prototype change for ->follow_link()
* befs, smbfs, xfs - same for ->put_link()
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-08-20 03:17:39 +04:00
static void * jffs2_follow_link ( struct dentry * dentry , struct nameidata * nd )
2005-04-17 02:20:36 +04:00
{
2005-03-01 13:50:52 +03:00
struct jffs2_inode_info * f = JFFS2_INODE_INFO ( dentry - > d_inode ) ;
2005-07-17 15:13:51 +04:00
char * p = ( char * ) f - > target ;
2005-03-01 13:50:52 +03:00
/*
* We don ' t acquire the f - > sem mutex here since the only data we
2005-07-17 15:13:51 +04:00
* use is f - > target .
2005-03-01 13:50:52 +03:00
*
2005-07-17 15:13:51 +04:00
* 1. If we are here the inode has already built and f - > target has
2005-03-01 13:50:52 +03:00
* to point to the target path .
2005-07-17 15:13:51 +04:00
* 2. Nobody uses f - > target ( if the inode is symlink ' s inode ) . The
* exception is inode freeing function which frees f - > target . But
2005-03-01 13:50:52 +03:00
* it can ' t be called while we are here and before VFS has
2005-07-17 15:13:51 +04:00
* stopped using our f - > target string which we provide by means of
2005-03-01 13:50:52 +03:00
* nd_set_link ( ) call .
*/
2005-11-07 14:16:07 +03:00
2005-08-20 01:42:16 +04:00
if ( ! p ) {
2006-10-16 15:42:23 +04:00
printk ( KERN_ERR " jffs2_follow_link(): can't find symlink target \n " ) ;
2005-08-20 01:42:16 +04:00
p = ERR_PTR ( - EIO ) ;
2005-03-01 13:50:52 +03:00
}
2012-02-16 03:56:43 +04:00
jffs2_dbg ( 1 , " %s(): target path is '%s' \n " ,
__func__ , ( char * ) f - > target ) ;
2005-03-01 13:50:52 +03:00
2005-08-20 01:42:16 +04:00
nd_set_link ( nd , p ) ;
2005-11-07 14:16:07 +03:00
2005-03-01 13:50:52 +03:00
/*
2005-07-17 15:13:51 +04:00
* We will unlock the f - > sem mutex but VFS will use the f - > target string . This is safe
* since the only way that may cause f - > target to be changed is iput ( ) operation .
* But VFS will not use f - > target after iput ( ) has been called .
2005-03-01 13:50:52 +03:00
*/
[PATCH] Fix up symlink function pointers
This fixes up the symlink functions for the calling convention change:
* afs, autofs4, befs, devfs, freevxfs, jffs2, jfs, ncpfs, procfs,
smbfs, sysvfs, ufs, xfs - prototype change for ->follow_link()
* befs, smbfs, xfs - same for ->put_link()
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2005-08-20 03:17:39 +04:00
return NULL ;
2005-04-17 02:20:36 +04:00
}