1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/*
* linux/include/asm-mips/namei.h
*
* Included from linux/fs/namei.c
*/
#ifndef __ASM_MIPS_NAMEI_H
#define __ASM_MIPS_NAMEI_H
#include <linux/config.h>
#ifdef CONFIG_BINFMT_IRIX
/* Only one at this time. */
#define IRIX32_EMUL "/usr/gnemul/irix"
#define translate_namei(pathname, base, follow_links, res_inode) ({ \
if ((current->personality == PER_IRIX32) && !base && *pathname == '/') { \
struct inode *emul_ino; \
int namelen; \
const char *name; \
\
while (*pathname == '/') \
pathname++; \
current->fs->root->i_count++; \
if (dir_namei (IRIX32_EMUL, \
&namelen, &name, current->fs->root, &emul_ino) >= 0 && emul_ino) { \
*res_inode = NULL; \
if (_namei (pathname, emul_ino, follow_links, res_inode) >= 0 && *res_inode) \
return 0; \
} \
base = current->fs->root; \
base->i_count++; \
} \
})
#define translate_open_namei(pathname, flag, mode, res_inode, base) ({ \
if ((current->personality == PER_IRIX32) && !base && *pathname == '/') { \
struct inode *emul_ino; \
int namelen; \
const char *name; \
\
while (*pathname == '/') \
pathname++; \
current->fs->root->i_count++; \
if (dir_namei (IRIX32_EMUL, \
&namelen, &name, current->fs->root, &emul_ino) >= 0 && emul_ino) { \
*res_inode = NULL; \
if (open_namei (pathname, flag, mode, res_inode, emul_ino) >= 0 && *res_inode) \
return 0; \
} \
base = current->fs->root; \
base->i_count++; \
} \
})
#else /* !defined(CONFIG_BINFMT_IRIX) */
#define translate_namei(pathname, base, follow_links, res_inode) \
do { } while (0)
#define translate_open_namei(pathname, flag, mode, res_inode, base) \
do { } while (0)
#endif /* !defined(CONFIG_BINFMT_IRIX) */
#endif /* __ASM_MIPS_NAMEI_H */
|