diff options
author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2016-11-30 17:04:42 +0000 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2016-11-30 22:04:18 +0100 |
commit | 4277fbaec2222c075472ff0ab82c4611c6323a30 (patch) | |
tree | 4ffd13beeaacbdf6da10326c209779d0aec8f805 /package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch | |
parent | c72cca94b81a18b8a5d7debd1d0e15cef55c65c6 (diff) | |
download | buildroot-4277fbaec2222c075472ff0ab82c4611c6323a30.tar.gz buildroot-4277fbaec2222c075472ff0ab82c4611c6323a30.zip |
lttng-tools: bump version to 2.9.0
Drop sha256 hash. The combination of md5 and sha1 hashes is enough.
Remove upstream patches:
- 0001-Fix-snapshot-del-output-with-name-on-musl.patch
https://github.com/lttng/lttng-tools/commit/07f5023712313d73ab3feac62390a2d50457b7aa
- 0002-Fix-strerror_r-behavior-is-glibc-specific.patch
https://github.com/lttng/lttng-tools/commit/b6dacfe27a91af50a1f81a2a7eadf4f34ca75769
- 0003-Set-thread-stack-size-to-ulimit-soft-value.patch
https://github.com/lttng/lttng-tools/commit/1a1a34b40ab10a195633b1ed5e2e9b42fdae0a78
Release notes:
https://lists.lttng.org/pipermail/lttng-dev/2016-November/026763.html
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch')
-rw-r--r-- | package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch b/package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch deleted file mode 100644 index 102a02bef5..0000000000 --- a/package/lttng-tools/0001-Fix-snapshot-del-output-with-name-on-musl.patch +++ /dev/null @@ -1,32 +0,0 @@ -From: mjeanson@efficios.com Michael Jeanson -Date: Wed, 15 Jun 2016 17:18:02 -0400 -Subject: [lttng-dev] [PATCH] Fix: snapshot del-output with name on musl - -Some implementations of strtol() like the one in musl will -return EINVAL in perror when no valid number was found in -the string. - -Signed-off-by: Michael Jeanson <mjeanson@efficios.com> -[Philippe: grabbed from the mailing list: - https://lists.lttng.org/pipermail/lttng-dev/2016-June/026192.html - and adapted to 2.8.2.] -Signed-off-by: Philippe Proulx <eeppeliteloop@gmail.com> ---- - src/bin/lttng/commands/snapshot.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/bin/lttng/commands/snapshot.c b/src/bin/lttng/commands/snapshot.c -index d948226..00aa5b7 100644 ---- a/src/bin/lttng/commands/snapshot.c -+++ b/src/bin/lttng/commands/snapshot.c -@@ -447,7 +447,7 @@ static int cmd_del_output(int argc, const char **argv) - - errno = 0; - id = strtol(argv[1], &name, 10); -- if (id == 0 && errno == 0) { -+ if (id == 0 && (errno == 0 || errno == EINVAL)) { - if (lttng_opt_mi) { - ret = mi_del_output(UINT32_MAX, name); - } else { --- -2.7.4 |