On Tue, 2012-09-04 at 17:40 +0100, Pedro Alves wrote:

> BTW, you can also go a step further and remove the need to close with double 
> }},
> with something like:
> 
> #define do_for_each_ftrace_rec(pg, rec)                                       
>    \
>         for (pg = ftrace_pages_start, rec = &pg->records[pg->index];          
>    \
>              pg && rec == &pg->records[pg->index];                            
>    \
>              pg = pg->next)                                                   
>    \
>           for (rec = pg->records; rec < &pg->records[pg->index]; rec++)
> 

Yeah, but why bother? It's hidden in a macro, and the extra '{ }' shows
that this is something "special".

-- Steve


--
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