Commit 2cf64d7c authored by Linus Torvalds's avatar Linus Torvalds

Merge tag 'tomoyo-pr-20200128' of git://git.osdn.net/gitroot/tomoyo/tomoyo-test1

Pull tomoyo update from Tetsuo Handa:
 "One 'int' -> 'atomic_t' conversion patch to suppress KCSAN's warning"

* tag 'tomoyo-pr-20200128' of git://git.osdn.net/gitroot/tomoyo/tomoyo-test1:
  tomoyo: Use atomic_t for statistics counter
parents 740eaf7d a8772fad
...@@ -2322,9 +2322,9 @@ static const char * const tomoyo_memory_headers[TOMOYO_MAX_MEMORY_STAT] = { ...@@ -2322,9 +2322,9 @@ static const char * const tomoyo_memory_headers[TOMOYO_MAX_MEMORY_STAT] = {
[TOMOYO_MEMORY_QUERY] = "query message:", [TOMOYO_MEMORY_QUERY] = "query message:",
}; };
/* Timestamp counter for last updated. */
static unsigned int tomoyo_stat_updated[TOMOYO_MAX_POLICY_STAT];
/* Counter for number of updates. */ /* Counter for number of updates. */
static atomic_t tomoyo_stat_updated[TOMOYO_MAX_POLICY_STAT];
/* Timestamp counter for last updated. */
static time64_t tomoyo_stat_modified[TOMOYO_MAX_POLICY_STAT]; static time64_t tomoyo_stat_modified[TOMOYO_MAX_POLICY_STAT];
/** /**
...@@ -2336,10 +2336,7 @@ static time64_t tomoyo_stat_modified[TOMOYO_MAX_POLICY_STAT]; ...@@ -2336,10 +2336,7 @@ static time64_t tomoyo_stat_modified[TOMOYO_MAX_POLICY_STAT];
*/ */
void tomoyo_update_stat(const u8 index) void tomoyo_update_stat(const u8 index)
{ {
/* atomic_inc(&tomoyo_stat_updated[index]);
* I don't use atomic operations because race condition is not fatal.
*/
tomoyo_stat_updated[index]++;
tomoyo_stat_modified[index] = ktime_get_real_seconds(); tomoyo_stat_modified[index] = ktime_get_real_seconds();
} }
...@@ -2360,7 +2357,7 @@ static void tomoyo_read_stat(struct tomoyo_io_buffer *head) ...@@ -2360,7 +2357,7 @@ static void tomoyo_read_stat(struct tomoyo_io_buffer *head)
for (i = 0; i < TOMOYO_MAX_POLICY_STAT; i++) { for (i = 0; i < TOMOYO_MAX_POLICY_STAT; i++) {
tomoyo_io_printf(head, "Policy %-30s %10u", tomoyo_io_printf(head, "Policy %-30s %10u",
tomoyo_policy_headers[i], tomoyo_policy_headers[i],
tomoyo_stat_updated[i]); atomic_read(&tomoyo_stat_updated[i]));
if (tomoyo_stat_modified[i]) { if (tomoyo_stat_modified[i]) {
struct tomoyo_time stamp; struct tomoyo_time stamp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment