projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
02e5ad9
)
typo fix: it's d_make_root, not d_make_inode...
author
Al Viro
<viro@zeniv.linux.org.uk>
Sun, 21 Jul 2019 03:17:30 +0000
(23:17 -0400)
committer
Al Viro
<viro@zeniv.linux.org.uk>
Sun, 21 Jul 2019 03:17:30 +0000
(23:17 -0400)
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Documentation/filesystems/porting
patch
|
blob
|
history
diff --git
a/Documentation/filesystems/porting
b/Documentation/filesystems/porting
index f6714f7e6bb5cee7e588c08bb894d579cb232d30..d16e2ef7ae0b1265752103c6c0ae674639ec9a03 100644
(file)
--- a/
Documentation/filesystems/porting
+++ b/
Documentation/filesystems/porting
@@
-436,7
+436,7
@@
for the inode. If d_make_root(inode) is passed a NULL inode it returns NULL
and also requires no further error handling. Typical usage is:
inode = foofs_new_inode(....);
- s->s_root = d_make_
inode
(inode);
+ s->s_root = d_make_
root
(inode);
if (!s->s_root)
/* Nothing needed for the inode cleanup */
return -ENOMEM;