patch-2.3.43 linux/fs/ncpfs/inode.c
Next file: linux/fs/ncpfs/symlink.c
Previous file: linux/fs/ncpfs/file.c
Back to the patch index
Back to the overall index
-  Lines: 19
-  Date:
Thu Feb 10 12:16:59 2000
-  Orig file: 
v2.3.42/linux/fs/ncpfs/inode.c
-  Orig date: 
Fri Jan 28 15:09:09 2000
diff -u --recursive --new-file v2.3.42/linux/fs/ncpfs/inode.c linux/fs/ncpfs/inode.c
@@ -51,7 +51,7 @@
 
 extern struct dentry_operations ncp_dentry_operations;
 #ifdef CONFIG_NCPFS_EXTRAS
-extern struct inode_operations ncp_symlink_inode_operations;
+extern struct address_space_operations ncp_symlink_aops;
 extern int ncp_symlink(struct inode*, struct dentry*, const char*);
 #endif
 
@@ -226,7 +226,8 @@
 			inode->i_op = &ncp_dir_inode_operations;
 #ifdef CONFIG_NCPFS_EXTRAS
 		} else if (S_ISLNK(inode->i_mode)) {
-			inode->i_op = &ncp_symlink_inode_operations;
+			inode->i_op = &page_symlink_inode_operations;
+			inode->i_data.a_ops = &ncp_symlink_aops;
 #endif
 		}
 		insert_inode_hash(inode);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)