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