c
void v9fs_evict_inode(struct inode *inode)
{
    if (!IS_ERR_OR_NULL(inode)) {
        truncate_inode_pages_final(&inode->i_data);
    }
}
