Date: Wed, 19 Jan 2005 18:28:34 GMT From: John Baldwin <jhb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 69310 for review Message-ID: <200501191828.j0JISYeg073515@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=69310 Change 69310 by jhb@jhb_slimer on 2005/01/19 18:28:31 Don't need this anymore. Affected files ... .. //depot/projects/smpng/sys/kern/kern_descrip.c#75 edit Differences ... ==== //depot/projects/smpng/sys/kern/kern_descrip.c#75 (text+ko) ==== @@ -204,8 +204,6 @@ FILEDESC_LOCK_ASSERT(fdp, MA_OWNED); KASSERT(!fdisused(fdp, fd), ("fd already used")); - KASSERT(fdp->fd_map[NDSLOT(fd)] != 0xdeadc0de, - ("writing to free'd map")); fdp->fd_map[NDSLOT(fd)] |= NDBIT(fd); if (fd > fdp->fd_lastfile) fdp->fd_lastfile = fd; @@ -224,8 +222,6 @@ ("fd is already unused")); KASSERT(fdp->fd_ofiles[fd] == NULL, ("fd is still in use")); - KASSERT(fdp->fd_map[NDSLOT(fd)] != 0xdeadc0de, - ("writing to free'd map")); fdp->fd_map[NDSLOT(fd)] &= ~NDBIT(fd); if (fd < fdp->fd_freefile) fdp->fd_freefile = fd; @@ -410,8 +406,6 @@ case F_SETFD: /* mtx_assert(&Giant, MA_NOTOWNED); */ - KASSERT(*(uint32_t *)(((uintptr_t)pop) & ~3) != 0xdeadc0de, - ("writing to free'd flags")); *pop = (*pop &~ UF_EXCLOSE) | (arg & FD_CLOEXEC ? UF_EXCLOSE : 0); FILEDESC_UNLOCK(fdp); @@ -700,8 +694,6 @@ * Duplicate the source descriptor */ fdp->fd_ofiles[new] = fp; - KASSERT(*(uint32_t *)(((uintptr_t)&fdp->fd_ofileflags[old]) & ~3) != - 0xdeadc0de, ("reading/writing free'd file flags")); fdp->fd_ofileflags[new] = fdp->fd_ofileflags[old] &~ UF_EXCLOSE; if (new > fdp->fd_lastfile) fdp->fd_lastfile = new;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200501191828.j0JISYeg073515>