Name Status Project Last Modified Last Commit
lp://staging/~lttng/babeltrace/packaging-daily 1 Development babeltrace 2016-04-23 14:51:52 UTC
40. Add libelf and libdw builddeps

Author: Michael Jeanson
Revision Date: 2016-04-23 14:51:52 UTC

Add libelf and libdw builddeps

lp://staging/~lttng/babeltrace/trunk 1 Development babeltrace 2023-10-19 15:02:02 UTC
4514. fix: test_message_iterator.py hangs o...

Author: Simon Marchi
Revision Date: 2023-10-19 15:02:02 UTC

fix: test_message_iterator.py hangs on Python 3.12

Starting with Python 3.12, `None` is immortal: its refcount operations
are NO-OP and sys.getrefcount() will return a static value of UINT_MAX
on 64-bit and UINT_MAX >> 2 on 32-bit.

This basically transform `test_try_again_many_times` in an almost
infinite loop and hangs the testsuite.

Detect this by checking if the refcount on `None` is incremented after
assigning to a variable and skip the test if it's not the case.

See PEP-0683[1] for the gory details.

[1] https://peps.python.org/pep-0683/

Change-Id: Id07658245d524288ce7606cb0a011ad97068dad1
Signed-off-by: Michael Jeanson <mjeanson@debian.org>
Reviewed-on: https://review.lttng.org/c/babeltrace/+/10379
Reviewed-by: Philippe Proulx <eeppeliteloop@gmail.com>

lp://staging/~nuclearbob/babeltrace/packaging-daily (Has a merge proposal) 1 Development babeltrace 2014-04-18 21:56:10 UTC
33. Added python3-config

Author: Max Brustkern
Revision Date: 2014-04-18 21:32:30 UTC

Added python3-config

lp://staging/~linaro-foundations/lttng-modules/packaging-for-arm.trunk 1 Development lttng-modules 2012-03-23 05:23:36 UTC
10. Sync with latest lttng-modules Ubuntu...

Author: Ricardo Salveti
Revision Date: 2012-03-23 05:23:36 UTC

Sync with latest lttng-modules Ubuntu package (precise)

lp://staging/~lttng/lttng-modules/trunk 1 Development lttng-modules 2023-10-19 15:43:28 UTC
1872. Fix build for RHEL 8.8 with linux 4.1...

Author: Kienan Stewart
Revision Date: 2023-10-19 15:43:28 UTC

Fix build for RHEL 8.8 with linux 4.18.0-477.10.1+

4.18.0-477.10.1 introduces backports a change which updates the
`kfree_skb` trace event to the 3-argument version used in more recent
kernel versions.

Change-Id: I5a1071a59659b76e1499beae3388159ca8ced1f7
Signed-off-by: Kienan Stewart <kstewart@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

lp://staging/~aviksil/lttng-tools/packaging-daily 1 Development lttng-tools 2012-02-02 09:46:34 UTC
21. Disable dh_auto_test to prevent FTBFS

Author: Avik Sil
Revision Date: 2012-02-02 09:45:37 UTC

Disable dh_auto_test to prevent FTBFS

lp://staging/~linaro-foundations/lttng-tools/packaging-for-arm.trunk 1 Development lttng-tools 2012-03-23 05:48:40 UTC
32. Exporting DEB_BUILD_OPTIONS=nocheck t...

Author: Ricardo Salveti
Revision Date: 2012-03-23 05:48:40 UTC

Exporting DEB_BUILD_OPTIONS=nocheck to avoid running the test cases while
building the package (fails when running inside Qemu)

lp://staging/~lttng/lttng-tools/trunk 1 Development lttng-tools 2013-09-17 18:08:39 UTC
1843. Tests: Add UST snapshots streaming te...

Author: Christian Babeux
Revision Date: 2013-09-17 18:08:39 UTC

Tests: Add UST snapshots streaming test with custom URI

Signed-off-by: Christian Babeux <christian.babeux@efficios.com>
Signed-off-by: David Goulet <dgoulet@efficios.com>

lp://staging/~linaro-foundations/lttng-ust/packaging-for-arm.trunk 1 Development lttng-ust 2012-03-23 06:11:21 UTC
31. Temporarily disabling JNI support (FT...

Author: Ricardo Salveti
Revision Date: 2012-03-23 06:10:45 UTC

Temporarily disabling JNI support (FTBFS with Qemu)

lp://staging/~lttng/lttng-ust/lttng-ust 1 Development lttng-ust 2023-10-19 17:56:44 UTC
3031. Cleanup: remove leftover comment Sig...

Author: Mathieu Desnoyers
Revision Date: 2023-10-19 17:56:44 UTC

Cleanup: remove leftover comment

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Change-Id: Ifd2ead39c7d7ebe9d50ec20b834c81cd4caa5e1d

lp://staging/~lttng/lttng-ust/packaging-daily 1 Development lttng-ust 2016-11-30 00:07:22 UTC
72. Bump version to 2.10~pre

Author: Simon Marchi
Revision Date: 2016-11-30 00:07:22 UTC

Bump version to 2.10~pre

lp://staging/~simon-marchi/lttng-ust/fix-tests 1 Development lttng-ust 2013-11-18 03:14:31 UTC
1682. Add LIBS somewhere

Author: Simon Marchi
Revision Date: 2013-11-18 03:11:25 UTC

Add LIBS somewhere

lp://staging/~linaro-foundations/urcu/packaging-for-arm-natty.trunk 1 Development urcu 2011-09-26 11:12:58 UTC
11. Add armel support

Author: Avik Sil
Revision Date: 2011-09-26 11:12:48 UTC

Add armel support

lp://staging/~linaro-foundations/urcu/packaging-for-arm.trunk 1 Development urcu 2012-03-23 05:13:43 UTC
14. Adding support for armel and armhf

Author: Ricardo Salveti
Revision Date: 2012-03-23 05:13:43 UTC

Adding support for armel and armhf

lp://staging/~lttng/urcu/trunk 1 Development urcu 2023-10-19 20:44:50 UTC
1485. cleanup: use an enum for the error st...

Author: Michael Jeanson
Revision Date: 2023-10-19 20:44:50 UTC

cleanup: use an enum for the error states of nr_cpus_mask

Using an enum with labels for error states instead of literal values
will make the code easier to read and understand.

Change-Id: I4558e17ccb45ab40515bb516af840b2852ee8fc3
Signed-off-by: Michael Jeanson <mjeanson@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>

lp://staging/~rsalveti/urcu/packaging-daily 1 Development urcu 2012-03-23 05:11:00 UTC
14. Adding support for armel and armhf

Author: Ricardo Salveti
Revision Date: 2012-03-23 05:10:11 UTC

Adding support for armel and armhf

116 of 16 results