Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 101716
b: refs/heads/master
c: 07630a3
h: refs/heads/master
v: v3
  • Loading branch information
Michael Ellerman authored and Paul Mackerras committed Jul 1, 2008
1 parent 49b8dd5 commit 7d760b5
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 053a858efa46c9ab86363b271374ec02ad2af753
refs/heads/master: 07630a37beefe8e4401c602f04e3e5bcbba50b31
16 changes: 16 additions & 0 deletions trunk/include/asm-powerpc/code-patching.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
* 2 of the License, or (at your option) any later version.
*/

#include <asm/types.h>

/* Flags for create_branch:
* "b" == create_branch(addr, target, 0);
* "ba" == create_branch(addr, target, BRANCH_ABSOLUTE);
Expand All @@ -24,4 +26,18 @@ unsigned int create_branch(const unsigned int *addr,
void patch_branch(unsigned int *addr, unsigned long target, int flags);
void patch_instruction(unsigned int *addr, unsigned int instr);

static inline unsigned long ppc_function_entry(void *func)
{
#ifdef CONFIG_PPC64
/*
* On PPC64 the function pointer actually points to the function's
* descriptor. The first entry in the descriptor is the address
* of the function text.
*/
return ((func_descr_t *)func)->entry;
#else
return (unsigned long)func;
#endif
}

#endif /* _ASM_POWERPC_CODE_PATCHING_H */

0 comments on commit 7d760b5

Please sign in to comment.