]> Pileus Git - ~andy/linux/commit
C6X: add support to build with BINFMT_ELF_FDPIC
authorMark Salter <msalter@redhat.com>
Mon, 23 Apr 2012 14:02:08 +0000 (10:02 -0400)
committerMark Salter <msalter@redhat.com>
Tue, 15 May 2012 13:17:34 +0000 (09:17 -0400)
commitfce244762775f662f5a278a05a6e494b6e4f2774
tree4cc7c031181760963f73570c12cec1449011dbb8
parent18d14704d66f651395a68c8a70c86f0a22bccb31
C6X: add support to build with BINFMT_ELF_FDPIC

C6x userspace supports a shared library mechanism called DSBT for systems with
no MMU. DSBT is similar to FDPIC in allowing shared text segments and private
copies of data segments without an MMU. Both methods access data using a base
register and offset. With FDPIC, the caller of an external function sets up the
base register for the callee. With DSBT, the called function sets up its own
base register. Other details differ but both userspaces need the same thing
from the kernel loader: a map of where each ELF segment was loaded. The FDPIC
loader already provides this, so DSBT just uses it.

This patch enables BINFMT_ELF_FDPIC by default for C6X and provides the
necessary architecture hooks for the generic loader.

Signed-off-by: Mark Salter <msalter@redhat.com>
arch/c6x/include/asm/elf.h
arch/c6x/include/asm/mmu.h
arch/c6x/include/asm/ptrace.h
fs/Kconfig.binfmt