LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
@ 2008-04-14 18:13 Adrian Bunk
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2008-04-14 18:13 UTC (permalink / raw)
To: linux-kernel; +Cc: Christoph Lameter
Every file should include the headers containing the externs for its
global functions (in this case for sys_move_pages()).
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Christoph Lameter <clameter@sgi.com>
---
This patch has been sent on:
- 31 Mar 2008
- 22 Feb 2008
5624ee2189a0b767e8e474cdd53d8a536dd8f262 diff --git a/mm/migrate.c b/mm/migrate.c
index a73504f..36e1820 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -30,6 +30,7 @@
#include <linux/vmalloc.h>
#include <linux/security.h>
#include <linux/memcontrol.h>
+#include <linux/syscalls.h>
#include "internal.h"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
@ 2008-05-05 18:26 Adrian Bunk
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2008-05-05 18:26 UTC (permalink / raw)
To: linux-kernel; +Cc: Christoph Lameter, Andrew Morton
Every file should include the headers containing the externs for its
global functions (in this case for sys_move_pages()).
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Christoph Lameter <clameter@sgi.com>
---
This patch has been sent on:
- 22 Apr 2008
- 14 Apr 2008
- 31 Mar 2008
- 22 Feb 2008
5624ee2189a0b767e8e474cdd53d8a536dd8f262 diff --git a/mm/migrate.c b/mm/migrate.c
index a73504f..36e1820 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -30,6 +30,7 @@
#include <linux/vmalloc.h>
#include <linux/security.h>
#include <linux/memcontrol.h>
+#include <linux/syscalls.h>
#include "internal.h"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
@ 2008-04-21 21:32 Adrian Bunk
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2008-04-21 21:32 UTC (permalink / raw)
To: linux-kernel; +Cc: Christoph Lameter
Every file should include the headers containing the externs for its
global functions (in this case for sys_move_pages()).
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: Christoph Lameter <clameter@sgi.com>
---
This patch has been sent on:
- 14 Apr 2008
- 31 Mar 2008
- 22 Feb 2008
5624ee2189a0b767e8e474cdd53d8a536dd8f262 diff --git a/mm/migrate.c b/mm/migrate.c
index a73504f..36e1820 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -30,6 +30,7 @@
#include <linux/vmalloc.h>
#include <linux/security.h>
#include <linux/memcontrol.h>
+#include <linux/syscalls.h>
#include "internal.h"
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
2008-03-30 22:48 Adrian Bunk
@ 2008-03-31 18:57 ` Christoph Lameter
0 siblings, 0 replies; 6+ messages in thread
From: Christoph Lameter @ 2008-03-31 18:57 UTC (permalink / raw)
To: Adrian Bunk; +Cc: linux-kernel
Acked-by: Christoph Lameter <clameter@sgi.com>
^ permalink raw reply [flat|nested] 6+ messages in thread
* [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
@ 2008-03-30 22:48 Adrian Bunk
2008-03-31 18:57 ` Christoph Lameter
0 siblings, 1 reply; 6+ messages in thread
From: Adrian Bunk @ 2008-03-30 22:48 UTC (permalink / raw)
To: Christoph Lameter; +Cc: linux-kernel
Every file should include the headers containing the externs for its
global functions (in this case for sys_move_pages()).
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
This patch has been sent on:
- 22 Feb 2008
5624ee2189a0b767e8e474cdd53d8a536dd8f262 diff --git a/mm/migrate.c b/mm/migrate.c
index a73504f..36e1820 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -30,6 +30,7 @@
#include <linux/vmalloc.h>
#include <linux/security.h>
#include <linux/memcontrol.h>
+#include <linux/syscalls.h>
#include "internal.h"
^ permalink raw reply [flat|nested] 6+ messages in thread
* [2.6 patch] mm/migrate.c should #include <linux/syscalls.h>
@ 2008-02-22 19:59 Adrian Bunk
0 siblings, 0 replies; 6+ messages in thread
From: Adrian Bunk @ 2008-02-22 19:59 UTC (permalink / raw)
To: Christoph Lameter; +Cc: linux-kernel
Every file should include the headers containing the externs for its
global functions (in this case for sys_move_pages()).
Signed-off-by: Adrian Bunk <bunk@kernel.org>
---
5624ee2189a0b767e8e474cdd53d8a536dd8f262 diff --git a/mm/migrate.c b/mm/migrate.c
index a73504f..36e1820 100644
--- a/mm/migrate.c
+++ b/mm/migrate.c
@@ -30,6 +30,7 @@
#include <linux/vmalloc.h>
#include <linux/security.h>
#include <linux/memcontrol.h>
+#include <linux/syscalls.h>
#include "internal.h"
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-05-05 18:34 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-14 18:13 [2.6 patch] mm/migrate.c should #include <linux/syscalls.h> Adrian Bunk
-- strict thread matches above, loose matches on Subject: below --
2008-05-05 18:26 Adrian Bunk
2008-04-21 21:32 Adrian Bunk
2008-03-30 22:48 Adrian Bunk
2008-03-31 18:57 ` Christoph Lameter
2008-02-22 19:59 Adrian Bunk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).