lkml.org 
[lkml]   [2013]   [Jan]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCHv4 3/8] gpu: host1x: Add channel support
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


\
 
 \ /
  Last update: 2013-01-02 11:01    [W:0.144 / U:0.004 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site