X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttng-events.c;h=ee0e7f9056a9a594cb9be70763077fe2598199f7;hb=afbee416289de1de537ae0992e05ac14f85f69fd;hp=3481bd41b73812e5b2188afd2c173e860374beab;hpb=8af1abdc9576e807a15766e8faaadd7010c906ab;p=lttng-modules.git diff --git a/lttng-events.c b/lttng-events.c index 3481bd41..ee0e7f90 100644 --- a/lttng-events.c +++ b/lttng-events.c @@ -1122,8 +1122,8 @@ int lttng_session_list_tracker_pids(struct lttng_session *session) ret = PTR_ERR(tracker_pids_list_file); goto file_error; } - if (atomic_long_add_unless(&session->file->f_count, - 1, INT_MAX) == INT_MAX) { + if (!atomic_long_add_unless(&session->file->f_count, 1, LONG_MAX)) { + ret = -EOVERFLOW; goto refcount_error; } ret = lttng_tracker_pids_list_fops.open(NULL, tracker_pids_list_file);