Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 24 Mar 2019 20:51:47 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 236513] Different power states (C1/C2/...) per CPU core
Message-ID:  <bug-236513-227-b1owebbQpE@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-236513-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-236513-227@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D236513

--- Comment #11 from stockhausen@collogia.de ---
Memo for myself: This can only occur if acpi_bus_alloc_gas() fails in
bus_alloc_resource_any():

acpi_bus_alloc_gas()
{
    ...
    error =3D ENOMEM;
    ...
    *res =3D bus_alloc_resource_any(dev, res_type, rid, RF_ACTIVE | flags);
    if (*res !=3D NULL) {
        *type =3D res_type;
        error =3D 0;
    } else
        bus_delete_resource(dev, res_type, *rid);

    return (error);
}

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-236513-227-b1owebbQpE>