PERFORCE change 69310 for review
John Baldwin
jhb at FreeBSD.org
Wed Jan 19 10:28:36 PST 2005
http://perforce.freebsd.org/chv.cgi?CH=69310
Change 69310 by jhb at 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;
More information about the p4-projects
mailing list