diff options
author | 2008-06-14 00:16:38 +0000 | |
---|---|---|
committer | 2008-06-14 00:16:38 +0000 | |
commit | 79cdc9424edbb21ecbc6d115fb32952daa0dc058 (patch) | |
tree | 41fe8b6c0982d9b203b83126ff71e12329209b95 /sys/dev/softraid.c | |
parent | When there are no sensors, don't run the hotplugging consistency check, (diff) | |
download | wireguard-openbsd-79cdc9424edbb21ecbc6d115fb32952daa0dc058.tar.xz wireguard-openbsd-79cdc9424edbb21ecbc6d115fb32952daa0dc058.zip |
Update bioctl(8) and softraid(4) to recent changes and enable softraid
crypto. It's still considered experimental!
ok djm marco
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index 4e7117b4b29..6243a8be7bb 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.113 2008/06/13 18:26:59 hshoexer Exp $ */ +/* $OpenBSD: softraid.c,v 1.114 2008/06/14 00:16:38 hshoexer Exp $ */ /* * Copyright (c) 2007 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org> @@ -818,7 +818,6 @@ sr_ioctl_createraid(struct sr_softc *sc, struct bioc_createraid *bc, int user) strlcpy(sd->sd_name, "RAID 1", sizeof(sd->sd_name)); vol_size = ch_entry->src_meta.scm_coerced_size; break; -#if 0 #ifdef CRYPTO case 'C': DNPRINTF(SR_D_IOCTL, @@ -841,7 +840,6 @@ sr_ioctl_createraid(struct sr_softc *sc, struct bioc_createraid *bc, int user) break; #endif /* CRYPTO */ -#endif default: goto unwind; } |