| .. | .. |
|---|
| 35 | 35 | __entry->gfp_flags = gfp_flags; |
|---|
| 36 | 36 | ), |
|---|
| 37 | 37 | |
|---|
| 38 | | - TP_printk("call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s", |
|---|
| 39 | | - __entry->call_site, |
|---|
| 38 | + TP_printk("call_site=%pS ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s", |
|---|
| 39 | + (void *)__entry->call_site, |
|---|
| 40 | 40 | __entry->ptr, |
|---|
| 41 | 41 | __entry->bytes_req, |
|---|
| 42 | 42 | __entry->bytes_alloc, |
|---|
| .. | .. |
|---|
| 88 | 88 | __entry->node = node; |
|---|
| 89 | 89 | ), |
|---|
| 90 | 90 | |
|---|
| 91 | | - TP_printk("call_site=%lx ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d", |
|---|
| 92 | | - __entry->call_site, |
|---|
| 91 | + TP_printk("call_site=%pS ptr=%p bytes_req=%zu bytes_alloc=%zu gfp_flags=%s node=%d", |
|---|
| 92 | + (void *)__entry->call_site, |
|---|
| 93 | 93 | __entry->ptr, |
|---|
| 94 | 94 | __entry->bytes_req, |
|---|
| 95 | 95 | __entry->bytes_alloc, |
|---|
| .. | .. |
|---|
| 131 | 131 | __entry->ptr = ptr; |
|---|
| 132 | 132 | ), |
|---|
| 133 | 133 | |
|---|
| 134 | | - TP_printk("call_site=%lx ptr=%p", __entry->call_site, __entry->ptr) |
|---|
| 134 | + TP_printk("call_site=%pS ptr=%p", |
|---|
| 135 | + (void *)__entry->call_site, __entry->ptr) |
|---|
| 135 | 136 | ); |
|---|
| 136 | 137 | |
|---|
| 137 | 138 | DEFINE_EVENT(kmem_free, kfree, |
|---|