diff options
| author | atatat <atatat@NetBSD.org> | 2002-12-11 16:24:38 +0000 |
|---|---|---|
| committer | atatat <atatat@NetBSD.org> | 2002-12-11 16:24:38 +0000 |
| commit | 944cb6f8ffb81c4844a3b8db87cb71fe89da3ccd (patch) | |
| tree | 4635b3ad8e3b183b133dce3a017e1391818f4742 /sys/dev/md.c | |
| parent | cf4eb31ab473042d5803a1d7c1e3ba168fe0b710 (diff) | |
Add /* MEMORY_DISK_SERVER */ comments to the #endifs to match the #ifdefs.
Diffstat (limited to 'sys/dev/md.c')
| -rw-r--r-- | sys/dev/md.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/md.c b/sys/dev/md.c index 110fde45245..af882fb3806 100644 --- a/sys/dev/md.c +++ b/sys/dev/md.c @@ -1,4 +1,4 @@ -/* $NetBSD: md.c,v 1.32 2002/10/23 09:13:03 jdolecek Exp $ */ +/* $NetBSD: md.c,v 1.33 2002/12/11 16:24:38 atatat Exp $ */ /* * Copyright (c) 1995 Gordon W. Ross, Leo Weppelman. @@ -46,7 +46,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: md.c,v 1.32 2002/10/23 09:13:03 jdolecek Exp $"); +__KERNEL_RCSID(0, "$NetBSD: md.c,v 1.33 2002/12/11 16:24:38 atatat Exp $"); #include "opt_md.h" @@ -71,7 +71,7 @@ __KERNEL_RCSID(0, "$NetBSD: md.c,v 1.32 2002/10/23 09:13:03 jdolecek Exp $"); */ #ifndef MEMORY_DISK_SERVER #define MEMORY_DISK_SERVER 1 -#endif +#endif /* MEMORY_DISK_SERVER */ /* * We should use the raw partition for ioctl. @@ -193,7 +193,7 @@ md_attach(parent, self, aux) static int md_server_loop __P((struct md_softc *sc)); static int md_ioctl_server __P((struct md_softc *sc, struct md_conf *umd, struct proc *proc)); -#endif +#endif /* MEMORY_DISK_SERVER */ static int md_ioctl_kalloc __P((struct md_softc *sc, struct md_conf *umd, struct proc *proc)); @@ -413,7 +413,7 @@ mdioctl(dev, cmd, data, flag, proc) #if MEMORY_DISK_SERVER case MD_UMEM_SERVER: return md_ioctl_server(sc, umd, proc); -#endif +#endif /* MEMORY_DISK_SERVER */ default: break; } |
