diff options
| author | Marcin Cieslak <saper@saper.info> | 2026-02-25 01:58:59 +0000 |
|---|---|---|
| committer | John Baldwin <jhb@FreeBSD.org> | 2026-04-24 15:43:30 +0000 |
| commit | 92d9d996538bd6bdb1e6d35a7e5c13a7d0b24134 (patch) | |
| tree | e00e8cbc25d61b96684ce22626b432cb2c6f1b6c /lib | |
| parent | 249c230d754660747f5658111592209c181f3a49 (diff) | |
Do not fail 'devctl clear driver' if another driver is not found
Detaching the bhyve(4) ppt driver from an unsupported PCI device
should not raise a "Device not configured" error. We do not expect
that a new driver must take over the device in this case.
Reviewed by: imp, jhb
Differential Revision: https://reviews.freebsd.org/D52050
(cherry picked from commit fba56be09f1c344cc5805b898fbfef6066950942)
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/libdevctl/devctl.3 | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libdevctl/devctl.3 b/lib/libdevctl/devctl.3 index c8a4704825c2..94fe350e524b 100644 --- a/lib/libdevctl/devctl.3 +++ b/lib/libdevctl/devctl.3 @@ -22,7 +22,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd April 4, 2019 +.Dd February 24, 2026 .Dt DEVCTL 3 .Os .Sh NAME @@ -193,6 +193,7 @@ is true, the device will be detached from its current device driver. After the device's name is reset, it is reprobed and attached to a suitable device driver if one is found. +If no suitable device driver is found, no error is reported. .Pp The .Fn devctl_rescan |
