summaryrefslogtreecommitdiff
path: root/include/trace/events/random.h
diff options
context:
space:
mode:
authorJohn Denker <jsd@av8n.com>2013-10-15 13:01:29 -0700
committerJohn Denker <jsd@av8n.com>2013-10-18 05:33:22 -0700
commita0d687b7edac40d6ebf9537d3c7500848946a179 (patch)
treed19314dfd408c0e2f36196bdd83bcdfaebfba65e /include/trace/events/random.h
parent8dc7be5e5db5532dfe28aa5329a91939c823e37a (diff)
things that aren't entropy shouldn't be called entropy
Diffstat (limited to 'include/trace/events/random.h')
-rw-r--r--include/trace/events/random.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/trace/events/random.h b/include/trace/events/random.h
index 422df19..2825208 100644
--- a/include/trace/events/random.h
+++ b/include/trace/events/random.h
@@ -86,7 +86,7 @@ TRACE_EVENT(get_random_bytes,
TP_printk("nbytes %d caller %pF", __entry->nbytes, (void *)__entry->IP)
);
-DECLARE_EVENT_CLASS(random__extract_entropy,
+DECLARE_EVENT_CLASS(random__extract_rnd,
TP_PROTO(const char *pool_name, int nbytes, int entropy_count,
unsigned long IP),
@@ -112,14 +112,14 @@ DECLARE_EVENT_CLASS(random__extract_entropy,
);
-DEFINE_EVENT(random__extract_entropy, extract_entropy,
+DEFINE_EVENT(random__extract_rnd, extract_rnd,
TP_PROTO(const char *pool_name, int nbytes, int entropy_count,
unsigned long IP),
TP_ARGS(pool_name, nbytes, entropy_count, IP)
);
-DEFINE_EVENT(random__extract_entropy, extract_entropy_user,
+DEFINE_EVENT(random__extract_rnd, extract_rnd_user,
TP_PROTO(const char *pool_name, int nbytes, int entropy_count,
unsigned long IP),