svn commit: r218493 - head/sys/i386/linux

Alan Cox alc at FreeBSD.org
Wed Feb 9 18:45:34 UTC 2011


Author: alc
Date: Wed Feb  9 18:45:33 2011
New Revision: 218493
URL: http://svn.freebsd.org/changeset/base/218493

Log:
  Setting VV_TEXT here is redundant.  It is already set by do_execve().
  
  Reviewed by:	kib

Modified:
  head/sys/i386/linux/imgact_linux.c

Modified: head/sys/i386/linux/imgact_linux.c
==============================================================================
--- head/sys/i386/linux/imgact_linux.c	Wed Feb  9 18:09:27 2011	(r218492)
+++ head/sys/i386/linux/imgact_linux.c	Wed Feb  9 18:45:33 2011	(r218493)
@@ -217,9 +217,6 @@ exec_linux_imgact(struct image_params *i
 #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;


More information about the svn-src-head mailing list