1. NAME

seq_release - free the structures associated with sequential file.

2. SYNOPSIS

int seq_release(struct inode *  inode , struct file *  file );

3. ARGUMENTS

inode
    its inode

file
    file in question

4. DESCRIPTION

Frees the structures associated with sequential file; can be used as ->f_op->release if you donAqt have private data to destroy.

5. COPYRIGHT