On 22.12.2012 06:17, Steven Rostedt wrote:
> On Fri, 2012-12-21 at 13:39 +0200, Terje Bergstrom wrote:
>> +TRACE_EVENT(host1x_cdma_begin,
>> +    TP_PROTO(const char *name),
>> +
>> +    TP_ARGS(name),
>> +
>> +    TP_STRUCT__entry(
>> +            __field(const char *, name)
>> +    ),
>> +
>> +    TP_fast_assign(
>> +            __entry->name = name;
>> +    ),
>> +
>> +    TP_printk("name=%s",
>> +            __entry->name)
>> +);
>> +
>> +TRACE_EVENT(host1x_cdma_end,
>> +    TP_PROTO(const char *name),
>> +
>> +    TP_ARGS(name),
>> +
>> +    TP_STRUCT__entry(
>> +            __field(const char *, name)
>> +    ),
>> +
>> +    TP_fast_assign(
>> +            __entry->name = name;
>> +    ),
>> +
>> +    TP_printk("name=%s",
>> +            __entry->name)
>> +);
> 
> The above two should be combined into a DECLARE_EVENT_CLASS() and
> DEFINE_EVENT()s. Saves text and data space that way.

Will do.

(...)
> If you can combine any of these others into DECLARE_EVENT_CLASS() and
> DEFINE_EVENT()s, please do.

I didn't find others with same parameters.

Thanks!

Terje
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to