mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 16:54:20 +08:00
deac93df26
It was introduced by "vsprintf: add support for '%pS' and '%pF' pointer
formats" in commit 0fe1ef24f7
. However,
the current way its coded doesn't work on parisc64. For two reasons: 1)
parisc isn't in the #ifdef and 2) parisc has a different format for
function descriptors
Make dereference_function_descriptor() more accommodating by allowing
architecture overrides. I put the three overrides (for parisc64, ppc64
and ia64) in arch/kernel/module.c because that's where the kernel
internal linker which knows how to deal with function descriptors sits.
Signed-off-by: James Bottomley <James.Bottomley@HansenPartnership.com>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Acked-by: Tony Luck <tony.luck@intel.com>
Acked-by: Kyle McMartin <kyle@mcmartin.ca>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
244 B
C
13 lines
244 B
C
#ifndef _PARISC_SECTIONS_H
|
|
#define _PARISC_SECTIONS_H
|
|
|
|
/* nothing to see, move along */
|
|
#include <asm-generic/sections.h>
|
|
|
|
#ifdef CONFIG_64BIT
|
|
#undef dereference_function_descriptor
|
|
void *dereference_function_descriptor(void *);
|
|
#endif
|
|
|
|
#endif
|