diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-09 01:49:21 +0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-10 04:23:45 +0400 |
commit | adc0e91ab142abe93f5b0d7980ada8a7676231fe (patch) | |
tree | 27ee89f960b7e2d6cd5179d914bc252324122c26 /include/linux/dcache.h | |
parent | b48f03b319ba78f3abf9a7044d1f436d8d90f4f9 (diff) | |
download | linux-adc0e91ab142abe93f5b0d7980ada8a7676231fe.tar.xz |
vfs: new helper - d_make_root()
d_alloc_root() with iput() in case of allocation failure...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'include/linux/dcache.h')
-rw-r--r-- | include/linux/dcache.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/dcache.h b/include/linux/dcache.h index ed9f74f6c519..a47bda5f76db 100644 --- a/include/linux/dcache.h +++ b/include/linux/dcache.h @@ -249,6 +249,7 @@ extern int d_invalidate(struct dentry *); /* only used at mount-time */ extern struct dentry * d_alloc_root(struct inode *); +extern struct dentry * d_make_root(struct inode *); /* <clickety>-<click> the ramfs-type tree */ extern void d_genocide(struct dentry *); |