mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-14 10:09:48 +00:00
Merge Perforce change 93570 from TrustedBSD audit3 branch:
Add audit pipe ioctls to query minimum and maximum audit queue lengths. Obtained from: TrustedBSD Project
This commit is contained in:
parent
6a4bde1b76
commit
059c649508
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=156884
@ -457,6 +457,16 @@ audit_pipe_ioctl(struct cdev *dev, u_long cmd, caddr_t data, int flag,
|
||||
error = EINVAL;
|
||||
break;
|
||||
|
||||
case AUDITPIPE_GET_QLIMIT_MIN:
|
||||
*(u_int *)data = AUDIT_PIPE_QLIMIT_MIN;
|
||||
error = 0;
|
||||
break;
|
||||
|
||||
case AUDITPIPE_GET_QLIMIT_MAX:
|
||||
*(u_int *)data = AUDIT_PIPE_QLIMIT_MAX;
|
||||
error = 0;
|
||||
break;
|
||||
|
||||
case AUDITPIPE_GET_INSERTS:
|
||||
*(u_int *)data = ap->ap_inserts;
|
||||
error = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user