[PATCH] nommu.c build error fix

From: Yoshinori Sato
Date: Mon Mar 28 2005 - 02:38:22 EST


- Argument addition of security_file_mmap.
- Because in_gate_area_no_task undefined with CONFIG_KALLSYM=y, add it.

Signed-off-by: Yoshinori Sato <ysato@xxxxxxxxxxxxxxxxxxxx>

===== mm/nommu.c 1.32 vs edited =====
--- 1.32/mm/nommu.c 2005-03-10 00:12:40 +09:00
+++ edited/mm/nommu.c 2005-03-28 16:21:12 +09:00
@@ -396,6 +396,7 @@
unsigned int vm_flags;
void *result;
int ret, membacked;
+ unsigned long reqprot = prot;

/* do the simple checks first */
if (flags & MAP_FIXED || addr) {
@@ -506,7 +507,7 @@
}

/* allow the security API to have its say */
- ret = security_file_mmap(file, prot, flags);
+ ret = security_file_mmap(file, reqprot, prot, flags);
if (ret)
return ret;

@@ -1061,3 +1062,7 @@
return -ENOMEM;
}

+int in_gate_area_no_task(unsigned long addr)
+{
+ return 0;
+}

--
Yoshinori Sato
<ysato@xxxxxxxxxxxxxxxxxxxx>
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/