repo.or.cz
/
linux-2.6
/
mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'mini2440-dev-unlikely' into mini2440-dev
[linux-2.6/mini2440.git]
/
include
/
linux
/
path.h
blob
915e0c382a51fad7a3169748664b5e2153fa645e
1
#ifndef _LINUX_PATH_H
2
#define _LINUX_PATH_H
3
4
struct
dentry
;
5
struct
vfsmount
;
6
7
struct
path
{
8
struct
vfsmount
*
mnt
;
9
struct
dentry
*
dentry
;
10
};
11
12
extern
void
path_get
(
struct
path
*);
13
extern
void
path_put
(
struct
path
*);
14
15
#endif
/* _LINUX_PATH_H */