diff options
author | 2016-08-20 19:31:01 +0000 | |
---|---|---|
committer | 2016-08-20 19:31:01 +0000 | |
commit | 8bac4ef8fa1e2d321838a2c518d6b634b82ae913 (patch) | |
tree | 8550efa20d090d5204b7e54fc4fef2557e32a8bd | |
parent | Format string fixes in debug code: need %llx to print 64 bit values (diff) | |
download | wireguard-openbsd-8bac4ef8fa1e2d321838a2c518d6b634b82ae913.tar.xz wireguard-openbsd-8bac4ef8fa1e2d321838a2c518d6b634b82ae913.zip |
Don't set MSGBUFSIZE here such that the setting in <machine/param.h> takes
effect. This will let us have different settings on armv7 and zaurus and
also unconfuses this developer.
ok tom@, deraadt@
-rw-r--r-- | sys/arch/arm/include/param.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sys/arch/arm/include/param.h b/sys/arch/arm/include/param.h index c8dc039f766..de0e3864fa3 100644 --- a/sys/arch/arm/include/param.h +++ b/sys/arch/arm/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.21 2013/06/13 05:13:12 deraadt Exp $ */ +/* $OpenBSD: param.h,v 1.22 2016/08/20 19:31:01 kettenis Exp $ */ /* * Copyright (c) 1994,1995 Mark Brinicombe. @@ -57,10 +57,6 @@ #define NMBCLUSTERS 4096 /* map size, max cluster allocation */ -#ifndef MSGBUFSIZE -#define MSGBUFSIZE (1 * PAGE_SIZE) /* default message buffer size */ -#endif - /* * Maximum size of the kernel malloc arena in PAGE_SIZE-sized * logical pages. |