[PATCH] mark struct inode_operations const 1
[deliverable/linux.git] / fs / autofs / symlink.c
index f028396f138395a3b5f2958bbf858fc1c6d27e21..7ce9cb2c9ce21f74db531eef41d5df420feca5af 100644 (file)
 
 #include "autofs_i.h"
 
-static int autofs_follow_link(struct dentry *dentry, struct nameidata *nd)
+/* 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;
+       char *s=((struct autofs_symlink *)dentry->d_inode->i_private)->data;
        nd_set_link(nd, s);
-       return 0;
+       return NULL;
 }
 
-struct inode_operations autofs_symlink_inode_operations = {
+const struct inode_operations autofs_symlink_inode_operations = {
        .readlink       = generic_readlink,
        .follow_link    = autofs_follow_link
 };
This page took 0.024279 seconds and 5 git commands to generate.