summaryrefslogtreecommitdiffstats
path: root/sys/kern/kern_descrip.c
diff options
context:
space:
mode:
authoralc <alc@FreeBSD.org>2004-01-11 06:59:21 +0000
committeralc <alc@FreeBSD.org>2004-01-11 06:59:21 +0000
commit5752042760d09cb610e99eba21ace91ccfade729 (patch)
tree0f91e54b4e905f16e2eb488d38b961a65f27d8bb /sys/kern/kern_descrip.c
parentbf3ace5acaa8f607b40f3c34044ebb974a8de294 (diff)
downloadFreeBSD-src-5752042760d09cb610e99eba21ace91ccfade729.zip
FreeBSD-src-5752042760d09cb610e99eba21ace91ccfade729.tar.gz
Remove long dead code, specifically, code related to munmapfd().
(See also vm/vm_mmap.c revision 1.173.)
Diffstat (limited to 'sys/kern/kern_descrip.c')
-rw-r--r--sys/kern/kern_descrip.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/kern/kern_descrip.c b/sys/kern/kern_descrip.c
index 3b8227f..69e6837 100644
--- a/sys/kern/kern_descrip.c
+++ b/sys/kern/kern_descrip.c
@@ -535,10 +535,6 @@ do_dup(td, type, old, new, retval)
holdleaders = 0;
KASSERT(delfp == NULL || type == DUP_FIXED,
("dup() picked an open file"));
-#if 0
- if (delfp && (fdp->fd_ofileflags[new] & UF_MAPPED))
- (void) munmapfd(td, new);
-#endif
/*
* Duplicate the source descriptor, update lastfile
@@ -830,10 +826,6 @@ close(td, uap)
error = EBADF;
goto done2;
}
-#if 0
- if (fdp->fd_ofileflags[fd] & UF_MAPPED)
- (void) munmapfd(td, fd);
-#endif
fdp->fd_ofiles[fd] = NULL;
fdp->fd_ofileflags[fd] = 0;
if (td->td_proc->p_fdtol != NULL) {
@@ -1587,10 +1579,6 @@ setugidsafety(td)
if (fdp->fd_ofiles[i] && is_unsafe(fdp->fd_ofiles[i])) {
struct file *fp;
-#if 0
- if ((fdp->fd_ofileflags[i] & UF_MAPPED) != 0)
- (void) munmapfd(td, i);
-#endif
if (i < fdp->fd_knlistsize) {
FILEDESC_UNLOCK(fdp);
knote_fdclose(td, i);
@@ -1641,10 +1629,6 @@ fdcloseexec(td)
(fdp->fd_ofileflags[i] & UF_EXCLOSE)) {
struct file *fp;
-#if 0
- if (fdp->fd_ofileflags[i] & UF_MAPPED)
- (void) munmapfd(td, i);
-#endif
if (i < fdp->fd_knlistsize) {
FILEDESC_UNLOCK(fdp);
knote_fdclose(td, i);
@@ -2177,10 +2161,6 @@ dupfdopen(td, fdp, indx, dfd, mode, error)
return (EACCES);
}
fp = fdp->fd_ofiles[indx];
-#if 0
- if (fp && fdp->fd_ofileflags[indx] & UF_MAPPED)
- (void) munmapfd(td, indx);
-#endif
fdp->fd_ofiles[indx] = wfp;
fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd];
fhold_locked(wfp);
@@ -2203,10 +2183,6 @@ dupfdopen(td, fdp, indx, dfd, mode, error)
* Steal away the file pointer from dfd and stuff it into indx.
*/
fp = fdp->fd_ofiles[indx];
-#if 0
- if (fp && fdp->fd_ofileflags[indx] & UF_MAPPED)
- (void) munmapfd(td, indx);
-#endif
fdp->fd_ofiles[indx] = fdp->fd_ofiles[dfd];
fdp->fd_ofiles[dfd] = NULL;
fdp->fd_ofileflags[indx] = fdp->fd_ofileflags[dfd];
OpenPOWER on IntegriCloud