Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 556282 | Differences between
and this patch

Collapse All | Expand All

(-)usr.orig/src/nv/nv.c (-3 / +3 lines)
Lines 2298-2304 Link Here
2298
2298
2299
    nvl = NVL_FROM_FILEP(file);
2299
    nvl = NVL_FROM_FILEP(file);
2300
2300
2301
    if (NV_IS_CONTROL_DEVICE(file->f_dentry->d_inode))
2301
    if (NV_IS_CONTROL_DEVICE(file->f_path.dentry->d_inode))
2302
        return nv_kern_ctl_poll(file, wait);
2302
        return nv_kern_ctl_poll(file, wait);
2303
2303
2304
    nvfp = NV_GET_NVFP(file);
2304
    nvfp = NV_GET_NVFP(file);
Lines 2493-2499 Link Here
2493
    unsigned long i_arg
2493
    unsigned long i_arg
2494
)
2494
)
2495
{
2495
{
2496
    return nv_kern_ioctl(file->f_dentry->d_inode, file, cmd, i_arg);
2496
    return nv_kern_ioctl(file->f_path.dentry->d_inode, file, cmd, i_arg);
2497
}
2497
}
2498
2498
2499
long nv_kern_compat_ioctl(
2499
long nv_kern_compat_ioctl(
Lines 2502-2508 Link Here
2502
    unsigned long i_arg
2502
    unsigned long i_arg
2503
)
2503
)
2504
{
2504
{
2505
    return nv_kern_ioctl(file->f_dentry->d_inode, file, cmd, i_arg);
2505
    return nv_kern_ioctl(file->f_path.dentry->d_inode, file, cmd, i_arg);
2506
}
2506
}
2507
2507
2508
/*
2508
/*

Return to bug 556282