Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs

Pull vfs documentation typo fix from Al Viro.

* 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
typo fix: it's d_make_root, not d_make_inode...

+1 -1
+1 -1
Documentation/filesystems/porting
··· 436 436 and also requires no further error handling. Typical usage is: 437 437 438 438 inode = foofs_new_inode(....); 439 - s->s_root = d_make_inode(inode); 439 + s->s_root = d_make_root(inode); 440 440 if (!s->s_root) 441 441 /* Nothing needed for the inode cleanup */ 442 442 return -ENOMEM;