Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / asm-arm26 / namei.h
bloba402d3b9d0f76489ff5ec0f6448a21d47309965b
1 /*
2 * linux/include/asm-arm/namei.h
4 * Routines to handle famous /usr/gnemul
5 * Derived from the Sparc version of this file
7 * Included from linux/fs/namei.c
8 */
10 #ifndef __ASMARM_NAMEI_H
11 #define __ASMARM_NAMEI_H
13 #define ARM_BSD_EMUL "usr/gnemul/bsd/"
15 static inline char *__emul_prefix(void)
17 switch (current->personality) {
18 case PER_BSD:
19 return ARM_BSD_EMUL;
20 default:
21 return NULL;
25 #endif /* __ASMARM_NAMEI_H */