[Bug 1825096] [NEW] ansible: set_fact in with_items append loop only keeps last item

2019-04-17 Thread Olli Salonen
Public bug reported:

The ansible-2.5.1+dfsg-1 package that is included in the Ubuntu 18.04.2
LTS is faulty. Adding items to a list inside a loop using set_fact will
actually only keep the last item of the list. This is a known problem
upstream [1] and has been fixed in Ansible 2.5.2. This currently renders
Ansible unusable in my use case.

Backport of this fix or update to at least 2.5.2 would be crucial to fix
the issue.

olli@FI-0770:~/ansible$ ansible --version
ansible 2.5.1
  config file = /etc/ansible/ansible.cfg
  configured module search path = [u'/home/eollsal/.ansible/plugins/modules', 
u'/usr/share/ansible/plugins/modules']
  ansible python module location = /usr/lib/python2.7/dist-packages/ansible
  executable location = /usr/bin/ansible
  python version = 2.7.15rc1 (default, Nov 12 2018, 14:31:15) [GCC 7.3.0]

olli@FI-0770:~/ansible$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=18.04
DISTRIB_CODENAME=bionic
DISTRIB_DESCRIPTION="Ubuntu 18.04.2 LTS"

References:
[1] https://github.com/ansible/ansible/issues/38991

** Affects: ansible (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1825096

Title:
  ansible: set_fact in with_items append loop only keeps last item

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ansible/+bug/1825096/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

[Bug 1641429] Re: tcpdump capture filter for vlans incorrect

2017-02-24 Thread Olli Salonen
The offsets are still negative:

root@tools:~# dpkg -l | grep tcpdump
ii  tcpdump  4.9.0-2ubuntu2  
amd64command-line network traffic analyzer

root@tools:~# tcpdump --version
tcpdump version 4.9.0
libpcap version 1.7.4
OpenSSL 1.0.2g  1 Mar 2016

root@tools:~# tcpdump -i eno1 vlan 114 -d
(000) ldb  [-4048]
(001) jeq  #0x1 jt 2jf 5
(002) ldb  [-4052]
(003) jeq  #0x72jt 4jf 5
(004) ret  #262144
(005) ret  #0

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1641429

Title:
  tcpdump capture filter for vlans incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tcpdump/+bug/1641429/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1641429] [NEW] tcpdump capture filter for vlans incorrect

2016-11-13 Thread Olli Salonen
Public bug reported:

The BPF code output by tcpdump -d looks suspicious:

root@nucserver:/root# tcpdump -i eno1 vlan 114 -d
(000) ldb  [-4048]
(001) jeq  #0x1 jt 2jf 5
(002) ldb  [-4052]
(003) jeq  #0x72jt 4jf 5
(004) ret  #262144
(005) ret  #0

There are negative offsets for the ldb commands. It seems to work
though:

root@nucserver:/root# tcpdump -e -i eno1 vlan 114
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eno1, link-type EN10MB (Ethernet), capture size 262144 bytes
17:15:18.545460 00:00:00:01:05:19 (oui Ethernet) > 01:00:5e:00:00:05 (oui 
Unknown), ethertype 802.1Q (0x8100), length 110: vlan 114, p 0, ethertype IPv4, 
10.85.7.230 > ospf-all.mcast.net: OSPFv2, Hello, length 72
17:15:18.727565 00:30:88:17:62:67 (oui Unknown) > 00:00:00:01:05:28 (oui 
Ethernet), ethertype 802.1Q (0x8100), length 174: vlan 114, p 0, ethertype 
IPv4, 10.85.7.6.34530 > 10.85.0.144.6653: Flags [P.], seq 157278598:157278702, 
ack 282166902, win 1444, options [nop,nop,TS val 817752435 ecr 108670837], 
length 104: OpenFlow

Generating the BPF for matching VLAN tagged packets manually looks fine:

root@nucserver:/root# tcpdump -e -i eno1 "ether[12:2]==0x8100" -d
(000) ldh  [12]
(001) jeq  #0x8100  jt 2jf 3
(002) ret  #262144
(003) ret  #0

