X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Futils%2Ftestapp%2Fgen-ust-events-ns%2Fgen-ust-events-ns.c;h=2a3c7a45f38a4e713ed6c963610787367b2ba611;hb=032a3d09c1834efc9e4112cce5f5d58082db08ba;hp=c5f25dd7bb1308cc17f34492052e0d2ed339a7dd;hpb=fe009695f184bc5cc1cf04c98081a940a2f78b7a;p=lttng-tools.git diff --git a/tests/utils/testapp/gen-ust-events-ns/gen-ust-events-ns.c b/tests/utils/testapp/gen-ust-events-ns/gen-ust-events-ns.c index c5f25dd7b..2a3c7a45f 100644 --- a/tests/utils/testapp/gen-ust-events-ns/gen-ust-events-ns.c +++ b/tests/utils/testapp/gen-ust-events-ns/gen-ust-events-ns.c @@ -88,7 +88,7 @@ static void debug_printf(const char *format, ...) static int get_ns_inum(const char *ns, ino_t *ns_inum) { - int ret = 0; + int ret = -1; struct stat sb; char proc_ns_path[LTTNG_PROC_NS_PATH_MAX]; @@ -99,8 +99,7 @@ static int get_ns_inum(const char *ns, ino_t *ns_inum) "/proc/thread-self/ns/%s", ns) >= 0) { if (stat(proc_ns_path, &sb) == 0) { *ns_inum = sb.st_ino; - } else { - ret = -1; + ret = 0; } goto end; } @@ -109,8 +108,7 @@ static int get_ns_inum(const char *ns, ino_t *ns_inum) "/proc/self/task/%d/%s/net", lttng_gettid(), ns) >= 0) { if (stat(proc_ns_path, &sb) == 0) { *ns_inum = sb.st_ino; - } else { - ret = -1; + ret = 0; } goto end; }