From: Jonathan Rajotte Date: Tue, 13 Mar 2018 16:48:43 +0000 (-0400) Subject: Cleanup: attr is not used by open_ust_stream_fd() X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=commitdiff_plain;h=6beeaa752973127b5bdd682253fe892bcd31d1cd;hp=194dfca0b76448fb6fa1daa28462031a68c138d8 Cleanup: attr is not used by open_ust_stream_fd() Signed-off-by: Jonathan Rajotte Signed-off-by: Jérémie Galarneau --- diff --git a/src/common/ust-consumer/ust-consumer.c b/src/common/ust-consumer/ust-consumer.c index cbad61144..5db2bb43d 100644 --- a/src/common/ust-consumer/ust-consumer.c +++ b/src/common/ust-consumer/ust-consumer.c @@ -407,9 +407,7 @@ error_shm_open: return -1; } -static int open_ust_stream_fd(struct lttng_consumer_channel *channel, - struct ustctl_consumer_channel_attr *attr, - int cpu) +static int open_ust_stream_fd(struct lttng_consumer_channel *channel, int cpu) { char shm_path[PATH_MAX]; int ret; @@ -464,7 +462,7 @@ static int create_ust_channel(struct lttng_consumer_channel *channel, goto error_alloc; } for (i = 0; i < nr_stream_fds; i++) { - stream_fds[i] = open_ust_stream_fd(channel, attr, i); + stream_fds[i] = open_ust_stream_fd(channel, i); if (stream_fds[i] < 0) { ret = -1; goto error_open;