summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/coda/coda_fbsd.c4
-rw-r--r--sys/fs/pseudofs/pseudofs.c2
-rw-r--r--sys/fs/unionfs/union_subr.c1
3 files changed, 4 insertions, 3 deletions
diff --git a/sys/fs/coda/coda_fbsd.c b/sys/fs/coda/coda_fbsd.c
index 89d4de0..d3feff0 100644
--- a/sys/fs/coda/coda_fbsd.c
+++ b/sys/fs/coda/coda_fbsd.c
@@ -90,9 +90,9 @@ codadev_modevent(module_t mod, int type, void *data)
case MOD_LOAD:
break;
case MOD_UNLOAD:
- break;
+ return (EBUSY);
default:
- break;
+ return (EOPNOTSUPP);
}
return 0;
}
diff --git a/sys/fs/pseudofs/pseudofs.c b/sys/fs/pseudofs/pseudofs.c
index 872bd8d..22d6286 100644
--- a/sys/fs/pseudofs/pseudofs.c
+++ b/sys/fs/pseudofs/pseudofs.c
@@ -394,7 +394,7 @@ pfs_modevent(module_t mod, int evt, void *arg)
pfs_fileno_unload();
break;
default:
- printf("pseudofs: unexpected event type %d\n", evt);
+ return EOPNOTSUPP;
break;
}
return 0;
diff --git a/sys/fs/unionfs/union_subr.c b/sys/fs/unionfs/union_subr.c
index 8d05f8c..99b86ea 100644
--- a/sys/fs/unionfs/union_subr.c
+++ b/sys/fs/unionfs/union_subr.c
@@ -1363,6 +1363,7 @@ union_modevent(module_t mod, int type, void *data)
union_dircheckp = NULL;
break;
default:
+ return EOPNOTSUPP;
break;
}
return 0;
OpenPOWER on IntegriCloud