cc314eef01
This bug could cause oopses and page state corruption, because ncpfs used the generic page-cache symlink handlign functions. But those functions only work if the page cache is guaranteed to be "stable", ie a page that was installed when the symlink walk was started has to still be installed in the page cache at the end of the walk. We could have fixed ncpfs to not use the generic helper routines, but it is in many ways much cleaner to instead improve on the symlink walking helper routines so that they don't require that absolute stability. We do this by allowing "follow_link()" to return a error-pointer as a cookie, which is fed back to the cleanup "put_link()" routine. This also simplifies NFS symlink handling. Signed-off-by: Linus Torvalds <torvalds@osdl.org>
26 lines
842 B
C
26 lines
842 B
C
/* -*- linux-c -*- --------------------------------------------------------- *
|
|
*
|
|
* linux/fs/autofs/symlink.c
|
|
*
|
|
* Copyright 1997-1998 Transmeta Corporation -- All Rights Reserved
|
|
*
|
|
* This file is part of the Linux kernel and is made available under
|
|
* the terms of the GNU General Public License, version 2, or at your
|
|
* option, any later version, incorporated herein by reference.
|
|
*
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
#include "autofs_i.h"
|
|
|
|
/* Nothing to release.. */
|
|
static void *autofs_follow_link(struct dentry *dentry, struct nameidata *nd)
|
|
{
|
|
char *s=((struct autofs_symlink *)dentry->d_inode->u.generic_ip)->data;
|
|
nd_set_link(nd, s);
|
|
return NULL;
|
|
}
|
|
|
|
struct inode_operations autofs_symlink_inode_operations = {
|
|
.readlink = generic_readlink,
|
|
.follow_link = autofs_follow_link
|
|
};
|