.. | .. |
---|
22 | 22 | |
---|
23 | 23 | #include <linux/tracepoint.h> |
---|
24 | 24 | |
---|
25 | | -/** |
---|
| 25 | +/* |
---|
26 | 26 | * i40e_trace() macro enables shared code to refer to trace points |
---|
27 | 27 | * like: |
---|
28 | 28 | * |
---|
.. | .. |
---|
112 | 112 | i40e_rx_template, |
---|
113 | 113 | |
---|
114 | 114 | TP_PROTO(struct i40e_ring *ring, |
---|
115 | | - union i40e_32byte_rx_desc *desc, |
---|
| 115 | + union i40e_16byte_rx_desc *desc, |
---|
116 | 116 | struct sk_buff *skb), |
---|
117 | 117 | |
---|
118 | 118 | TP_ARGS(ring, desc, skb), |
---|
.. | .. |
---|
140 | 140 | DEFINE_EVENT( |
---|
141 | 141 | i40e_rx_template, i40e_clean_rx_irq, |
---|
142 | 142 | TP_PROTO(struct i40e_ring *ring, |
---|
143 | | - union i40e_32byte_rx_desc *desc, |
---|
| 143 | + union i40e_16byte_rx_desc *desc, |
---|
144 | 144 | struct sk_buff *skb), |
---|
145 | 145 | |
---|
146 | 146 | TP_ARGS(ring, desc, skb)); |
---|
.. | .. |
---|
148 | 148 | DEFINE_EVENT( |
---|
149 | 149 | i40e_rx_template, i40e_clean_rx_irq_rx, |
---|
150 | 150 | TP_PROTO(struct i40e_ring *ring, |
---|
151 | | - union i40e_32byte_rx_desc *desc, |
---|
| 151 | + union i40e_16byte_rx_desc *desc, |
---|
152 | 152 | struct sk_buff *skb), |
---|
153 | 153 | |
---|
154 | 154 | TP_ARGS(ring, desc, skb)); |
---|