diff options
author | 2014-10-07 20:23:31 +0000 | |
---|---|---|
committer | 2014-10-07 20:23:31 +0000 | |
commit | a8232f4adae66db480a4151d59d3f145d2a35214 (patch) | |
tree | 0a045f8b98a5bb6c84da621c590593df76b5c05b /sys/dev/softraid.c | |
parent | fix a critical DDOS in head. use the correct exit code on failure. (diff) | |
download | wireguard-openbsd-a8232f4adae66db480a4151d59d3f145d2a35214.tar.xz wireguard-openbsd-a8232f4adae66db480a4151d59d3f145d2a35214.zip |
remove preliminary AOE (ata over ethernet) support. not finished after
many years and wide spread demand for support never materialized.
time to pack it in.
Diffstat (limited to 'sys/dev/softraid.c')
-rw-r--r-- | sys/dev/softraid.c | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/sys/dev/softraid.c b/sys/dev/softraid.c index 6123598007c..7ff4fae6e89 100644 --- a/sys/dev/softraid.c +++ b/sys/dev/softraid.c @@ -1,4 +1,4 @@ -/* $OpenBSD: softraid.c,v 1.340 2014/09/14 14:17:24 jsg Exp $ */ +/* $OpenBSD: softraid.c,v 1.341 2014/10/07 20:23:32 tedu Exp $ */ /* * Copyright (c) 2007, 2008, 2009 Marco Peereboom <marco@peereboom.us> * Copyright (c) 2008 Chris Kuethe <ckuethe@openbsd.org> @@ -42,11 +42,6 @@ #include <sys/kthread.h> #include <sys/dkio.h> -#ifdef AOE -#include <sys/mbuf.h> -#include <net/if_aoe.h> -#endif /* AOE */ - #include <crypto/cryptodev.h> #include <scsi/scsi_all.h> @@ -3948,16 +3943,6 @@ sr_discipline_init(struct sr_discipline *sd, int level) case 6: sr_raid6_discipline_init(sd); break; -#ifdef AOE - /* AOE target. */ - case 'A': - sr_aoe_server_discipline_init(sd); - break; - /* AOE initiator. */ - case 'a': - sr_aoe_discipline_init(sd); - break; -#endif #ifdef CRYPTO case 'C': sr_crypto_discipline_init(sd); |