[Nouveau] [Bug 92870] GF117M nvkm_pmu_pgob fault

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Mon Nov 9 02:11:11 PST 2015


https://bugs.freedesktop.org/show_bug.cgi?id=92870

--- Comment #1 from Ilia Mirkin <imirkin at alum.mit.edu> ---
Interesting. The v4.3 kernel has:

void
nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable)
{
        if (pmu->func->pgob)
                pmu->func->pgob(pmu, enable);
}

But Ben's latest upstream has:

void
nvkm_pmu_pgob(struct nvkm_pmu *pmu, bool enable)
{
        if (pmu && pmu->func->pgob)
                pmu->func->pgob(pmu, enable);
}

And indeed it looks like the GF117 is missing a PMU definition. I have no idea
why that'd be the case, but it was that way before the rewrite as well. The
simplest thing is to fix up that function as above, but I think we may also
want to enable the PMU on GF117.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20151109/fe1ec359/attachment.html>


More information about the Nouveau mailing list