svn commit: r200224 - stable/8/lib/libc/rpc

John Baldwin jhb at FreeBSD.org
Mon Dec 7 11:07:45 PST 2009


Author: jhb
Date: Mon Dec  7 19:07:45 2009
New Revision: 200224
URL: http://svn.freebsd.org/changeset/base/200224

Log:
  MFC 200061:
  The fd_mask type is an unsigned long, not an int, so treat the mask as a
  long instead of an int when examining the results of select() to look for
  RPC requests.  Previously this routine would ignore RPC requests to sockets
  whose file descriptor mod 64 was greater than 31 on a 64-bit platform.

Modified:
  stable/8/lib/libc/rpc/svc.c
Directory Properties:
  stable/8/lib/libc/   (props changed)
  stable/8/lib/libc/stdtime/   (props changed)

Modified: stable/8/lib/libc/rpc/svc.c
==============================================================================
--- stable/8/lib/libc/rpc/svc.c	Mon Dec  7 18:37:50 2009	(r200223)
+++ stable/8/lib/libc/rpc/svc.c	Mon Dec  7 19:07:45 2009	(r200224)
@@ -627,8 +627,8 @@ svc_getreqset(readfds)
 
 	maskp = readfds->fds_bits;
 	for (sock = 0; sock < FD_SETSIZE; sock += NFDBITS) {
-	    for (mask = *maskp++; (bit = ffs(mask)) != 0;
-		mask ^= (1 << (bit - 1))) {
+	    for (mask = *maskp++; (bit = ffsl(mask)) != 0;
+		mask ^= (1ul << (bit - 1))) {
 		/* sock has input waiting */
 		fd = sock + bit - 1;
 		svc_getreq_common(fd);


More information about the svn-src-stable-8 mailing list