1. NAME

write_inode_now - write an inode to disk

2. SYNOPSIS

int write_inode_now(struct inode *  inode , int  sync );

3. ARGUMENTS

inode
    inode to write to disk

sync
    whether the write should be synchronous or not

4. DESCRIPTION

This function commits an inode to disk immediately if it is dirty. This is primarily needed by knfsd.

The caller must either have a ref on the inode or must have set I_WILL_FREE.

5. COPYRIGHT