diff options
author | phk <phk@FreeBSD.org> | 2003-01-13 08:01:09 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-01-13 08:01:09 +0000 |
commit | 5e19774d3111c57da5b174dd89ceb3ff4534e2b9 (patch) | |
tree | 42decde2692a1d4f335dca87606794b0c41f204c /sys/dev/md/md.c | |
parent | 9eb1dff9ceacff77dc4055136a457d4d2a18a7e5 (diff) | |
download | FreeBSD-src-5e19774d3111c57da5b174dd89ceb3ff4534e2b9.zip FreeBSD-src-5e19774d3111c57da5b174dd89ceb3ff4534e2b9.tar.gz |
Remove the printf which announces the creation of malloc disks: it is
inconsistent when we do not do it for swap or vnode.
We still printf for preloaded disks because of the weak debugging
options people have in embedded/tiny environments where this is
usually used.
Diffstat (limited to 'sys/dev/md/md.c')
-rw-r--r-- | sys/dev/md/md.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/dev/md/md.c b/sys/dev/md/md.c index 0dc0357..733a93d 100644 --- a/sys/dev/md/md.c +++ b/sys/dev/md/md.c @@ -877,7 +877,6 @@ mdcreate_malloc(struct md_ioctl *mdio) } } if (!error) { - printf("%s%d: Malloc disk\n", MD_NAME, sc->unit); mdinit(sc); } else mddestroy(sc, NULL); |