diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 00:22:53 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2011-05-20 00:22:53 -0400 |
commit | 257313b2a87795e07a0bdf58d0fffbdba8b31051 (patch) | |
tree | ff5043526b0381cdc1f1f68d3c6f8ed3635e0ddb /security/selinux/include/avc.h | |
parent | 044aea9b83614948c98564000db07d1d32b2d29b (diff) |
selinux: avoid unnecessary avc cache stat hit count
There is no point in counting hits - we can calculate it from the number
of lookups and misses.
This makes the avc statistics a bit smaller, and makes the code
generation better too.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'security/selinux/include/avc.h')
-rw-r--r-- | security/selinux/include/avc.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/security/selinux/include/avc.h b/security/selinux/include/avc.h index e77b2ac2908b..47fda963495d 100644 --- a/security/selinux/include/avc.h +++ b/security/selinux/include/avc.h | |||
@@ -41,7 +41,6 @@ struct sk_buff; | |||
41 | */ | 41 | */ |
42 | struct avc_cache_stats { | 42 | struct avc_cache_stats { |
43 | unsigned int lookups; | 43 | unsigned int lookups; |
44 | unsigned int hits; | ||
45 | unsigned int misses; | 44 | unsigned int misses; |
46 | unsigned int allocations; | 45 | unsigned int allocations; |
47 | unsigned int reclaims; | 46 | unsigned int reclaims; |