am de52ebc3: Merge "libaudit: limit to 5 selinux denials per sec"

* commit 'de52ebc3f97500e7d618c32cf5d627a1beb0ead7':
  libaudit: limit to 5 selinux denials per sec
This commit is contained in:
Nick Kralevich 2015-03-26 22:24:26 +00:00 committed by Android Git Automerger
commit 5e49911c4a

View file

@ -177,7 +177,7 @@ int audit_setup(int fd, uint32_t pid)
*/
status.pid = pid;
status.mask = AUDIT_STATUS_PID | AUDIT_STATUS_RATE_LIMIT;
status.rate_limit = 20; // audit entries per second
status.rate_limit = 5; // audit entries per second
/* Let the kernel know this pid will be registering for audit events */
rc = audit_send(fd, AUDIT_SET, &status, sizeof(status));