But it does not match (even if there's heavy VLAN tagged traffic):

root@nucserver:/root# tcpdump -e -i eno1 "ether[12:2]==0x8100"
tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
listening on eno1, link-type EN10MB (Ethernet), capture size 262144 bytes
^C
0 packets captured
0 packets received by filter
0 packets dropped by kernel

On an Ubuntu 14.04 system it works as expected:

eollsal@cpoc:~$ uname -a
Linux cpoc.foobar.com 3.19.0-74-generic #82~14.04.1-Ubuntu SMP Fri Oct 21 
15:43:47 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
eollsal@cpoc:~$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"
eollsal@cpoc:~$ tcpdump -i eth2 vlan 114 -d
(000) ldh  [12]
(001) jeq  #0x8100  jt 3jf 2
(002) jeq  #0x9100  jt 3jf 7
(003) ldh  [14]
(004) and  #0xfff
(005) jeq  #0x72jt 6jf 7
(006) ret  #65535
(007) ret  #0
eollsal@cpoc:~$ tcpdump -h
tcpdump version 4.5.1
libpcap version 1.5.3

ProblemType: Bug
DistroRelease: Ubuntu 16.04
Package: tcpdump 4.7.4-1ubuntu1
ProcVersionSignature: Ubuntu 4.4.0-31.50-generic 4.4.13
Uname: Linux 4.4.0-31-generic x86_64
ApportVersion: 2.20.1-0ubuntu2.1
Architecture: amd64
Date: Sun Nov 13 18:10:56 2016
InstallationDate: Installed on 2016-11-12 (0 days ago)
InstallationMedia: Ubuntu-Server 16.04.1 LTS "Xenial Xerus" - Release amd64 
(20160719)
ProcEnviron:
 LANGUAGE=en_US:en
 TERM=xterm
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: tcpdump
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: tcpdump (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug xenial

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1641429

Title:
  tcpdump capture filter for vlans incorrect

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/tcpdump/+bug/1641429/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313279] Re: xHCI host not responding to stop endpoint command

2014-05-02 Thread Olli Salonen
Curiously, if I install kernel 3.13.3 or 3.13.4 (from
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.4-trusty/ ) this
works, but then in 3.13.5 this is broken again.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313279

Title:
  xHCI host not responding to stop endpoint command

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1313279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313279] Re: xHCI host not responding to stop endpoint command

2014-05-02 Thread Olli Salonen
This seems to be a problem in the kernel. Did git bisecting and here is
the result:

Commit:47f467a is the first bad commit
commit Commit:47f467a
Author: Sarah Sharp sarah.a.sh...@linux.intel.com
Date:   Fri Jan 31 11:45:02 2014 -0800

Revert xhci: Set scatter-gather limit to avoid failed block
writes.

commit Commit:1386ff7 upstream.

This reverts commit Commit:f2d9b99.

We are ripping out commit Commit:35773da usb:
xhci: Link TRB must not occur within a USB payload burst because it's a
hack that caused regressions in the usb-storage and userspace USB
drivers that use usbfs and libusb.  This commit attempted to fix the
issues with that patch.

Signed-off-by: Sarah Sharp sarah.a.sh...@linux.intel.com
Signed-off-by: Greg Kroah-Hartman gre...@linuxfoundation.org

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313279

Title:
  xHCI host not responding to stop endpoint command

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1313279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313279] [NEW] xHCI host not responding to stop endpoint command

2014-04-27 Thread Olli Salonen
Public bug reported:

Description:Ubuntu 14.04 LTS
Release:14.04
Hardware: Intel NUC D34010WYK (Core i3 4010U)
Memory: 4 gigabytes
USD device: PCTV 292e DVB-T tuner

I have 2 PCTV 292e DVB-T tuners connected to the system. When I start to
use either of the tuner, the xHCI host crashes. Since I'm booting from
an USB disk. If I only connect 1 of the tuners, the system works ok. It
does not matter which one of the tuners I connect.

[   68.990396] xhci_hcd :00:14.0: xHCI host not responding to stop endpoint 
command.
[   68.990402] xhci_hcd :00:14.0: Assuming host is dying, halting host.

Sometimes this also leads to this:

