Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 213288
b: refs/heads/master
c: a8a6aa0
h: refs/heads/master
v: v3
  • Loading branch information
Greg Ungerer authored and Geert Uytterhoeven committed Oct 22, 2010
1 parent ffaf240 commit 0e67e52
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 03e4012c6df858ace45bd8571be59d0c6021ad55
refs/heads/master: a8a6aa0f060e98f9af170c0905d3d5af3b3fa21d
6 changes: 0 additions & 6 deletions trunk/arch/m68k/include/asm/page_mm.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,6 @@

#include <asm/setup.h>

#if PAGE_SHIFT < 13
#define THREAD_SIZE (8192)
#else
#define THREAD_SIZE PAGE_SIZE
#endif

#ifndef __ASSEMBLY__

#include <linux/compiler.h>
Expand Down
5 changes: 5 additions & 0 deletions trunk/arch/m68k/include/asm/thread_info_mm.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,11 @@ struct thread_info {
}

/* THREAD_SIZE should be 8k, so handle differently for 4k and 8k machines */
#if PAGE_SHIFT < 13
#define THREAD_SIZE (8192)
#else
#define THREAD_SIZE PAGE_SIZE
#endif
#define THREAD_SIZE_ORDER (13 - PAGE_SHIFT)

#define init_thread_info (init_task.thread.info)
Expand Down

0 comments on commit 0e67e52

Please sign in to comment.