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
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357659

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;