diff options
author | David Howells <dhowells@redhat.com> | 2020-03-13 13:36:01 +0000 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-03-13 23:04:34 +0000 |
commit | 4636cf184d6d9a92a56c2554681ea520dd4fe49a (patch) | |
tree | 89e21956d99479bc04ba4a53dbe1be95bee3901c /include/trace | |
parent | 498b577660f08cef5d9e78e0ed6dcd4c0939e98c (diff) |
afs: Fix some tracing details
Fix a couple of tracelines to indicate the usage count after the atomic op,
not the usage count before it to be consistent with other afs and rxrpc
trace lines.
Change the wording of the afs_call_trace_work trace ID label from "WORK" to
"QUEUE" to reflect the fact that it's queueing work, not doing work.
Fixes: 341f741f04be ("afs: Refcount the afs_call struct")
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'include/trace')
-rw-r--r-- | include/trace/events/afs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/trace/events/afs.h b/include/trace/events/afs.h index 564ba1b5cf57..c612cabbc378 100644 --- a/include/trace/events/afs.h +++ b/include/trace/events/afs.h @@ -233,7 +233,7 @@ enum afs_cb_break_reason { EM(afs_call_trace_get, "GET ") \ EM(afs_call_trace_put, "PUT ") \ EM(afs_call_trace_wake, "WAKE ") \ - E_(afs_call_trace_work, "WORK ") + E_(afs_call_trace_work, "QUEUE") #define afs_server_traces \ EM(afs_server_trace_alloc, "ALLOC ") \ |