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:
Warner Losh 2020-02-07 17:47:08 +00:00
parent e2b81f518a
commit 9133f3d097

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;