projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0d0d0ed
)
[PATCH] uml: remove code controlled by non-existent config option
author
Jeff Dike
<
[email protected]
>
Sat, 10 Feb 2007 09:44:15 +0000
(
01:44
-0800)
committer
Linus Torvalds
<
[email protected]
>
Sun, 11 Feb 2007 18:51:23 +0000
(10:51 -0800)
CONFIG_HOST_TASK_SIZE doesn't exist any more.
Signed-off-by: Jeff Dike <
[email protected]
>
Cc: Paolo 'Blaisorblade' Giarrusso <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/um/kernel/skas/mem.c
patch
|
blob
|
history
diff --git
a/arch/um/kernel/skas/mem.c
b/arch/um/kernel/skas/mem.c
index 0d2cce621134b98e315c958f6addd43a8d0d1bf1..7c18dfcd7d8eee3446457ca928a867136cf880e2 100644
(file)
--- a/
arch/um/kernel/skas/mem.c
+++ b/
arch/um/kernel/skas/mem.c
@@
-14,13
+14,9
@@
unsigned long set_task_sizes_skas(unsigned long *task_size_out)
unsigned long host_task_size = ROUND_4M((unsigned long)
&host_task_size);
-#ifdef CONFIG_HOST_TASK_SIZE
- *host_size_out = ROUND_4M(CONFIG_HOST_TASK_SIZE);
- *task_size_out = CONFIG_HOST_TASK_SIZE;
-#else
if (!skas_needs_stub)
*task_size_out = host_task_size;
else *task_size_out = CONFIG_STUB_START & PGDIR_MASK;
-#endif
+
return host_task_size;
}