Merge Perforce change 93567 from TrustedBSD audit3 branch:

Bump default queue limit for audit pipes from 32 to 128, since 32 is
  pretty small.

Obtained from:	TrustedBSD Project
This commit is contained in:
Robert Watson 2006-03-19 15:38:03 +00:00
parent 17363e6da7
commit 6a4bde1b76
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156883

View file

@ -68,7 +68,7 @@ static MALLOC_DEFINE(M_AUDIT_PIPE_ENTRY, "audit_pipeent",
/*
* Audit pipe buffer parameters.
*/
#define AUDIT_PIPE_QLIMIT_DEFAULT (32)
#define AUDIT_PIPE_QLIMIT_DEFAULT (128)
#define AUDIT_PIPE_QLIMIT_MIN (0)
#define AUDIT_PIPE_QLIMIT_MAX (1024)