patch-2.3.48 linux/fs/nfsd/vfs.c
Next file: linux/fs/ntfs/fs.c
Previous file: linux/fs/nfsd/nfsfh.c
Back to the patch index
Back to the overall index
- Lines: 27
- Date:
Sat Feb 26 20:33:07 2000
- Orig file:
v2.3.47/linux/fs/nfsd/vfs.c
- Orig date:
Sun Feb 20 21:12:39 2000
diff -u --recursive --new-file v2.3.47/linux/fs/nfsd/vfs.c linux/fs/nfsd/vfs.c
@@ -432,14 +432,14 @@
err = nfserr_perm;
if (IS_APPEND(inode) || IS_ISMNDLK(inode))
goto out;
- if (!inode->i_op || !inode->i_op->default_file_ops)
+ if (!inode->i_fop)
goto out;
if ((access & MAY_WRITE) && (err = get_write_access(inode)) != 0)
goto out_nfserr;
memset(filp, 0, sizeof(*filp));
- filp->f_op = inode->i_op->default_file_ops;
+ filp->f_op = inode->i_fop;
atomic_set(&filp->f_count, 1);
filp->f_dentry = dentry;
if (access & MAY_WRITE) {
@@ -512,8 +512,7 @@
struct inode *inode = dp->d_inode;
int (*fsync) (struct file *, struct dentry *);
- if (inode->i_op->default_file_ops
- && (fsync = inode->i_op->default_file_ops->fsync)) {
+ if (inode->i_fop && (fsync = inode->i_fop->fsync)) {
fsync(NULL, dp);
}
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)