Supress not supported message

For the moment, supress the operation not supported messages at this level.  In
the fullness of time, we will have better error tracking so we can diagnose
issues in the future.

Reviewed by: scottl@
This commit is contained in:
imp 2020-02-07 17:47:08 +00:00
parent b1518984f9
commit 2ae8935cbe

View File

@ -139,7 +139,7 @@ g_vfs_done(struct bio *bip)
cp = bip->bio_from;
sc = cp->geom->softc;
if (bip->bio_error)
if (bip->bio_error && bip->bio_error != EOPNOTSUPP)
g_print_bio("g_vfs_done():", bip, "error = %d",
bip->bio_error);
bp->b_error = bip->bio_error;