From c607fe035ea8821a8f4c6ab6f3467ec726e36a63 Mon Sep 17 00:00:00 2001 From: Michael Jeanson Date: Thu, 26 Jan 2017 14:36:45 -0500 Subject: [PATCH 1/1] Fix: Lazily initialize max poll set size in poll compat MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This was applied to the epoll implementation in commit 22dad56815ce0201c5ae7d5ef5d79cc0c6a42c5e Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau --- src/common/compat/compat-poll.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/common/compat/compat-poll.c b/src/common/compat/compat-poll.c index cc280c764..7d4d0e133 100644 --- a/src/common/compat/compat-poll.c +++ b/src/common/compat/compat-poll.c @@ -111,8 +111,9 @@ int compat_poll_create(struct lttng_poll_event *events, int size) } if (!poll_max_size) { - ERR("poll_max_size not initialized yet"); - goto error; + if (lttng_poll_set_max_size()) { + goto error; + } } /* Don't bust the limit here */ -- 2.34.1