svn commit: r267708 - head/sys/kern

Mateusz Guzik mjg at FreeBSD.org
Sun Jun 22 00:53:34 UTC 2014


Author: mjg
Date: Sun Jun 22 00:53:33 2014
New Revision: 267708
URL: http://svnweb.freebsd.org/changeset/base/267708

Log:
  do_dup: plug redundant adjustment of fd_lastfile
  
  By that time it was already set by fdalloc, or was there in the first place
  if fd is replaced.
  
  MFC after:	1 week

Modified:
  head/sys/kern/kern_descrip.c

Modified: head/sys/kern/kern_descrip.c
==============================================================================
--- head/sys/kern/kern_descrip.c	Sat Jun 21 23:35:11 2014	(r267707)
+++ head/sys/kern/kern_descrip.c	Sun Jun 22 00:53:33 2014	(r267708)
@@ -885,8 +885,6 @@ do_dup(struct thread *td, int flags, int
 		newfde->fde_flags = oldfde->fde_flags | UF_EXCLOSE;
 	else
 		newfde->fde_flags = oldfde->fde_flags & ~UF_EXCLOSE;
-	if (new > fdp->fd_lastfile)
-		fdp->fd_lastfile = new;
 	*retval = new;
 
 	if (delfp != NULL) {


More information about the svn-src-all mailing list