Activity log for bug #1349028

Date Who What changed Old value New value Message
2014-07-27 00:09:38 George Greer bug added bug
2014-07-27 00:09:38 George Greer attachment added lspci -vnvn https://bugs.launchpad.net/bugs/1349028/+attachment/4163585/+files/lspci-vnvn.log
2014-07-27 00:30:11 Brad Figg linux (Ubuntu): status New Incomplete
2014-07-27 00:30:12 Brad Figg tags saucy
2014-07-27 00:43:30 George Greer tags saucy apport-collected saucy trusty
2014-07-27 00:43:32 George Greer description According to the 'getitimer()' man page: "The element it_value is set to the amount of time remaining on the timer, or zero if the timer is disabled. Similarly, it_interval is set to the reset value." As such the following Perl program should never exit: use Time::HiRes; $SIG{VTALRM} = sub { }; Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0.5, 0.4); while (1) { my @t = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); exit 0 if $t[0] == 0; } and on linux-image 3.11.0-18-generic (and all other systems tested) it loops forever but 3.13.0-32-generic it exits. Have not bisected between those kernels, nor am I likely to be able to do so soon. This Perl program shows the timer countdown: use Time::HiRes; my $r = [Time::HiRes::gettimeofday()]; sub display { my ($desc) = @_; my @t = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); my $i = Time::HiRes::tv_interval($r); printf "%s: elasped=%.8f; time left=%.6f reset time=%.6f\n", $desc, $i,@t; } $SIG{VTALRM} = sub { display('VTALRM'); exit; }; Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0.5, 0.4); while (1) { display('inloop'); } on other (working) systems it gives: inloop: elasped=1.65178400; time left=0.001000 reset time=0.401000 inloop: elasped=1.65184200; time left=0.001000 reset time=0.401000 inloop: elasped=1.65186800; time left=0.001000 reset time=0.401000 inloop: elasped=1.65192300; time left=0.001000 reset time=0.401000 inloop: elasped=1.65198100; time left=0.001000 reset time=0.401000 VTALRM: elasped=1.65209800; time left=0.400000 reset time=0.401000 (end of file) but on the 3.13.0-32-generic or later kernel I get: inloop: elasped=0.54692100; time left=0.000033 reset time=0.400000 inloop: elasped=0.54692800; time left=0.000026 reset time=0.400000 inloop: elasped=0.54693500; time left=0.000020 reset time=0.400000 inloop: elasped=0.54694100; time left=0.000013 reset time=0.400000 inloop: elasped=0.54694800; time left=0.000007 reset time=0.400000 inloop: elasped=0.54695500; time left=0.000000 reset time=0.400000 inloop: elasped=0.54696200; time left=0.004000 reset time=0.400000 [...] VTALRM: elasped=0.55013600; time left=0.397062 reset time=0.400000 (end of file) The reset time also looks dodgy. Hardware is an Intel Core i7-920 on Asus P6T Deluxe v2 (X58) motherboard and hasn't changed. Requested information: Ubuntu 3.13.0-32.57-generic 3.13.11.4 Description: Ubuntu 14.04.1 LTS Release: 14.04 # apt-cache policy linux-image-generic linux-image-generic: Installed: 3.13.0.32.38 Candidate: 3.13.0.32.38 Version table: *** 3.13.0.32.38 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages 500 http://us.archive.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages 500 http://us.archive.ubuntu.com/ubuntu/ trusty-proposed/main amd64 Packages 500 http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/ trusty/main amd64 Packages 100 /var/lib/dpkg/status 3.13.0.24.28 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages According to the 'getitimer()' man page: "The element it_value is set to the amount of time remaining on the timer, or zero if the timer is disabled. Similarly, it_interval is set to the reset value." As such the following Perl program should never exit: use Time::HiRes; $SIG{VTALRM} = sub { }; Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0.5, 0.4); while (1) { my @t = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); exit 0 if $t[0] == 0; } and on linux-image 3.11.0-18-generic (and all other systems tested) it loops forever but 3.13.0-32-generic it exits. Have not bisected between those kernels, nor am I likely to be able to do so soon. This Perl program shows the timer countdown: use Time::HiRes; my $r = [Time::HiRes::gettimeofday()]; sub display { my ($desc) = @_; my @t = Time::HiRes::getitimer(&Time::HiRes::ITIMER_VIRTUAL); my $i = Time::HiRes::tv_interval($r); printf "%s: elasped=%.8f; time left=%.6f reset time=%.6f\n", $desc, $i,@t; } $SIG{VTALRM} = sub { display('VTALRM'); exit; }; Time::HiRes::setitimer(&Time::HiRes::ITIMER_VIRTUAL, 0.5, 0.4); while (1) { display('inloop'); } on other (working) systems it gives: inloop: elasped=1.65178400; time left=0.001000 reset time=0.401000 inloop: elasped=1.65184200; time left=0.001000 reset time=0.401000 inloop: elasped=1.65186800; time left=0.001000 reset time=0.401000 inloop: elasped=1.65192300; time left=0.001000 reset time=0.401000 inloop: elasped=1.65198100; time left=0.001000 reset time=0.401000 VTALRM: elasped=1.65209800; time left=0.400000 reset time=0.401000 (end of file) but on the 3.13.0-32-generic or later kernel I get: inloop: elasped=0.54692100; time left=0.000033 reset time=0.400000 inloop: elasped=0.54692800; time left=0.000026 reset time=0.400000 inloop: elasped=0.54693500; time left=0.000020 reset time=0.400000 inloop: elasped=0.54694100; time left=0.000013 reset time=0.400000 inloop: elasped=0.54694800; time left=0.000007 reset time=0.400000 inloop: elasped=0.54695500; time left=0.000000 reset time=0.400000 inloop: elasped=0.54696200; time left=0.004000 reset time=0.400000 [...] VTALRM: elasped=0.55013600; time left=0.397062 reset time=0.400000 (end of file) The reset time also looks dodgy. Hardware is an Intel Core i7-920 on Asus P6T Deluxe v2 (X58) motherboard and hasn't changed. Requested information: Ubuntu 3.13.0-32.57-generic 3.13.11.4 Description: Ubuntu 14.04.1 LTS Release: 14.04 # apt-cache policy linux-image-generic linux-image-generic: Installed: 3.13.0.32.38 Candidate: 3.13.0.32.38 Version table: *** 3.13.0.32.38 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty-updates/main amd64 Packages 500 http://us.archive.ubuntu.com/ubuntu/ trusty-security/main amd64 Packages 500 http://us.archive.ubuntu.com/ubuntu/ trusty-proposed/main amd64 Packages 500 http://ppa.launchpad.net/canonical-kernel-team/ppa/ubuntu/ trusty/main amd64 Packages 100 /var/lib/dpkg/status 3.13.0.24.28 0 500 http://us.archive.ubuntu.com/ubuntu/ trusty/main amd64 Packages --- ApportVersion: 2.14.1-0ubuntu3.2 Architecture: amd64 AudioDevicesInUse: USER PID ACCESS COMMAND /dev/snd/controlC1: tivrusky 3009 F.... pulseaudio /dev/snd/controlC0: tivrusky 3009 F.... pulseaudio DistroRelease: Ubuntu 14.04 HibernationDevice: RESUME=UUID=c026abdc-9fee-425c-b5ae-020bf6ea2ad6 IwConfig: eth0 no wireless extensions. eth1 no wireless extensions. lo no wireless extensions. MachineType: System manufacturer System Product Name Package: linux (not installed) ProcFB: 0 radeondrmfb ProcKernelCmdLine: root=UUID=3ea7a4cb-eade-4906-b545-5133d8c14080 ro quiet splash ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4 RelatedPackageVersions: linux-restricted-modules-3.13.0-32-generic N/A linux-backports-modules-3.13.0-32-generic N/A linux-firmware 1.127.5 RfKill: 0: hci0: Bluetooth Soft blocked: no Hard blocked: no Tags: trusty Uname: Linux 3.13.0-32-generic x86_64 UpgradeStatus: Upgraded to trusty on 2014-06-10 (46 days ago) UserGroups: adm admin cdrom dialout lpadmin mythtv plugdev sambashare vboxusers WifiSyslog: Jul 26 20:23:08 zwei NetworkManager[1174]: <info> Policy set 'Wired connection 2' (eth1) as default for IPv6 routing and DNS. WpaSupplicantLog: _MarkForUpload: True dmi.bios.date: 02/04/2009 dmi.bios.vendor: American Megatrends Inc. dmi.bios.version: 0203 dmi.board.asset.tag: To Be Filled By O.E.M. dmi.board.name: P6T DELUXE V2 dmi.board.vendor: ASUSTeK Computer INC. dmi.board.version: Rev 1.xx dmi.chassis.asset.tag: Asset-1234567890 dmi.chassis.type: 3 dmi.chassis.vendor: Chassis Manufacture dmi.chassis.version: Chassis Version dmi.modalias: dmi:bvnAmericanMegatrendsInc.:bvr0203:bd02/04/2009:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP6TDELUXEV2:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion: dmi.product.name: System Product Name dmi.product.version: System Version dmi.sys.vendor: System manufacturer
2014-07-27 00:43:34 George Greer attachment added AlsaInfo.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163587/+files/AlsaInfo.txt
2014-07-27 00:43:37 George Greer attachment added BootDmesg.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163588/+files/BootDmesg.txt
2014-07-27 00:43:38 George Greer attachment added CRDA.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163589/+files/CRDA.txt
2014-07-27 00:43:41 George Greer attachment added CurrentDmesg.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163590/+files/CurrentDmesg.txt
2014-07-27 00:43:42 George Greer attachment added Lspci.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163591/+files/Lspci.txt
2014-07-27 00:43:44 George Greer attachment added Lsusb.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163592/+files/Lsusb.txt
2014-07-27 00:43:46 George Greer attachment added ProcCpuinfo.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163593/+files/ProcCpuinfo.txt
2014-07-27 00:43:47 George Greer attachment added ProcEnviron.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163594/+files/ProcEnviron.txt
2014-07-27 00:43:49 George Greer attachment added ProcInterrupts.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163595/+files/ProcInterrupts.txt
2014-07-27 00:43:50 George Greer attachment added ProcModules.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163596/+files/ProcModules.txt
2014-07-27 00:43:53 George Greer attachment added PulseList.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163597/+files/PulseList.txt
2014-07-27 00:43:56 George Greer attachment added UdevDb.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163598/+files/UdevDb.txt
2014-07-27 00:44:02 George Greer attachment added UdevLog.txt https://bugs.launchpad.net/bugs/1349028/+attachment/4163599/+files/UdevLog.txt
2014-07-27 00:46:15 George Greer linux (Ubuntu): status Incomplete Confirmed
2014-07-27 17:43:12 penalvch tags apport-collected saucy trusty apport-collected needs-bisect regression-update saucy trusty
2014-07-27 17:44:04 penalvch tags apport-collected needs-bisect regression-update saucy trusty apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty
2014-07-27 17:44:54 penalvch attachment removed lspci -vnvn https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1349028/+attachment/4163585/+files/lspci-vnvn.log
2014-07-28 15:52:15 Tim Gardner bug added subscriber Tim Gardner
2014-07-28 15:53:11 Colin Ian King linux (Ubuntu): importance Undecided Medium
2014-07-28 15:53:14 Colin Ian King linux (Ubuntu): assignee Colin Ian King (colin-king)
2014-07-30 11:23:29 Colin Ian King linux (Ubuntu): status Confirmed Incomplete
2014-07-31 12:28:10 Tim Gardner nominated for series Ubuntu Trusty
2014-07-31 12:28:10 Tim Gardner bug task added linux (Ubuntu Trusty)
2014-07-31 12:28:10 Tim Gardner nominated for series Ubuntu Utopic
2014-07-31 12:28:10 Tim Gardner bug task added linux (Ubuntu Utopic)
2014-07-31 12:28:48 Tim Gardner linux (Ubuntu Trusty): status New Fix Committed
2014-07-31 12:28:48 Tim Gardner linux (Ubuntu Trusty): assignee Colin Ian King (colin-king)
2014-07-31 12:28:59 Tim Gardner linux (Ubuntu Utopic): status Incomplete Fix Committed
2014-08-11 18:39:19 Launchpad Janitor linux (Ubuntu Utopic): status Fix Committed Fix Released
2014-08-19 15:32:34 Launchpad Janitor branch linked lp:ubuntu/precise-proposed/linux-lts-trusty
2014-08-19 20:50:49 Brad Figg tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-needed-trusty
2014-08-19 21:14:26 Launchpad Janitor branch linked lp:ubuntu/trusty-proposed/linux-keystone
2014-08-20 10:11:04 Colin Ian King tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-needed-trusty apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty
2014-08-28 22:33:07 Launchpad Janitor linux (Ubuntu Trusty): status Fix Committed Fix Released
2014-08-28 22:33:07 Launchpad Janitor cve linked 2014-0155
2014-08-28 22:33:07 Launchpad Janitor cve linked 2014-4508
2014-08-28 23:30:39 Launchpad Janitor branch linked lp:ubuntu/precise-security/linux-lts-trusty
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo nominated for series Ubuntu Xenial
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo bug task added linux (Ubuntu Xenial)
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo nominated for series Ubuntu Focal
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo bug task added linux (Ubuntu Focal)
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo nominated for series Ubuntu Bionic
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo bug task added linux (Ubuntu Bionic)
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo nominated for series Ubuntu Eoan
2020-04-23 15:01:35 Thadeu Lima de Souza Cascardo bug task added linux (Ubuntu Eoan)
2020-04-23 15:01:47 Thadeu Lima de Souza Cascardo linux (Ubuntu Xenial): status New In Progress
2020-04-23 15:01:50 Thadeu Lima de Souza Cascardo linux (Ubuntu Bionic): status New In Progress
2020-04-23 15:01:54 Thadeu Lima de Souza Cascardo linux (Ubuntu Eoan): status New In Progress
2020-04-23 15:01:57 Thadeu Lima de Souza Cascardo linux (Ubuntu Eoan): assignee Thadeu Lima de Souza Cascardo (cascardo)
2020-04-23 15:01:59 Thadeu Lima de Souza Cascardo linux (Ubuntu Bionic): assignee Thadeu Lima de Souza Cascardo (cascardo)
2020-04-23 15:02:01 Thadeu Lima de Souza Cascardo linux (Ubuntu Xenial): assignee Thadeu Lima de Souza Cascardo (cascardo)
2020-04-24 17:09:09 Kelsey Steele linux (Ubuntu Xenial): status In Progress Fix Committed
2020-04-24 17:09:15 Kelsey Steele linux (Ubuntu Bionic): status In Progress Fix Committed
2020-04-24 17:09:18 Kelsey Steele linux (Ubuntu Eoan): status In Progress Fix Committed
2020-04-29 23:47:04 Ubuntu Kernel Bot tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-xenial
2020-05-01 01:22:00 Ubuntu Kernel Bot tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-xenial apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-eoan verification-needed-xenial
2020-05-01 01:52:02 Ubuntu Kernel Bot tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-eoan verification-needed-xenial apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-bionic verification-needed-eoan verification-needed-xenial
2020-05-18 10:10:47 Launchpad Janitor linux (Ubuntu Bionic): status Fix Committed Fix Released
2020-05-18 10:10:47 Launchpad Janitor cve linked 2020-11494
2020-05-18 12:39:33 Launchpad Janitor linux (Ubuntu Xenial): status Fix Committed Fix Released
2020-05-18 12:39:33 Launchpad Janitor cve linked 2019-19060
2020-05-18 12:39:33 Launchpad Janitor cve linked 2020-11608
2020-05-18 15:26:59 Thadeu Lima de Souza Cascardo tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-trusty verification-needed-bionic verification-needed-eoan verification-needed-xenial apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-eoan verification-done-trusty verification-needed-bionic verification-needed-xenial
2020-05-18 15:42:08 Thadeu Lima de Souza Cascardo tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-eoan verification-done-trusty verification-needed-bionic verification-needed-xenial apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-bionic verification-done-eoan verification-done-trusty verification-needed-xenial
2020-05-18 15:52:10 Thadeu Lima de Souza Cascardo tags apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-bionic verification-done-eoan verification-done-trusty verification-needed-xenial apport-collected bios-outdated-1202 needs-bisect regression-update saucy trusty verification-done-bionic verification-done-eoan verification-done-trusty verification-done-xenial
2020-05-19 21:37:06 Launchpad Janitor linux (Ubuntu Eoan): status Fix Committed Fix Released