···23262326 return dentry;23272327}23282328EXPORT_SYMBOL(simple_start_creating);23292329+23302330+/* parent must have been held exclusive since simple_start_creating() */23312331+void simple_done_creating(struct dentry *child)23322332+{23332333+ inode_unlock(child->d_parent->d_inode);23342334+ dput(child);23352335+}23362336+EXPORT_SYMBOL(simple_done_creating);