Date: Wed, 9 Feb 2011 18:45:34 +0000 (UTC) From: Alan Cox <alc@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r218493 - head/sys/i386/linux Message-ID: <201102091845.p19IjY3R093844@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201102091845.p19IjY3R093844>