Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 57451
b: refs/heads/master
c: adba09f
h: refs/heads/master
i:
  57449: 65cc698
  57447: c8d54a0
v: v3
  • Loading branch information
Chris Zankel committed Jun 1, 2007
1 parent 157bcc8 commit 8dc766f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 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: de4f6e5b41bef50fc981410ae8380f27f4e93bf8
refs/heads/master: adba09f01577ea441a761a85aacb1e43b58d35c4
19 changes: 11 additions & 8 deletions trunk/arch/xtensa/kernel/head.S
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
#include <asm/page.h>
#include <asm/cacheasm.h>

#include <linux/linkage.h>

/*
* This module contains the entry code for kernel images. It performs the
* minimal setup needed to call the generic C routines.
Expand Down Expand Up @@ -227,13 +229,14 @@ _startup:
should_never_return:
j should_never_return

/* Define some common data structures here. We define them
* here in this assembly file due to their unusual alignment
* requirements.
*/

.comm swapper_pg_dir,PAGE_SIZE,PAGE_SIZE
.comm empty_bad_page_table,PAGE_SIZE,PAGE_SIZE
.comm empty_bad_page,PAGE_SIZE,PAGE_SIZE
.comm empty_zero_page,PAGE_SIZE,PAGE_SIZE
/*
* BSS section
*/

.section ".bss.page_aligned", "w"
ENTRY(swapper_pg_dir)
.fill PAGE_SIZE, 1, 0
ENTRY(empty_zero_page)
.fill PAGE_SIZE, 1, 0

0 comments on commit 8dc766f

Please sign in to comment.