From 02e5228ca05d789e36dbe62a0fbc123d897ce493 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Wed, 9 Feb 2011 18:45:33 +0000 Subject: [PATCH] Setting VV_TEXT here is redundant. It is already set by do_execve(). Reviewed by: kib --- sys/i386/linux/imgact_linux.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/sys/i386/linux/imgact_linux.c b/sys/i386/linux/imgact_linux.c index 2216530d4e9..c4e4b664eb8 100644 --- a/sys/i386/linux/imgact_linux.c +++ b/sys/i386/linux/imgact_linux.c @@ -217,9 +217,6 @@ exec_linux_imgact(struct image_params *imgp) #endif } - /* Indicate that this file should not be modified */ - mp_fixme("Unlocked v_flag access"); - imgp->vp->v_vflag |= VV_TEXT; } /* Fill in process VM information */ vmspace->vm_tsize = round_page(a_out->a_text) >> PAGE_SHIFT;