/* Options for the tracer (see trace_options file) */ staticstruct tracer_opt nop_opts[] = { /* Option that will be accepted by set_flag callback */
{ TRACER_OPT(test_nop_accept, TRACE_NOP_OPT_ACCEPT) }, /* Option that will be refused by set_flag callback */
{ TRACER_OPT(test_nop_refuse, TRACE_NOP_OPT_REFUSE) },
{ } /* Always set a last empty entry */
};
staticstruct tracer_flags nop_flags = { /* You can check your flags value here when you want. */
.val = 0, /* By default: all flags disabled */
.opts = nop_opts
};
/* It only serves as a signal handler and a callback to * accept or refuse the setting of a flag. * If you don't implement it, then the flag setting will be * automatically accepted.
*/ staticint nop_set_flag(struct trace_array *tr, u32 old_flags, u32 bit, int set)
{ /* * Note that you don't need to update nop_flags.val yourself. * The tracing Api will do it automatically if you return 0
*/ if (bit == TRACE_NOP_OPT_ACCEPT) {
printk(KERN_DEBUG "nop_test_accept flag set to %d: we accept." " Now cat trace_options to see the result\n",
set); return 0;
}
if (bit == TRACE_NOP_OPT_REFUSE) {
printk(KERN_DEBUG "nop_test_refuse flag set to %d: we refuse." " Now cat trace_options to see the result\n",
set); return -EINVAL;
}
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.