@@ -255,7 +255,7 @@ nfs_proc_create(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
255255 status = rpc_call_sync (NFS_CLIENT (dir ), & msg , 0 );
256256 nfs_mark_for_revalidate (dir );
257257 if (status == 0 )
258- status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr , NULL );
258+ status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr );
259259 nfs_free_createdata (data );
260260out :
261261 dprintk ("NFS reply create: %d\n" , status );
@@ -302,7 +302,7 @@ nfs_proc_mknod(struct inode *dir, struct dentry *dentry, struct iattr *sattr,
302302 status = rpc_call_sync (NFS_CLIENT (dir ), & msg , 0 );
303303 }
304304 if (status == 0 )
305- status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr , NULL );
305+ status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr );
306306 nfs_free_createdata (data );
307307out :
308308 dprintk ("NFS reply mknod: %d\n" , status );
@@ -434,7 +434,7 @@ nfs_proc_symlink(struct inode *dir, struct dentry *dentry, struct page *page,
434434 * should fill in the data with a LOOKUP call on the wire.
435435 */
436436 if (status == 0 )
437- status = nfs_instantiate (dentry , fh , fattr , NULL );
437+ status = nfs_instantiate (dentry , fh , fattr );
438438
439439out_free :
440440 nfs_free_fattr (fattr );
@@ -463,7 +463,7 @@ nfs_proc_mkdir(struct inode *dir, struct dentry *dentry, struct iattr *sattr)
463463 status = rpc_call_sync (NFS_CLIENT (dir ), & msg , 0 );
464464 nfs_mark_for_revalidate (dir );
465465 if (status == 0 )
466- status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr , NULL );
466+ status = nfs_instantiate (dentry , data -> res .fh , data -> res .fattr );
467467 nfs_free_createdata (data );
468468out :
469469 dprintk ("NFS reply mkdir: %d\n" , status );
0 commit comments