The patch titled
sparc: fix build
has been added to the -mm tree. Its filename is
sparc-fix-build.patch
Before you just go and hit "reply", please:
a) Consider who else should be cc'ed
b) Prefer to cc a suitable mailing list as well
c) Ideally: find the original patch on the mailing list and do a
reply-to-all to that, adding suitable additional cc's
*** Remember to use Documentation/SubmitChecklist when testing your code ***
See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this
The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
------------------------------------------------------
Subject: sparc: fix build
From: David Rientjes <[EMAIL PROTECTED]>
Fix build failures on sparc:
In file included from include/linux/mm.h:39,
from include/linux/memcontrol.h:24,
from include/linux/swap.h:8,
from include/linux/suspend.h:7,
from init/do_mounts.c:6:
include/asm/pgtable.h:344: warning: parameter names (without
types) in function declaration
include/asm/pgtable.h:345: warning: parameter names (without
types) in function declaration
include/asm/pgtable.h:346: error: expected '=', ',', ';', 'asm' or
'__attribute__' before '___f___swp_entry'
and
arch/sparc/kernel/led.c: In function 'led_blink':
arch/sparc/kernel/led.c:35: error: invalid use of undefined type
'struct timer_list'
arch/sparc/kernel/led.c:35: error: 'jiffies' undeclared (first use
in this function)
arch/sparc/kernel/led.c:35: error: (Each undeclared identifier is
reported only once
arch/sparc/kernel/led.c:35: error: for each function it appears
in.)
arch/sparc/kernel/led.c:36: error: 'avenrun' undeclared (first use
in this function)
arch/sparc/kernel/led.c:36: error: 'FSHIFT' undeclared (first use
in this function)
arch/sparc/kernel/led.c:36: error: 'HZ' undeclared (first use in
this function)
arch/sparc/kernel/led.c:37: error: invalid use of undefined type
'struct timer_list'
arch/sparc/kernel/led.c:39: error: invalid use of undefined type
'struct timer_list'
arch/sparc/kernel/led.c:40: error: invalid use of undefined type
'struct timer_list'
arch/sparc/kernel/led.c:42: error: implicit declaration of
function 'add_timer'
arch/sparc/kernel/led.c: In function 'led_write_proc':
arch/sparc/kernel/led.c:70: error: implicit declaration of
function 'copy_from_user'
arch/sparc/kernel/led.c:84: error: implicit declaration of
function 'del_timer_sync'
arch/sparc/kernel/led.c: In function 'led_init':
arch/sparc/kernel/led.c:109: error: implicit declaration of
function 'init_timer'
arch/sparc/kernel/led.c:110: error: invalid use of undefined type
'struct timer_list'
Cc: Adrian Bunk <[EMAIL PROTECTED]>
Cc: Robert Reif <[EMAIL PROTECTED]>
Signed-off-by: David Rientjes <[EMAIL PROTECTED]>
Cc: "David S. Miller" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
arch/sparc/kernel/led.c | 3 ++-
include/linux/memcontrol.h | 3 ---
2 files changed, 2 insertions(+), 4 deletions(-)
diff -puN arch/sparc/kernel/led.c~sparc-fix-build arch/sparc/kernel/led.c
--- a/arch/sparc/kernel/led.c~sparc-fix-build
+++ a/arch/sparc/kernel/led.c
@@ -1,8 +1,9 @@
-#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/proc_fs.h>
#include <linux/string.h>
+#include <linux/sched.h>
+#include <linux/uaccess.h>
#include <asm/auxio.h>
diff -puN include/linux/memcontrol.h~sparc-fix-build include/linux/memcontrol.h
--- a/include/linux/memcontrol.h~sparc-fix-build
+++ a/include/linux/memcontrol.h
@@ -20,9 +20,6 @@
#ifndef _LINUX_MEMCONTROL_H
#define _LINUX_MEMCONTROL_H
-#include <linux/rcupdate.h>
-#include <linux/mm.h>
-
struct mem_cgroup;
struct page_cgroup;
struct page;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
memcontrol-add-vm_match_cgroup.patch
sparc-fix-build.patch
mempolicy-silently-restrict-nodemask-to-allowed-nodes-v3.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html