[  638.183002] IP: [815325dd] usb_enable_link_state+0x2d/0x2f0
[  638.183057] PGD 0 
[  638.183077] Oops:  [#1] SMP 

I can also observe the same fault with OpenELEC Linux distribution that
runs kernel 3.14 when I run the system from an internal SATA SSD drive
(not from an external USB disk).

lsusb -v: http://paste.ubuntu.com/7343384/
dmesg: http://sprunge.us/HMXH
dmesg (crash type 2): http://sprunge.us/PSiX

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: lubuntu-desktop 0.55
ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
Uname: Linux 3.13.0-24-generic x86_64
ApportVersion: 2.14.1-0ubuntu3
Architecture: amd64
Date: Sun Apr 27 11:12:22 2014
InstallationDate: Installed on 2014-04-07 (19 days ago)
InstallationMedia: Lubuntu 13.10 Saucy Salamander - Release amd64 (20131016.1)
SourcePackage: lubuntu-meta
UpgradeStatus: Upgraded to trusty on 2014-04-26 (0 days ago)

** Affects: lubuntu-meta (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug trusty

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313279

Title:
  xHCI host not responding to stop endpoint command

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1313279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 1313279] Re: xHCI host not responding to stop endpoint command

2014-04-27 Thread Olli Salonen
The NUC is running the latest available BIOS version (25).

lsmod: http://paste.ubuntu.com/7343416/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1313279

Title:
  xHCI host not responding to stop endpoint command

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lubuntu-meta/+bug/1313279/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 146160] Re: [needs-packaging] btnx

2009-07-12 Thread Olli Salonen
I suggest trying easystroke for configuring mouse buttons. It works
differently than btnx, but it seems to get the job done.

I still have a working btnx in Jaunty but I think I installed it from
source and had to hack at it a bit. I don't really recommend using it
anymore although I do.

-- 
[needs-packaging] btnx
https://bugs.launchpad.net/bugs/146160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 317781] Re: Ext4 data loss

2009-03-07 Thread Olli Salonen
I'm experiencing something similar, but with a twist.

After few hours to two days of use, my ext4 /home partition becomes
read-only all of a sudden. I usually close my session, unmount home, run
fsck on the partition, and remount. Occasionally it leads to data loss,
depending on what I was doing.

I'm currently on 2.6.28-6 because the last upgrade attempt lead to an
unbootable system (also running ext4 on root partition), so I don't know
if this is a fixed issue.

-- 
Ext4 data loss
https://bugs.launchpad.net/bugs/317781
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 146160] Re: [needs-packaging] btnx

2009-02-15 Thread Olli Salonen
Has anyone tried btnx in Jaunty? It seems that btnx did not work in
Intrepid because Ubuntu packaged a version of xserver that had a bug. I
would suspect Jaunty uses the fixed version.

Also, evdev is better but there is still no user friendly way to
configure mice.

-- 
[needs-packaging] btnx
https://bugs.launchpad.net/bugs/146160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 146160] Re: [needs-packaging] btnx

2008-05-14 Thread Olli Salonen
Iain,
I'm not familiar with REVU and haven't considered it. You're more than welcome 
to do it. To avoid spamming this bug report, you can email me directly about 
any questions you may have. You can find my email on my Launchpad portfolio 
page.

I also have a python script for automatically checking out a tagged
version from btnx or btnx-config SVN, copying all necessary debian
files, and generating the changelog, diffs, and other files required for
a deb build for the latest 3 distros. If you think it will be of use,
ask me about it.

-- 
[needs-packaging] btnx
https://bugs.launchpad.net/bugs/146160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 146160] Re: [needs-packaging] btnx

2008-04-29 Thread Olli Salonen
I've set up a PPA for btnx and btnx-config:

deb http://ppa.launchpad.net/daou/ubuntu distro main
deb-src http://ppa.launchpad.net/daou/ubuntu distro main

Replace distro with either feisty, gutsy, or hardy and place it in
/etc/apt/sources.list. I've tested the Feisty packages.

Building the debs needed some tricks here and there, but for future reference 
for any possible Ubuntu maintainers, here are the diffs (diffs for distros 
differ only for the changelog):
http://ollisalonen.com/btnx/btnx_0.4.10-hardy1~ppa2.diff.gz
http://ollisalonen.com/btnx/btnx-config_0.4.9-hardy1~ppa2.diff.gz

