binfmt: remove in-tree usage of MAP_EXECUTABLE
[sfrench/cifs-2.6.git] / fs / binfmt_flat.c
index a1072c6a234143b0b50156820749e9213a0389c3..5d776f80ee50c22ae3eafe48bfaac144c6dae9cf 100644 (file)
@@ -573,7 +573,7 @@ static int load_flat_file(struct linux_binprm *bprm,
                pr_debug("ROM mapping of file (we hope)\n");
 
                textpos = vm_mmap(bprm->file, 0, text_len, PROT_READ|PROT_EXEC,
-                                 MAP_PRIVATE|MAP_EXECUTABLE, 0);
+                                 MAP_PRIVATE, 0);
                if (!textpos || IS_ERR_VALUE(textpos)) {
                        ret = textpos;
                        if (!textpos)