diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-03-17 22:05:47 +0000 |
commit | 27cfca1ec98e91261b1a5355d10a8996464b63af (patch) | |
tree | 8e895a53e372fa682b4c0a585b9377d67ed70d0e /fs/proc/proc_devtree.c | |
parent | 6a76fb7214c477ccf6582bd79c5b4ccc4f9c41b1 (diff) |
Look Ma' what I found on my harddisk ...
o New faster syscalls for 2.1.x, too
o Upgrade to 2.1.89.
Don't try to run this. It's flaky as hell. But feel free to debug ...
Diffstat (limited to 'fs/proc/proc_devtree.c')
-rw-r--r-- | fs/proc/proc_devtree.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/fs/proc/proc_devtree.c b/fs/proc/proc_devtree.c index 8c5a1bc3a..6fdccf974 100644 --- a/fs/proc/proc_devtree.c +++ b/fs/proc/proc_devtree.c @@ -65,24 +65,24 @@ struct inode_operations devtree_symlink_inode_operations = { NULL /* smap */ }; -static struct dentry *devtree_follow_link(struct inode *inode, +static struct dentry *devtree_follow_link(struct dentry *dentry, struct dentry *base) { struct proc_dir_entry * de; char *link; - de = (struct proc_dir_entry *) inode->u.generic_ip; + de = (struct proc_dir_entry *) dentry->inode->u.generic_ip; link = (char *) de->data; return lookup_dentry(link, base, 1); } -static int devtree_readlink(struct inode *inode, char *buffer, int buflen) +static int devtree_readlink(struct dentry *dentry, char *buffer, int buflen) { struct proc_dir_entry * de; char *link; int linklen; - de = (struct proc_dir_entry *) inode->u.generic_ip; + de = (struct proc_dir_entry *) dentry->inode->u.generic_ip; link = (char *) de->data; linklen = strlen(link); if (linklen > buflen) |