-- 
[needs-packaging] btnx
https://bugs.launchpad.net/bugs/146160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 223397] Re: cpu at 100% after mouse goes to sleep

2008-04-28 Thread Olli Salonen
This is related to the new libdaemon dependencies, and I can reproduce
it.

I'll roll out a fix soon.

** Changed in: btnx
   Importance: Undecided = High
 Assignee: (unassigned) = Olli Salonen (daou)
   Status: New = Confirmed

-- 
cpu at 100% after mouse goes to sleep
https://bugs.launchpad.net/bugs/223397
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 223397] Re: cpu at 100% after mouse goes to sleep

2008-04-28 Thread Olli Salonen
btnx-0.4.10 fixes the issue. However, use btnx-config-0.4.9 and run it
at least once (run and close if you have no need to edit the
configuration). This will regenerate the udev rule which is compatible
with the changes.

** Changed in: btnx
   Status: Confirmed = Fix Released

-- 
cpu at 100% after mouse goes to sleep
https://bugs.launchpad.net/bugs/223397
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 213382] Re: btnx/btnx config (newest versions on your homepage) FAIL to work on Xubuntu 7.10 Gutsy amd64 compiled from source

2008-04-23 Thread Olli Salonen
I think the bug Kevin describes is different, but is apparently related to the 
new configuration looping feature.
Leo: did an earlier version of btnx work with Xubuntu Gutsy? If so which one?

I have to defer work on this (these) until the end of May. Sorry. I'm
simply short on free time.

** Changed in: btnx
   Importance: Undecided = Medium
 Assignee: (unassigned) = Olli Salonen (daou)

-- 
btnx/btnx config (newest versions on your homepage) FAIL to work on Xubuntu 
7.10 Gutsy amd64 compiled from source
https://bugs.launchpad.net/bugs/213382
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 146160] Re: [needs-packaging] btnx

2008-03-07 Thread Olli Salonen
 If a developer is to pick this up, he/she will have to take
0.4.6.tar.gz (instead of the 0.4.4.deb) and turn that into a .deb fix
those installation issues.

This is a known issue with the deb package (made with checkinstall).
btnx has a custom makefile and it has been a problem for maintainers who
have packaged it for various distros. The .deb package doesn't correctly
make the /etc/btnx directory and it results in a copy error for the
events file. Also, it doesn't register the init scripts perfectly.

btnx will probably be converted to use GNU autotools like btnx-config
is. No timeline for this yet, however. Of course, I am always available
for help if someone starts to maintain an Ubuntu repo package of btnx.

-- 
[needs-packaging] btnx
https://bugs.launchpad.net/bugs/146160
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 180167] Re: Solver hungs up openoffice

2008-01-29 Thread Olli Salonen
I can duplicate this bug on an up-to-date Ubuntu 7.10 with openoffice
.org-calc version: 1:2.3.0-1ubuntu5

-- 
Solver hungs up openoffice
https://bugs.launchpad.net/bugs/180167
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 63418] Re: CPU soft lockup during bootup

2007-02-11 Thread Olli Salonen
I am still interested in the fix for 2.6.17-10-generic on Edgy. And like
I said back in November, the modified ipw3945.ko module did not help. It
fixed the boot but disabled sound. I vaguely remember that WinXP uses
drivers by the same company for the wifi and sound (don't remember it's
name).

-- 
CPU soft lockup during bootup
https://launchpad.net/bugs/63418

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs


[Bug 63418] Re: CPU soft lockup during bootup

2006-11-09 Thread Olli Salonen
Same problem with a Fujitsu-Siemens Amilo Si 1520-23, 2.6.17-10-generic.

The modified ipw3945.ko fixed the boot, but I lost sound afterwards.
Restoring to the original ipw3945.ko did not help.

And the frequency kill switch is unresponsive during boot. If I forget
to set it off after turning off the computer, I have to boot WinXP and
turn wifi on there before Edgy is able to boot.

-- 
CPU soft lockup during bootup
https://launchpad.net/bugs/63418

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs