diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-04-13 09:02:06 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 2003-04-13 09:02:06 +0000 |
commit | 3924ad705e6cf5a5fa4108ba44859936c92c25f6 (patch) | |
tree | 7e373e1543fdcdee14db44b0c4513544d165797c /sys/geom/geom_vol_ffs.c | |
parent | 82fdc5e61b131d9fa5ba1c08c4d6eb8b81ee047b (diff) | |
download | src-3924ad705e6cf5a5fa4108ba44859936c92c25f6.tar.gz src-3924ad705e6cf5a5fa4108ba44859936c92c25f6.zip |
Time has run from the "run GEOM in userland" harness, and the new regression
test is built to test GEOM as running in the kernel.
This commit is basically "unifdef -D_KERNEL" to remove the mainly #include
related code to support the userland-harness.
Notes
Notes:
svn path=/head/; revision=113432
Diffstat (limited to 'sys/geom/geom_vol_ffs.c')
-rw-r--r-- | sys/geom/geom_vol_ffs.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sys/geom/geom_vol_ffs.c b/sys/geom/geom_vol_ffs.c index 9b320fb13f78..a01af4dc7af5 100644 --- a/sys/geom/geom_vol_ffs.c +++ b/sys/geom/geom_vol_ffs.c @@ -28,21 +28,12 @@ #include <sys/param.h> #include <sys/errno.h> -#ifndef _KERNEL -#include <stdio.h> -#include <string.h> -#include <signal.h> -#include <sys/param.h> -#include <stdlib.h> -#include <err.h> -#else #include <sys/systm.h> #include <sys/kernel.h> #include <sys/malloc.h> #include <sys/bio.h> #include <sys/lock.h> #include <sys/mutex.h> -#endif #include <ufs/ufs/dinode.h> #include <ufs/ffs/fs.h> |