patch-2.1.43 linux/fs/dquot.c
Next file: linux/fs/exec.c
Previous file: linux/fs/devices.c
Back to the patch index
Back to the overall index
- Lines: 23
- Date:
Thu Jun 12 16:22:08 1997
- Orig file:
v2.1.42/linux/fs/dquot.c
- Orig date:
Tue May 13 22:41:14 1997
diff -u --recursive --new-file v2.1.42/linux/fs/dquot.c linux/fs/dquot.c
@@ -237,9 +237,12 @@
filp->f_pos = dqoff(dquot->dq_id);
fs = get_fs();
set_fs(KERNEL_DS);
+
if (filp->f_op->write(filp->f_inode, filp,
(char *)&dquot->dq_dqb, sizeof(struct dqblk)) == sizeof(struct dqblk))
dquot->dq_flags &= ~DQ_MOD;
+ /* inode->i_status |= ST_MODIFIED is willingly *not* done here */
+
up(&dquot->dq_mnt->mnt_sem);
set_fs(fs);
unlock_dquot(dquot);
@@ -1035,7 +1038,8 @@
if (special == (char *)NULL && (cmds == Q_SYNC || cmds == Q_GETSTATS))
dev = 0;
else {
- if (namei(special, &ino))
+ int error = namei(NAM_FOLLOW_LINK, special, &ino);
+ if(error)
goto out;
dev = ino->i_rdev;
ret = -ENOTBLK;
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov