Re: [PATCH][RFC] vsprintf: unify the format decoding layer for its3 users

From: Andrew Morton
Date: Fri Feb 27 2009 - 03:45:45 EST


On Fri, 27 Feb 2009 09:32:12 +0100 Ingo Molnar <mingo@xxxxxxx> wrote:

>
>
> a printf variant that outputs not into a string buffer but into
> a binary-values buffer.

Oh, OK.

Of course, parsing a printf string (using our
nobody-bothered-optimising-it parser) isn't particularly efficient
either.

Is there a case here for adding a new way of describing how to
serialise the incoming data? Perhaps with a new and simpler control
string or perhaps even

struct ftrace_thing ft;

init_ftrace_thing(&ft, "%d %l %s");
add_ftrace_thing_int(&ft, some_int);
add_ftrace_thing_long(&ft, some_long);
add_ftrace_thing_string(&ft, some_string);
emit_ftrace_thing(&ft);

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