diff options
author | Visa Hankala <visa@cvs.openbsd.org> | 2018-06-01 14:16:26 +0000 |
---|---|---|
committer | Visa Hankala <visa@cvs.openbsd.org> | 2018-06-01 14:16:26 +0000 |
commit | 3b4e360793198a5dc5352405a4fa4059928e535f (patch) | |
tree | b65c9d76e402daf759eb2be6e10878886391fb4e | |
parent | 5c58787f71f6f8f471a2e446ca8f5e72ad960a6b (diff) |
Enable witness(4) on select architectures to help the current MP work.
Requested by deraadt@
-rw-r--r-- | sys/arch/amd64/conf/GENERIC.MP | 3 | ||||
-rw-r--r-- | sys/arch/arm64/conf/GENERIC.MP | 3 | ||||
-rw-r--r-- | sys/arch/i386/conf/GENERIC.MP | 3 |
3 files changed, 6 insertions, 3 deletions
diff --git a/sys/arch/amd64/conf/GENERIC.MP b/sys/arch/amd64/conf/GENERIC.MP index 722ace652cc..3d5f9ca6256 100644 --- a/sys/arch/amd64/conf/GENERIC.MP +++ b/sys/arch/amd64/conf/GENERIC.MP @@ -1,8 +1,9 @@ -# $OpenBSD: GENERIC.MP,v 1.11 2014/09/03 07:44:33 blambert Exp $ +# $OpenBSD: GENERIC.MP,v 1.12 2018/06/01 14:16:25 visa Exp $ include "arch/amd64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG +option WITNESS cpu* at mainbus? diff --git a/sys/arch/arm64/conf/GENERIC.MP b/sys/arch/arm64/conf/GENERIC.MP index 02c6d69e100..bdeb22dc496 100644 --- a/sys/arch/arm64/conf/GENERIC.MP +++ b/sys/arch/arm64/conf/GENERIC.MP @@ -1,8 +1,9 @@ -# $OpenBSD: GENERIC.MP,v 1.1 2018/02/20 23:48:23 kettenis Exp $ +# $OpenBSD: GENERIC.MP,v 1.2 2018/06/01 14:16:25 visa Exp $ include "arch/arm64/conf/GENERIC" option MULTIPROCESSOR #option MP_LOCKDEBUG +option WITNESS cpu* at mainbus? diff --git a/sys/arch/i386/conf/GENERIC.MP b/sys/arch/i386/conf/GENERIC.MP index 86aa3cc345b..ff329f4bd30 100644 --- a/sys/arch/i386/conf/GENERIC.MP +++ b/sys/arch/i386/conf/GENERIC.MP @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC.MP,v 1.9 2014/09/03 07:44:33 blambert Exp $ +# $OpenBSD: GENERIC.MP,v 1.10 2018/06/01 14:16:25 visa Exp $ # # GENERIC.MP - sample multiprocessor kernel # @@ -7,5 +7,6 @@ include "arch/i386/conf/GENERIC" option MULTIPROCESSOR # Multiple processor support #option MP_LOCKDEBUG +option WITNESS cpu* at mainbus? |