Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jul 2011 12:19:25 +0000 (UTC)
From:      Jonathan Anderson <jonathan@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r223866 - head/sys/kern
Message-ID:  <201107081219.p68CJPDV017418@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jonathan
Date: Fri Jul  8 12:19:25 2011
New Revision: 223866
URL: http://svn.freebsd.org/changeset/base/223866

Log:
  Fix the "passability" test in fdcopy().
  
  Rather than checking to see if a descriptor is a kqueue, check to see if
  its fileops flags include DFLAG_PASSABLE.
  
  At the moment, these two tests are equivalent, but this will change with
  the addition of capabilities that wrap kqueues but are themselves of type
  DTYPE_CAPABILITY. We already have the DFLAG_PASSABLE abstraction, so let's
  use it.
  
  This change has been tested with [the newly improved] tools/regression/kqueue.
  
  Approved by: mentor (rwatson), re (Capsicum blanket)
  Sponsored by: Google Inc

Modified:
  head/sys/kern/kern_descrip.c

Modified: head/sys/kern/kern_descrip.c
==============================================================================
--- head/sys/kern/kern_descrip.c	Fri Jul  8 12:16:30 2011	(r223865)
+++ head/sys/kern/kern_descrip.c	Fri Jul  8 12:19:25 2011	(r223866)
@@ -1780,11 +1780,11 @@ fdcopy(struct filedesc *fdp)
 		FILEDESC_XUNLOCK(newfdp);
 		FILEDESC_SLOCK(fdp);
 	}
-	/* copy everything except kqueue descriptors */
+	/* copy all passable descriptors (i.e. not kqueue) */
 	newfdp->fd_freefile = -1;
 	for (i = 0; i <= fdp->fd_lastfile; ++i) {
 		if (fdisused(fdp, i) &&
-		    fdp->fd_ofiles[i]->f_type != DTYPE_KQUEUE &&
+		    (fdp->fd_ofiles[i]->f_ops->fo_flags & DFLAG_PASSABLE) &&
 		    fdp->fd_ofiles[i]->f_ops != &badfileops) {
 			newfdp->fd_ofiles[i] = fdp->fd_ofiles[i];
 			newfdp->fd_ofileflags[i] = fdp->fd_ofileflags[i];



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201107081219.p68CJPDV017418>