1. NAME

iput - put an inode

2. SYNOPSIS

void iput(struct inode *  inode );

3. ARGUMENTS

inode
    inode to put

4. DESCRIPTION

Puts an inode, dropping its usage count. If the inode use count hits zero, the inode is then freed and may also be destroyed.

Consequently, iput can sleep.

5. COPYRIGHT