Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Uwe Zeisberger | f30c226 | 2006-10-03 23:01:26 +0200 | [diff] [blame] | 2 | * linux/include/asm-arm26/namei.h |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * |
| 4 | * Routines to handle famous /usr/gnemul |
| 5 | * Derived from the Sparc version of this file |
| 6 | * |
| 7 | * Included from linux/fs/namei.c |
| 8 | */ |
| 9 | |
| 10 | #ifndef __ASMARM_NAMEI_H |
| 11 | #define __ASMARM_NAMEI_H |
| 12 | |
| 13 | #define ARM_BSD_EMUL "usr/gnemul/bsd/" |
| 14 | |
| 15 | static inline char *__emul_prefix(void) |
| 16 | { |
| 17 | switch (current->personality) { |
| 18 | case PER_BSD: |
| 19 | return ARM_BSD_EMUL; |
| 20 | default: |
| 21 | return NULL; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | #endif /* __ASMARM_NAMEI_H */ |