projects
/
linux-2.6
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Merge git://git.kernel.org/pub/scm/linux/kernel/git/czankel/xtensa-2.6
[linux-2.6]
/
arch
/
powerpc
/
kernel
/
vdso64
/
vdso64_wrapper.S
1
#include <linux/init.h>
2
#include <asm/page.h>
3
4
.section ".data.page_aligned"
5
6
.globl vdso64_start, vdso64_end
7
.balign PAGE_SIZE
8
vdso64_start:
9
.incbin "arch/powerpc/kernel/vdso64/vdso64.so"
10
.balign PAGE_SIZE
11
vdso64_end:
12
13
.previous