1. NAME

d_add_unique - add dentry to hash queues without aliasing

2. SYNOPSIS

struct dentry * d_add_unique(struct dentry *  entry , struct inode *  inode );

3. ARGUMENTS

entry
    dentry to add

inode
    The inode to attach to this dentry

4. DESCRIPTION

This adds the entry to the hash queues and initializes inode. The entry was actually filled in earlier during d_alloc.

5. COPYRIGHT