1. NAME

ilookup - search for an inode in the inode cache

2. SYNOPSIS

struct inode * ilookup(struct super_block *  sb , unsigned long  ino );

3. ARGUMENTS

sb
    super block of file system to search

ino
    inode number to search for

4. DESCRIPTION

Search for the inode ino in the inode cache, and if the inode is in the cache, the inode is returned with an incremented reference count.

5. COPYRIGHT