diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-08-20 19:42:56 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2016-08-20 19:42:56 +0000 |
commit | abb725bc035c421c7bfcbd00d031ef5a9fb18167 (patch) | |
tree | 4d9831106b2dffc17e1a05bb5fec20c3c74a616a /sys/arch | |
parent | a03090c0f2121dd66ca984219394f1cd568de347 (diff) |
Increase MSGBUFSIZE to 8 pages.
ok deraadt@
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/armv7/include/param.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/armv7/include/param.h b/sys/arch/armv7/include/param.h index be5c69c5cd2..7ef21258ee0 100644 --- a/sys/arch/armv7/include/param.h +++ b/sys/arch/armv7/include/param.h @@ -1,4 +1,4 @@ -/* $OpenBSD: param.h,v 1.1 2013/09/04 14:38:28 patrick Exp $ */ +/* $OpenBSD: param.h,v 1.2 2016/08/20 19:42:55 kettenis Exp $ */ /* * Copyright (c) 1994,1995 Mark Brinicombe. @@ -41,7 +41,7 @@ #define MACHINE "armv7" #ifndef MSGBUFSIZE -#define MSGBUFSIZE PAGE_SIZE +#define MSGBUFSIZE (8 * PAGE_SIZE) #endif #endif /* _MACHINE_PARAM_H_ */ |