X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=tests%2Fprobes%2Flttng-test.c;h=d1278183ab417538b7fb654df49a009cf93db712;hb=1aca53e11bbd4a28fb88f8466744abf66447c92f;hp=54be4c7c90a4c89cdfab81fa38c873b451057e80;hpb=db758d11a182e40d01d6ebe3ddf110ba614e6d63;p=lttng-modules.git diff --git a/tests/probes/lttng-test.c b/tests/probes/lttng-test.c index 54be4c7c..d1278183 100644 --- a/tests/probes/lttng-test.c +++ b/tests/probes/lttng-test.c @@ -1,34 +1,21 @@ -/* +/* SPDX-License-Identifier: (GPL-2.0 or LGPL-2.1) + * * lttng-test.c * * Linux Trace Toolkit Next Generation Test Module * * Copyright 2015 Mathieu Desnoyers - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; only - * version 2.1 of the License. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #include #include #include #include +#include #include #include #include -#include #define TP_MODULE_NOAUTOLOAD #define LTTNG_PACKAGE_BUILD @@ -51,12 +38,16 @@ void trace_test_event(unsigned int nr_iter) { int i, netint; long values[] = { 1, 2, 3 }; + uint32_t net_values[] = { 1, 2, 3 }; char text[10] = "test"; char escape[10] = "\\*"; + for (i = 0; i < 3; i++) { + net_values[i] = htonl(net_values[i]); + } for (i = 0; i < nr_iter; i++) { netint = htonl(i); - trace_lttng_test_filter_event(i, netint, values, text, strlen(text), escape); + trace_lttng_test_filter_event(i, netint, values, text, strlen(text), escape, net_values); } } @@ -77,7 +68,7 @@ ssize_t lttng_test_filter_event_write(struct file *file, const char __user *user int ret; /* Get the number of iterations */ - ret = lttng_kstrtouint_from_user(user_buf, count, 10, &nr_iter); + ret = kstrtouint_from_user(user_buf, count, 10, &nr_iter); if (ret) { written = ret; goto end;