Use dest field type instead of src for serialization output
[lttng-modules.git] / ltt-events.c
index 603170682a822dea830830cf0ec155e5651b124b..b8dbec69a2dfb40cb8d38c73092fbf81389c913c 100644 (file)
@@ -124,7 +124,6 @@ struct ltt_channel *ltt_channel_create(struct ltt_session *session,
                       transport_name);
                goto notransport;
        }
-       printk("got transport\n");
        chan = kzalloc(sizeof(struct ltt_channel), GFP_KERNEL);
        if (!chan)
                goto nomem;
@@ -133,7 +132,6 @@ struct ltt_channel *ltt_channel_create(struct ltt_session *session,
        chan->chan = transport->ops.channel_create("[lttng]", session, buf_addr,
                        subbuf_size, num_subbuf, switch_timer_interval,
                        read_timer_interval);
-       printk("chan create %p\n", chan->chan);
        if (!chan->chan)
                goto create_error;
        chan->ops = &transport->ops;
This page took 0.022536 seconds and 4 git commands to generate.