|
@@ -22,7 +22,7 @@ TRACE_EVENT(add_device_randomness,
|
|
__entry->IP = IP;
|
|
__entry->IP = IP;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("bytes %d caller %pF",
|
|
|
|
|
|
+ TP_printk("bytes %d caller %pS",
|
|
__entry->bytes, (void *)__entry->IP)
|
|
__entry->bytes, (void *)__entry->IP)
|
|
);
|
|
);
|
|
|
|
|
|
@@ -43,7 +43,7 @@ DECLARE_EVENT_CLASS(random__mix_pool_bytes,
|
|
__entry->IP = IP;
|
|
__entry->IP = IP;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("%s pool: bytes %d caller %pF",
|
|
|
|
|
|
+ TP_printk("%s pool: bytes %d caller %pS",
|
|
__entry->pool_name, __entry->bytes, (void *)__entry->IP)
|
|
__entry->pool_name, __entry->bytes, (void *)__entry->IP)
|
|
);
|
|
);
|
|
|
|
|
|
@@ -82,7 +82,7 @@ TRACE_EVENT(credit_entropy_bits,
|
|
),
|
|
),
|
|
|
|
|
|
TP_printk("%s pool: bits %d entropy_count %d entropy_total %d "
|
|
TP_printk("%s pool: bits %d entropy_count %d entropy_total %d "
|
|
- "caller %pF", __entry->pool_name, __entry->bits,
|
|
|
|
|
|
+ "caller %pS", __entry->pool_name, __entry->bits,
|
|
__entry->entropy_count, __entry->entropy_total,
|
|
__entry->entropy_count, __entry->entropy_total,
|
|
(void *)__entry->IP)
|
|
(void *)__entry->IP)
|
|
);
|
|
);
|
|
@@ -207,7 +207,7 @@ DECLARE_EVENT_CLASS(random__get_random_bytes,
|
|
__entry->IP = IP;
|
|
__entry->IP = IP;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("nbytes %d caller %pF", __entry->nbytes, (void *)__entry->IP)
|
|
|
|
|
|
+ TP_printk("nbytes %d caller %pS", __entry->nbytes, (void *)__entry->IP)
|
|
);
|
|
);
|
|
|
|
|
|
DEFINE_EVENT(random__get_random_bytes, get_random_bytes,
|
|
DEFINE_EVENT(random__get_random_bytes, get_random_bytes,
|
|
@@ -242,7 +242,7 @@ DECLARE_EVENT_CLASS(random__extract_entropy,
|
|
__entry->IP = IP;
|
|
__entry->IP = IP;
|
|
),
|
|
),
|
|
|
|
|
|
- TP_printk("%s pool: nbytes %d entropy_count %d caller %pF",
|
|
|
|
|
|
+ TP_printk("%s pool: nbytes %d entropy_count %d caller %pS",
|
|
__entry->pool_name, __entry->nbytes, __entry->entropy_count,
|
|
__entry->pool_name, __entry->nbytes, __entry->entropy_count,
|
|
(void *)__entry->IP)
|
|
(void *)__entry->IP)
|
|
);
|
|
);
|