patch-2.3.48 linux/fs/ncpfs/dir.c
Next file: linux/fs/ncpfs/file.c
Previous file: linux/fs/msdos/namei.c
Back to the patch index
Back to the overall index
- Lines: 60
- Date:
Sat Feb 26 20:33:42 2000
- Orig file:
v2.3.47/linux/fs/ncpfs/dir.c
- Orig date:
Thu Feb 10 17:11:18 2000
diff -u --recursive --new-file v2.3.47/linux/fs/ncpfs/dir.c linux/fs/ncpfs/dir.c
@@ -31,7 +31,6 @@
static void ncp_do_readdir(struct file *, void *, filldir_t,
struct ncp_cache_control *);
-static ssize_t ncp_dir_read(struct file *, char *, size_t, loff_t *);
static int ncp_readdir(struct file *, void *, filldir_t);
static int ncp_create(struct inode *, struct dentry *, int);
@@ -45,41 +44,26 @@
extern int ncp_symlink(struct inode *, struct dentry *, const char *);
#endif
-static struct file_operations ncp_dir_operations =
+struct file_operations ncp_dir_operations =
{
- read: ncp_dir_read,
+ read: generic_read_dir,
readdir: ncp_readdir,
ioctl: ncp_ioctl,
};
struct inode_operations ncp_dir_inode_operations =
{
- &ncp_dir_operations, /* default directory file ops */
- ncp_create, /* create */
- ncp_lookup, /* lookup */
- NULL, /* link */
- ncp_unlink, /* unlink */
+ create: ncp_create,
+ lookup: ncp_lookup,
+ unlink: ncp_unlink,
#ifdef CONFIG_NCPFS_EXTRAS
- ncp_symlink, /* symlink */
-#else
- NULL, /* symlink */
+ symlink: ncp_symlink,
#endif
- ncp_mkdir, /* mkdir */
- ncp_rmdir, /* rmdir */
- NULL, /* mknod */
- ncp_rename, /* rename */
- NULL, /* readlink */
- NULL, /* follow link */
- NULL, /* truncate */
- NULL, /* permission */
- NULL, /* revalidate */
+ mkdir: ncp_mkdir,
+ rmdir: ncp_rmdir,
+ rename: ncp_rename,
+ setattr: ncp_notify_change,
};
-
-static ssize_t
-ncp_dir_read(struct file *filp, char *buf, size_t count, loff_t *ppos)
-{
- return -EISDIR;
-}
/*
* Dentry operations routines
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)