patch-1.3.68 linux/fs/nfs/file.c

Next file: linux/fs/proc/array.c
Previous file: linux/fs/ncpfs/sock.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v1.3.67/linux/fs/nfs/file.c linux/fs/nfs/file.c
@@ -81,7 +81,7 @@
 			return;
 		NFS_OLDMTIME(inode) = fattr.mtime.seconds;
 	}
-	invalidate_inode_pages(inode, 0);
+	invalidate_inode_pages(inode);
 }
 
 
@@ -118,18 +118,15 @@
 		result = nfs_proc_read(NFS_SERVER(inode), NFS_FH(inode), 
 			pos, rsize, buf, &fattr);
 		if (result < 0)
-			goto partial;
+			break;
 		refresh = 1;
-		count -= rsize;
-		pos += rsize;
-		buf += rsize;
+		count -= result;
+		pos += result;
+		buf += result;
 		if (result < rsize)
-			goto partial;
+			break;
 	} while (count);
-	nfs_refresh_inode(inode, &fattr);
-	return;
 
-partial:
 	memset(buf, 0, count);
 	if (refresh)
 		nfs_refresh_inode(inode, &fattr);

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov with Sam's (original) version
of this