1D_INSTANTIATE(9) The Linux VFS D_INSTANTIATE(9)
2
3
4
6 d_instantiate - fill in inode information for a dentry
7
9 void d_instantiate(struct dentry * entry, struct inode * inode);
10
12 entry
13 dentry to complete
14
15 inode
16 inode to attach to this dentry
17
19 Fill in inode information in the entry.
20
21 This turns negative dentries into productive full members of society.
22
23 NOTE! This assumes that the inode count has been incremented (or
24 otherwise set) by the caller to indicate that it is now in use by the
25 dcache.
26
28Kernel Hackers Manual 3.10 June 2019 D_INSTANTIATE(9)