[Bug 1940907] Re: gist-paste command gives e-maled error message

2021-09-13 Thread Chai T. Rex
GitHub now no longer accepts submissions from this version of `gist-
paste`, meaning that this package is fully broken.

Error: Got Net::HTTPBadRequest from gist: {"message":"Must specify
access token via Authorization header.
https://developer.github.com/changes/2020-02-10-deprecating-auth-
through-query-
param","documentation_url":"https://docs.github.com/v3/#oauth2-token-
sent-in-a-header"}

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

Title:
  gist-paste command is too old and can no longer authenticate

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


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

[Bug 1940730] Re: bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu7~20.04.1: bcmwl kernel module failed to build

2021-09-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: bcmwl (Ubuntu)
   Status: New => Confirmed

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

Title:
  bcmwl-kernel-source 6.30.223.271+bdcom-0ubuntu7~20.04.1: bcmwl kernel
  module failed to build

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Christian Ehrhardt 
Thank you Matthew for the quick response and I see you already added
Frode who was driving this change.

I have reviewed the PPA and the diff that it has right now.

Yes 77401d54 seems present and c0ae4919e would be needed for that as dependency.
The code still has the needed VIR_DIR_CLOSE so it is not also leaking.

Around firstEntryName where the current issue happens the formerly merged 
refactor had:
  *netname = g_steal_pointer();
But the backport was
  *netname = firstEntryName;
And now your proposed solution is to add:
  firstEntryName = NULL;

(all that on a g_autofree type)


Let us play this through:


So in the upstream code it does:
  firstEntryName = NULL; (init)
  firstEntryName = g_strdup(entry->d_name); (assign a value)
  *netname = g_steal_pointer();  (transfer ownership, sets NULL)
  on return g_autofree frees firstEntryName (being NULL this is a no-op, 
but a fallback for 
other return paths)

In the current bad backport it does:
  firstEntryName = NULL; (init)
  firstEntryName = g_strdup(entry->d_name); (assign a value)
  *netname = firstEntryName;(direct take over, leaving 
firstEntryName as-is)
  on return g_autofree frees firstEntryName which still being used from netname 
causes the crash

The suggestion to set
  firstEntryName = NULL;
will prevent the auto-clean from freeing the value and thereby prevent the 
segfault.
But will there be any return paths where it would need to be freed because of a 
leak?
This happens late on the way out which is good.
Yeah - I agree there is no return path that would leak firstEntryName.
But for clarity and matching what eventually is upstream is there a reason not 
to use g_steal_pointer in the very same place. The includes are already in 
place other code in virpci.c already uses it.

So instead of
  *netname = firstEntryName;   
  firstEntryName = NULL;
maybe
  *netname = g_steal_pointer();

Both should be fine, not stopping you.
I've also taken the chance to reference this bug in the "testcase that should 
be added to regression tests" list.

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1939938] Re: dialog asking for restart appears on close of rhythmbox

2021-09-13 Thread crvi
@fossfreedom: I think it's better to revert

https://github.com/fossfreedom/alternative-
toolbar/commit/9e50cb17a99cd2cff6f6c1b71d2ad219cac6ac5d

** Package changed: rhythmbox (Ubuntu) => rhythmbox-plugin-alternative-
toolbar (Ubuntu)

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

Title:
  dialog asking for restart appears on close of rhythmbox

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rhythmbox-plugin-alternative-toolbar/+bug/1939938/+subscriptions


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

[Bug 1939938] Re: dialog asking for restart appears on close of rhythmbox

2021-09-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: rhythmbox (Ubuntu)
   Status: New => Confirmed

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

Title:
  dialog asking for restart appears on close of rhythmbox

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Bijay Shah
Hello, regarding the latest SRU Justification for alsa-ucm-conf

Isn't it normal to have separate microphone volume and mic boost.
Currently I have mic volume on 100% and mic boost on 20db gain. It's
just like windows where microphone volume and mic boost is separate. We
just don't have UI for it need to change using alsamixer.

With latest ubuntu official kernel mic boost has 4 levels just like
windows now 0db, 10db, 20db, 30db. Anything above 20db causes too much
noise. So, if mic volume and boost was to be tied so that both changes
it would be difficult to achieve what I am using right now.

Maybe would be better to provide a UI to change mic boost independently.
Just a suggestion, let me know if I got the change wrong. Thanks.

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

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
** Description changed:

+ SRU Justification for alsa-ucm-conf:
+ 
+ [Impact]
+ On the machines with the sof audio driver, users could adjust the input
+ volume from UI, but this only adjusts the "Capture Volume",  the "Mic
+ Boost" can't be changed, if "Mic Boost" is 0, even we adjust the "Capture
+ Volume" to max, the recorded volume is still very low.
+ 
+ [Fix]
+ Backport a upstream patch, the patch adds the "Mic Boost" into the
+ ucm
+ 
+ [Test]
+ plug a headset, make sure the headset-mic is the active input device,
+ adjust the input volume to %20, open a terminal and run alsamixer,
+ check the "Capture Volume" and "Mic Boost" value, then adjust the
+ input volume to 80%, check those values and we could see both values
+ are changed.
+ 
+ [Where problems could occur]
+ This patch could make the parse of input volume control fail, then
+ the input volume can't be changed anymore when users adjust the
+ volume from UI. But this possibility is very low, I tested this patch
+ on many lenovo and dell machines with sof audio driver, all worked
+ well.
+ 
+ 
+ 
  SRU Justification for pulseaudio:
  
  [Impact]
  On the machines with the sof audio driver, after booting up, the
  active output device is speaker by default, we adjust the output
  volume to 100%, then we plug a headphone, and adjust the output
  volume from 100% to 20%, now in theory, the speaker's volume is
  100%, the headphone's volume is 20%. We plugout the headphone,
  the active output device becomes speaker and we expect the volume
  changes to 100%, but the output volume for speaker is 20%.
  
  [Fix]
  Backport a upstream patch, this patch is already in the pulseaudio-15.0,
  so impish already has this fix. Only hirsute and focal need to backport
  this patch.
  
  [Test]
  adjust speaker's volume to 80%, then plug headphone and adjust headphone's
  volume to 20%, unplug the headphone, the speaker's volume becomes to 80%,
  plug the headphone, the headphone's volume becomes to 20%.
  
  [Where problems could occur]
  The patch writes the output volume to hardware immediately when switching
  output device on the machines with sof audio driver, this could introduce
  pop noise when changing the output device, but this possibility is very
  low, I tested the patch on many lenovo and dell machines with sof audio 
driver,
  all worked as expected and have no pop noise when switching output device.
- 
  
  
  
  The patch was merged to ubuntu 5.13.0 and 5.11.0 generic kernels
  with stable update already, but it is not merged to ubuntu 5.4.0
  kernel yet, so I sent this SRU for the focal kernel.
  
  [Impact]
  Users plug headphone and Mic to the audio jacks, but the system
  can't detect them, and couldn't output sound through headphone and
  record sound through Mic.
  
  [Fix]
  Backport a upstream patch, this will set the Mic to auto-detection
  mode and set the headphone to left location.
  
  [Test]
  Plug a headset to the headset audio jack, both headphone and mic
  could be detected. And output the sound to headphone, could hear
  the sound, record the sound through Mic, the sound could be recorded.
  
  [Where problems could occur]
  The patch is specific to Acer Aspire 5 machine, if it could introduce
  regression, it will make the audio like internal mic and internal spk
  stop working. But this possibility is very low.
  
  Hello,
  
  There seems to be lots of issues in sound driver for Acer Aspire
  A515-56-57XR with ALC255. I will list all of them below and what I have
  tried so far.
  
  1. Headphones appears always plugged in even if they are physically not
  2. When actually plugging in headset/earphones it does not auto switch from 
speakers/internal mic to headphones/headset microphone automatically and vice 
versa, have to manually switch everytime.
  3. External headset/earphones microphone won't work at all
  
  After, logs of trial and error I have found a temporary fix. This seems
  to use legacy intel drivers which solves all 3 issues mentioned above
  but the internal/dmic mic is completely gone (which seems intentional
  when using this). Both depreciated dmic_detect and dsp_driver works, I
  have been using dsp_driver for now as I need external microphone at any
  cost.
  
  End of /etc/modprobe.d/alsa-base.conf
  # Headset mic fix
  options snd-hda-intel dmic_detect=0 / options snd-intel-dspcfg dsp_driver=1
  options snd-hda-intel model=alc255-acer
  
  In another thread similar to this I got some support and at least fixed
  the external microphone without using the alsa-base.conf change in
  custom modified kernel. I will attach it here. Now, hoping to fix other
  issues as well slowly like making headphones unplugged when physically
  removing as well as auto switching like the legacy driver one.

-- 
You received this bug notification because you are a member of Ubuntu

[Bug 1934129] Re: disable neutron-fwaas for >= victoria

2021-09-13 Thread Hemanth Nakkina
** Changed in: charm-helpers
   Status: In Progress => Fix Committed

** Changed in: charm-neutron-gateway
   Status: In Progress => Fix Committed

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

Title:
  disable neutron-fwaas  for >= victoria

To manage notifications about this bug go to:
https://bugs.launchpad.net/charm-guide/+bug/1934129/+subscriptions


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

[Bug 1936230] Re: PHP all vesions, litterally strtotime looks like float between two timezones

2021-09-13 Thread Launchpad Bug Tracker
[Expired for php-defaults (Ubuntu) because there has been no activity
for 60 days.]

** Changed in: php-defaults (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  PHP all vesions, litterally strtotime looks like float between two
  timezones

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/php-defaults/+bug/1936230/+subscriptions


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

[Bug 1936257] Re: package mysql-server-8.0 (not installed) failed to install/upgrade: installed mysql-server-8.0 package post-installation script subprocess returned error exit status 1

2021-09-13 Thread Launchpad Bug Tracker
[Expired for mysql-8.0 (Ubuntu) because there has been no activity for
60 days.]

** Changed in: mysql-8.0 (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  package mysql-server-8.0 (not installed) failed to install/upgrade:
  installed mysql-server-8.0 package post-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1936257/+subscriptions


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

[Bug 1936299] Re: ubuntu 18.04.5 LTS apt update "Unknown error executing apt-key"

2021-09-13 Thread Launchpad Bug Tracker
[Expired for apt (Ubuntu) because there has been no activity for 60
days.]

** Changed in: apt (Ubuntu)
   Status: Incomplete => Expired

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

Title:
  ubuntu 18.04.5 LTS  apt update "Unknown error executing apt-key"

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


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

[Bug 1943238] Re: memory requirements

2021-09-13 Thread Michael Hudson-Doyle
You can netboot in less than that, about 1.5 GB, but you need to tiptoe
around https://bugs.launchpad.net/cloud-init/+bug/1937319 by adding
cloud-config-url=/dev/null to the kernel command line.

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

Title:
  memory requirements

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
This is the debdiff of alsa-ucm-conf for focal.

thx.


** Patch added: "alsa-ucm-conf_1.2.2-1ubuntu0.11.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1930188/+attachment/5525078/+files/alsa-ucm-conf_1.2.2-1ubuntu0.11.debdiff

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

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
This is the debdiff of alsa-ucm-conf for hirsute.

thx.


** Patch added: "alsa-ucm-conf_1.2.4-2ubuntu1.4.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1930188/+attachment/5525077/+files/alsa-ucm-conf_1.2.4-2ubuntu1.4.debdiff

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

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
This is the debdiff of alsa-ucm-conf for impish.

thx.


** Changed in: linux (Ubuntu Impish)
   Status: Incomplete => Fix Released

** Patch added: "alsa-ucm-conf_1.2.4-2ubuntu5.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1930188/+attachment/5525076/+files/alsa-ucm-conf_1.2.4-2ubuntu5.debdiff

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

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
Hi Paul,

Thank you very much for testing, we appreciate it.

I'll make sure we get this fix fast-tracked, and try get a new libvirt
build into -proposed in a couple hours, and try go for a release to
-updates in the next day or so.

Thanks,
Matthew

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1930188] Missing required logs.

2021-09-13 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1930188

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

** Tags added: groovy

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

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
** No longer affects: alsa-ucm-conf (Ubuntu)

** Also affects: alsa-ucm-conf (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: linux (Ubuntu)

** Package changed: alsa-ucm-conf (Ubuntu) => linux (Ubuntu)

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

Title:
  Acer Aspire 5 sound driver issues

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


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

Re: [Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Paul Saab
Patch applied, installed and rebooted.  Guest VM comes up now.
Thank you!

libvirt-daemon-system:
  Installed: 6.0.0-0ubuntu8.13+lp1943481v20210914b2
  Candidate: 6.0.0-0ubuntu8.13+lp1943481v20210914b2
  Version table:
 *** 6.0.0-0ubuntu8.13+lp1943481v20210914b2 500
500 http://ppa.launchpad.net/mruffell/lp1943481-test/ubuntu
focal/main amd64 Packages
100 /var/lib/dpkg/status
 6.0.0-0ubuntu8.13 500
500 http://us.archive.ubuntu.com/ubuntu focal-updates/main amd64
Packages
 6.0.0-0ubuntu8.3 500
500 http://us.archive.ubuntu.com/ubuntu focal-security/main amd64
Packages
 6.0.0-0ubuntu8 500
500 http://us.archive.ubuntu.com/ubuntu focal/main amd64 Packages


On Mon, Sep 13, 2021 at 8:05 PM Matthew Ruffell <1943...@bugs.launchpad.net>
wrote:

> Test packages are now available in:
>
> https://launchpad.net/~mruffell/+archive/ubuntu/lp1943481-test
>
> Please note these test packages are NOT SUPPORTED by Canonical, and are
> for TEST PURPOSES ONLY. ONLY install in a dedicated test environment.
>
> Instructions to Install (on a Focal system):
> 1) sudo add-apt-repository ppa:mruffell/lp1943481-test
> 2) sudo apt update
> 3) sudo apt install libvirt-daemon-system libvirt-clients
> 4) sudo reboot
> 5) sudo apt-cache policy libvirt-daemon-system
> Installed: 6.0.0-0ubuntu8.13+lp1943481v20210914b2
>
> --
> You received this bug notification because you are subscribed to the bug
> report.
> https://bugs.launchpad.net/bugs/1943481
>
> Title:
>   libvirtd crashes when creating network interface pools in
>   6.0.0-0ubuntu8.13
>
> Status in libvirt package in Ubuntu:
>   New
> Status in libvirt source package in Focal:
>   In Progress
>
> Bug description:
>   The latest libvirtd (6.0.0-0ubuntu8.13) crashes when trying to bring
>   up network pools with the stacktrace below.  I tracked down the
>   problem to the newly added patch (lp-1892132-Add-phys_port_name-
>   support-on-virPCIGetNetName.patch).  Assigning *netname =
>   firstEntryName; ends up in memory corruption.  Looking at the
>   mainline, I changed it to the following:
>
>   *netname = g_steal_pointer();
>
>   or you can just do
>
>   firstEntryName = NULL;
>
>   Both will solve the problem.
>
>
>   #0  __GI_raise (sig=sig@entry=6) at
> ../sysdeps/unix/sysv/linux/raise.c:50
>   #1  0x7f40e5d1c859 in __GI_abort () at abort.c:79
>   #2  0x7f40e5d873ee in __libc_message (action=action@entry=do_abort,
> fmt=fmt@entry=0x7f40e5eb1285 "%s\n") at ../sysdeps/posix/libc_fatal.c:155
>   #3  0x7f40e5d8f47c in malloc_printerr (str=str@entry=0x7f40e5eb35d0
> "free(): double free detected in tcache 2") at malloc.c:5347
>   #4  0x7f40e5d910ed in _int_free (av=0x7f40c820,
> p=0x7f40c80079e0, have_lock=0) at malloc.c:4201
>   #5  0x7f40e61a9a4f in virFree (ptrptr=0x7f40c8003b60) at
> ../../../src/util/viralloc.c:348
>   #6  0x7f40dd0cf8b1 in networkCreateInterfacePool
> (netdef=0x7f40840187f0) at ../../../src/network/bridge_driver.c:2849
>   #7  0x7f40dd0d799c in networkStartNetworkExternal
> (obj=0x7f408400f720) at ../../../src/network/bridge_driver.c:2938
>   #8  networkStartNetwork (driver=driver@entry=0x7f408400a7a0,
> obj=0x7f408400f720) at ../../../src/network/bridge_driver.c:2938
>   #9  0x7f40dd0d854d in networkCreate (net=0x7f40c8000c60) at
> ../../../src/network/bridge_driver.c:4013
>   #10 0x7f40e63fac3f in virNetworkCreate 
> (network=network@entry=0x7f40c8000c60)
> at ../../../src/libvirt-network.c:585
>   #11 0x560240e255d1 in remoteDispatchNetworkCreate
> (server=0x560240ea4280, msg=0x560240ee8200, args=0x7f40c8000c40,
> rerr=0x7f40e00ec9a0, client=) at
> ./remote/remote_daemon_dispatch_stubs.h:13570
>   #12 remoteDispatchNetworkCreateHelper (server=0x560240ea4280,
> client=, msg=0x560240ee8200, rerr=0x7f40e00ec9a0,
> args=0x7f40c8000c40, ret=0x0) at
> ./remote/remote_daemon_dispatch_stubs.h:13549
>   #13 0x7f40e630c970 in virNetServerProgramDispatchCall
> (msg=0x560240ee8200, client=0x560240eea270, server=0x560240ea4280,
> prog=0x560240ee1520) at ../../../src/rpc/virnetserverprogram.c:430
>   #14 virNetServerProgramDispatch (prog=0x560240ee1520, 
> server=server@entry=0x560240ea4280,
> client=0x560240eea270, msg=0x560240ee8200) at
> ../../../src/rpc/virnetserverprogram.c:302
>   #15 0x7f40e6311c2c in virNetServerProcessMsg (msg=,
> prog=, client=, srv=0x560240ea4280) at
> ../../../src/rpc/virnetserver.c:136
>   #16 virNetServerHandleJob (jobOpaque=,
> opaque=0x560240ea4280) at ../../../src/rpc/virnetserver.c:153
>   #17 0x7f40e62301af in virThreadPoolWorker 
> (opaque=opaque@entry=0x560240e885f0)
> at ../../../src/util/virthreadpool.c:163
>   #18 0x7f40e622f51c in virThreadHelper (data=) at
> ../../../src/util/virthread.c:196
>   #19 0x7f40e5ef2609 in start_thread (arg=) at
> pthread_create.c:477
>   #20 0x7f40e5e19293 in clone () at
> ../sysdeps/unix/sysv/linux/x86_64/clone.S:95
>
> To manage notifications about this bug go to:
>
> 

[Bug 1930188] Re: Acer Aspire 5 sound driver issues

2021-09-13 Thread Hui Wang
** Changed in: pulseaudio (Ubuntu)
   Status: New => In Progress

** Also affects: alsa-ucm-conf (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: alsa-ucm-conf (Ubuntu)

** No longer affects: alsa-ucm-conf (Ubuntu Focal)

** No longer affects: alsa-ucm-conf (Ubuntu Hirsute)

** Also affects: alsa-ucm-conf (Ubuntu)
   Importance: Undecided
   Status: New

** No longer affects: alsa-ucm-conf (Ubuntu)

** Also affects: alsa-ucm-conf (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/1930188

Title:
  Acer Aspire 5 sound driver issues

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


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

[Bug 1943506] Re: package does not run on clean install of Impish

2021-09-13 Thread Jerry Casiano
*** This bug is a duplicate of bug 1937993 ***
https://bugs.launchpad.net/bugs/1937993

** This bug has been marked a duplicate of bug 1937993
   font-manager crashed with signal 5

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

Title:
  package does not run on clean install of Impish

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/font-manager/+bug/1943506/+subscriptions


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

[Bug 1877524] Re: blueman-tray error /home/username/.cache/blueman-tray-1000

2021-09-13 Thread Brian Murray
This is another and better errors bucket for the Ubuntu 20.04 LTS crash
as it shows the versions of the package in -updates.

https://errors.ubuntu.com/problem/5e6627ae83ef4c84aff962ff2b0714b9061134c8

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

Title:
  blueman-tray error /home/username/.cache/blueman-tray-1000

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


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

[Bug 1877524] Re: blueman-tray error /home/username/.cache/blueman-tray-1000

2021-09-13 Thread Brian Murray
** Also affects: blueman (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: blueman (Ubuntu Focal)
   Status: New => In Progress

** Changed in: blueman (Ubuntu Focal)
 Assignee: (unassigned) => Brian Murray (brian-murray)

** Changed in: blueman (Ubuntu Focal)
   Importance: Undecided => Medium

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

Title:
  blueman-tray error /home/username/.cache/blueman-tray-1000

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
Test packages are now available in:

https://launchpad.net/~mruffell/+archive/ubuntu/lp1943481-test

Please note these test packages are NOT SUPPORTED by Canonical, and are
for TEST PURPOSES ONLY. ONLY install in a dedicated test environment.

Instructions to Install (on a Focal system):
1) sudo add-apt-repository ppa:mruffell/lp1943481-test
2) sudo apt update
3) sudo apt install libvirt-daemon-system libvirt-clients
4) sudo reboot
5) sudo apt-cache policy libvirt-daemon-system
Installed: 6.0.0-0ubuntu8.13+lp1943481v20210914b2

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1943379] Re: CD tray ejected on hibernate resume

2021-09-13 Thread Chris Guiver
I've experienced this behavior in impish; filed as
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/1942299

Impacting two boxes; on one box the cd/dvd tray ejects during boot; on
both when waking from suspend.

I've also noted it mentioned by a user on UF -
https://ubuntuforums.org/showthread.php?t=2467032

(I can test focal on the boxes my mentioned in the bug report mentioned
if helpful; but as I mainly use impish that is where I notice it; I
don't suspend sessions in focal)

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943463] Re: Lock screen notifications break sleep

2021-09-13 Thread Daniel van Vugt
** Changed in: gnome-shell (Ubuntu)
   Status: New => Confirmed

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

Title:
  Lock screen notifications break sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1943463/+subscriptions


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

[Bug 1943469] Re: sleep mode

2021-09-13 Thread Daniel van Vugt
Thanks for the bug report. The first thing to try is to unplug your
peripherals (before sleeping) to see if it is any of them waking the
machine up.

** Package changed: xorg (Ubuntu) => linux-hwe-5.11 (Ubuntu)

** Changed in: linux-hwe-5.11 (Ubuntu)
   Status: New => Incomplete

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

Title:
  sleep mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-hwe-5.11/+bug/1943469/+subscriptions


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
Okay, after reviewing the various patches and backports, Frode's
backport was correct, it was just missing the "firstEntryName = NULL;"
line.

Attached is a debdiff with the "firstEntryName = NULL;" line restored.
Only Focal is affected, Hirsute and Impish are working correctly.

I have a test package building in a ppa, will make a testcase now.

** Patch added: "debdiff for libvirt on Focal"
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1943481/+attachment/5525063/+files/lp1943481_focal.debdiff

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1886059] Re: gnome-shell crashed with assertion failure "!xcb_xlib_threads_sequence_lost" [xcb_io.c:260]

2021-09-13 Thread Daniel van Vugt
The crash history supports the theory that this was:

  https://gitlab.freedesktop.org/xorg/lib/libx11/-/merge_requests/34

because that fix appeared in libx11 1.7.0 during the hirsute development
cycle. So usually at this point I would recommend trying that fix.
However, despite being the top gnome-shell crasher on errors.ubuntu.com
this bug page is so quiet that I'm not sure we have enough people
engaged to be able to test any potential fix.


** Also affects: libx11 (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: libx11 (Ubuntu)
 Assignee: (unassigned) => Daniel van Vugt (vanvugt)

** Changed in: libx11 (Ubuntu)
   Status: New => Fix Released

** Changed in: gnome-shell (Ubuntu)
   Status: Incomplete => Invalid

** Changed in: mutter (Ubuntu)
   Status: Incomplete => Invalid

** Also affects: libx11 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: mutter (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: gnome-shell (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: libx11 (Ubuntu Focal)
 Assignee: (unassigned) => Daniel van Vugt (vanvugt)

** Changed in: libx11 (Ubuntu Focal)
   Status: New => Confirmed

** Changed in: libx11 (Ubuntu)
   Importance: Undecided => High

** Changed in: libx11 (Ubuntu Focal)
   Importance: Undecided => High

** No longer affects: gnome-shell (Ubuntu Focal)

** No longer affects: mutter (Ubuntu Focal)

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

Title:
  gnome-shell crashed with assertion failure
  "!xcb_xlib_threads_sequence_lost" [xcb_io.c:260]

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1886059/+subscriptions


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

[Bug 1886059] Re: gnome-shell crashed with assertion failure "!xcb_xlib_threads_sequence_lost" [xcb_io.c:260]

2021-09-13 Thread Daniel van Vugt
** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/-/issues #4128
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4128

** Also affects: gnome-shell via
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4128
   Importance: Unknown
   Status: Unknown

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

Title:
  gnome-shell crashed with assertion failure
  "!xcb_xlib_threads_sequence_lost" [xcb_io.c:260]

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1886059/+subscriptions


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

[Bug 1943463] Re: pulseaudio lock screen notifications break sleep

2021-09-13 Thread Daniel van Vugt
I'm not sure if that is a bug at all. You can set:

  Settings > Notifications > Lock Screen Notifications = OFF

See also:

  https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2475


** Bug watch added: gitlab.gnome.org/GNOME/gnome-shell/-/issues #2475
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2475

** Summary changed:

- pulseaudio lock screen notifications break sleep
+ Lock screen notifications break sleep

** Package changed: pulseaudio (Ubuntu) => gnome-shell (Ubuntu)

** Also affects: gnome-shell via
   https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/2475
   Importance: Unknown
   Status: Unknown

** Tags added: hirsute

** Changed in: gnome-shell (Ubuntu)
   Importance: Undecided => Low

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

Title:
  Lock screen notifications break sleep

To manage notifications about this bug go to:
https://bugs.launchpad.net/gnome-shell/+bug/1943463/+subscriptions


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

[Bug 1943342] Re: Several seconds for icons to appear and dissappear from the dock

2021-09-13 Thread Daniel van Vugt
If you're sure that show-mounts is set to false then the next step I
would recommend is to see if the parent project has the same bug:

  sudo apt install gnome-shell-extension-dashtodock

and then use the Extensions app to disable Ubuntu Dock and enable Dash
To Dock.

If the same bug is seen there then it should be reported to the
developers at: https://github.com/micheleg/dash-to-dock/issues

** Changed in: gnome-shell-extension-ubuntu-dock (Ubuntu)
   Status: New => Incomplete

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

Title:
  Several seconds for icons to appear and dissappear from the dock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1943342/+subscriptions


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

[Bug 1939966] Re: Random system stops

2021-09-13 Thread Daniel van Vugt
We should get some hints from the system log usually... Each time the
crash happens please:

1. Wait 10 seconds.

2. Reboot.

3. Run:

   journalctl -b-1 > prevboot.txt

4. Attach the resulting text file here.

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

Title:
  Random system stops

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


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

[Bug 1943342] Re: Several seconds for icons to appear and dissappear from the dock

2021-09-13 Thread Daniel van Vugt
** Changed in: gnome-shell-extension-ubuntu-dock (Ubuntu)
   Status: Incomplete => New

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

Title:
  Several seconds for icons to appear and dissappear from the dock

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-shell-extension-ubuntu-dock/+bug/1943342/+subscriptions


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

[Bug 1885191] Re: [Focal] Installation Fails with "Invalid dep_id" when using Intel VROC

2021-09-13 Thread Michael Hudson-Doyle
Everything we have is in both 20.04.3 release and impish dailies.

** Changed in: subiquity (Ubuntu Impish)
   Status: Incomplete => Fix Released

** Changed in: subiquity (Ubuntu Focal)
   Status: New => Fix Released

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

Title:
  [Focal] Installation Fails with "Invalid dep_id" when using Intel VROC

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


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

[Bug 1943447] Re: Go runtime: ppc64x binaries randomly segfault on linux 5.13rc6 (#46803)

2021-09-13 Thread Michael Hudson-Doyle
The fix for hirsute is in proposed already and will be released fairly
soon (I don't completely follow the kernel SRU cycle)

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

Title:
  Go runtime: ppc64x binaries randomly segfault on linux 5.13rc6
  (#46803)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-systems/+bug/1943447/+subscriptions


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

[Bug 1943506] [NEW] package does not run on clean install of Impish

2021-09-13 Thread Nadya Sarankhova
Public bug reported:

I have a fresh install of Impish 21.10.  Installed font-manager from
terminal via apt install.  returns follow error message and does not run

(font-manager:50648): GLib-GIO-ERROR **: 20:09:17.323: Settings schema 
'org.gnome.settings-daemon.plugins.xsettings' does not contain a key named 
'antialiasing'
Trace/breakpoint trap (core dumped)

ProblemType: Bug
DistroRelease: Ubuntu 21.10
Package: font-manager 0.8.4-1
ProcVersionSignature: Ubuntu 5.13.0-14.14-generic 5.13.1
Uname: Linux 5.13.0-14-generic x86_64
ApportVersion: 2.20.11-0ubuntu68
Architecture: amd64
CasperMD5CheckResult: pass
CurrentDesktop: ubuntu:GNOME
Date: Mon Sep 13 20:09:42 2021
InstallationDate: Installed on 2021-07-23 (52 days ago)
InstallationMedia: Ubuntu 21.10 "Impish Indri" - Alpha amd64 (20210501)
ProcEnviron:
 TERM=xterm-256color
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: font-manager
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: font-manager (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug impish wayland-session

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

Title:
  package does not run on clean install of Impish

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/font-manager/+bug/1943506/+subscriptions


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Ubuntu Foundations Team Bug Bot
The attachment "lp-1892132-Add-phys_port_name-support-on-
virPCIGetNetName.patch" seems to be a patch.  If it isn't, please remove
the "patch" flag from the attachment, remove the "patch" tag, and if you
are a member of the ~ubuntu-reviewers, unsubscribe the team.

[This is an automated message performed by a Launchpad user owned by
~brian-murray, for any issues please contact him.]

** Tags added: patch

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
** Changed in: libvirt (Ubuntu Focal)
 Assignee: (unassigned) => Matthew Ruffell (mruffell)

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1942935] Re: kernel io hangs during mdcheck/resync

2021-09-13 Thread Chad Wagner
** Tags removed: hirsute

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

Title:
  kernel io hangs during mdcheck/resync

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
Okay, this is what appears to have happened.

During the backport of:

commit 5b1c525b1f3608156884aed0dc5e925306c1e260
Author: Dmytro Linkin 
Date:   Thu Jan 21 14:15:22 2021 +0200
Subject: util: Add phys_port_name support on virPCIGetNetName
Link: 
https://github.com/libvirt/libvirt/commit/5b1c525b1f3608156884aed0dc5e925306c1e260

Another refactor commit seems to have been squashed together and
included:

commit 77401d549c52ba2b11c2132a8ca41d73a4130c85
Author: Laine Stump 
Date:   Mon Oct 26 22:04:31 2020 -0400
Subject: util:  refactor function to simplify and remove label
Link: 
https://github.com/libvirt/libvirt/commit/77401d549c52ba2b11c2132a8ca41d73a4130c85

This refactor commit directly depends on DIR* being changed to g_autoptr
in the below commit:

commit c0ae4919e386cda6e21d3ba022ee187e8b09793b
Author: Laine Stump 
Date:   Sun Oct 25 17:50:51 2020 -0400
Subject: change DIR* int g_autoptr(DIR) where appropriate
Link: 
https://github.com/libvirt/libvirt/commit/c0ae4919e386cda6e21d3ba022ee187e8b09793b#diff-d44ea20881ddbf7bd7b9e4fa9d2a6454812e5109e94160e5f97e2d40ff93a9ca

I think squashing "util:  refactor function to simplify and remove
label" into "util: Add phys_port_name support on virPCIGetNetName" was
probably a bad idea here, without also taking on "change DIR* int
g_autoptr(DIR) where appropriate".

I'll try come up with a slightly more sensible backport, possibly
keeping the initial implementation.

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1940485] Re: thermald often limits CPU frequency while on AC

2021-09-13 Thread Chris Halse Rogers
I've run that debugging script. Unfortunately, Launchpad currently
OOPSes when I try to attach the output to the bug. I'll keep trying
every now and then.

The throttling did not occur during that test, and doesn't seem to have
occurred while running the build of thermald from git, but this does not
necessarily mean the bug doesn't still occur.

I'll continue running the build of thermald from git. Should I catch it
in the bug-state, I'll re-collect the output of that script.

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

Title:
  thermald often limits CPU frequency while on AC

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


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Matthew Ruffell
** Also affects: libvirt (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Changed in: libvirt (Ubuntu Focal)
   Importance: Undecided => Critical

** Changed in: libvirt (Ubuntu Focal)
   Status: New => In Progress

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1943502] Re: Feature Freeze Exception: Update golang-defaults to 1.17

2021-09-13 Thread William Wilson
** Patch added: "Diff from 1.16~0ubuntu1"
   
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+attachment/5525054/+files/golang-defaults-117.debdiff

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

Title:
  Feature Freeze Exception: Update golang-defaults to 1.17

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+subscriptions


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

[Bug 1943502] [NEW] Feature Freeze Exception: Update golang-defaults to 1.17

2021-09-13 Thread William Wilson
Public bug reported:

This change is necessary because we always update to the latest Go
version before each release.

Go's source does not provide a changelog, but the changes in 1.17 can be
seen at https://golang.org/doc/go1.17

To test that this change will work, I have created a PPA with golang-
defaults pointing to Go 1.17, and tested a rebuild of all packages
listed in reverse-depends -b src:golang-defaults. I also tested the same
package builds with Go 1.16.7. The PPAs can be found at

https://launchpad.net/~jawn-smith/+archive/ubuntu/golang-117-rebuilds
https://launchpad.net/~jawn-smith/+archive/ubuntu/golang-baseline-rebuilds
https://launchpad.net/~jawn-smith/+archive/ubuntu/golang-defaults-117

There are 19 packages (out of about 1,750) that have new build failures
with Go 1.17. They are all in universe. The packages are:

gitlab-workhorse
golang-github-biogo-hts
golang-github-crewjam-saml
golang-github-gin-gonic-gin
golang-github-google-wire
golang-github-lucas-clemente-quick-go
golang-github-marten-seemann-qtls-go
golang-github-mattermost-xml-roundtrip-validator
golang-github-prometheus-exporter-toolkit
golang-github-sevlyar-go-daemon
golang-github-zclconf-go-cty
golang-golang-x-exp
golang-golang-x-sys
golang-gopkg-square-go-jose.v2
notary
packer
panicparse
syncthing
textql

I have already started creating patches to resolve these build failures.

** Affects: golang-defaults (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/1943502

Title:
  Feature Freeze Exception: Update golang-defaults to 1.17

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+subscriptions


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

[Bug 1943502] Re: Feature Freeze Exception: Update golang-defaults to 1.17

2021-09-13 Thread William Wilson
** Attachment added: "Build Log"
   
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+attachment/5525052/+files/golang-defaults-1.17.buildlog

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

Title:
  Feature Freeze Exception: Update golang-defaults to 1.17

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+subscriptions


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

[Bug 1943502] Re: Feature Freeze Exception: Update golang-defaults to 1.17

2021-09-13 Thread William Wilson
** Attachment added: "Install Log"
   
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+attachment/5525053/+files/golang-defaults-117-install-log

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

Title:
  Feature Freeze Exception: Update golang-defaults to 1.17

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/golang-defaults/+bug/1943502/+subscriptions


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Dan Streetman
Yeah, looking at the patch it's clear the NULL setting was accidentally
(?) left off:

-if (physPortID) {  


  
-if (firstEntryName) {  


  
-/* we didn't match the provided phys_port_id, but this 


  
- * is probably because phys_port_id isn't implemented  


  
- * for this NIC driver, so just return the first   


  
- * (probably only) netname we found.   


  
- */


  
-*netname = firstEntryName; 


  
-firstEntryName = NULL; 


  
-ret = 0;   


  
-} else {   


  
-virReportError(VIR_ERR_INTERNAL_ERROR, 


  
-   _("Could not find network device with " 


  
- "phys_port_id '%s' under PCI device at %s"),  


  
-   physPortID, device_link_sysfs_path);


  
-}  


  
+if (firstEntryName) {  


  
+/* we didn't match the provided phys_port_id / find a  


   

[Bug 1942935] Missing required logs.

2021-09-13 Thread Ubuntu Kernel Bot
This bug is missing log files that will aid in diagnosing the problem.
While running an Ubuntu kernel (not a mainline or third-party kernel)
please enter the following command in a terminal window:

apport-collect 1942935

and then change the status of the bug to 'Confirmed'.

If, due to the nature of the issue you have encountered, you are unable
to run this command, please add a comment stating that fact and change
the bug status to 'Confirmed'.

This change has been made by an automated script, maintained by the
Ubuntu Kernel Team.

** Changed in: linux (Ubuntu)
   Status: New => Incomplete

** Tags added: hirsute

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

Title:
  kernel io hangs during mdcheck/resync

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


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

[Bug 1942935] Re: kernel io hangs during mdcheck/resync

2021-09-13 Thread Chad Wagner
** Also affects: linux (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/1942935

Title:
  kernel io hangs during mdcheck/resync

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


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

[Bug 1786013] Autopkgtest regression report (linux-meta-gkeop/5.4.0.1024.27)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted linux-meta-gkeop (5.4.0.1024.27) for 
focal have finished running.
The following regressions have been reported in tests triggered by the package:

backport-iwlwifi-dkms/8324-0ubuntu3~20.04.4 (amd64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/focal/update_excuses.html#linux-meta-gkeop

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  Packaging resync

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


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

[Bug 1939349] Re: frequent hangs with latest hirsute kernel (nvidia graphics)

2021-09-13 Thread Steve Langasek
The system has now been running stably for 6 days, which is an order of
magnitude better than what I was experiencing since filing this bug
report.

I will at some point flip the firmware setting back to see how it
behaves.  Are there any other tests I should try?

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

Title:
  frequent hangs with latest hirsute kernel (nvidia graphics)

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


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

[Bug 1943166] Re: Diodon doesn't display clips until after reboot

2021-09-13 Thread Jim
I had 66 items in Diodon so figured this was a good time to test the
task bar Diodon app and sure enough, it cleared, but leaves a blank drop
down and any new copies don't show up in the drop down list.

So then I right clicked on the task bar icon...no way to 'Quit'. So then
I went to Mates drop down menu, clicked on Diodon, and then quit.
Restarted it, and it's working fine. AND I tested it from Mate's menu
and it's working fine there too...saves and displays any new copies. So
it's only the Diodon in the task bar that causes trouble and calling it
up from the menu is the work around.

I tried to do that debug but it shows as empty. Doesn't show anything
except a black box for a cursor. Are you sure that's how it's written
into Linux format in Term? Doesn't look right to me but I'm no expert.

I would prefer if all Diodon's functions worked from the task bar, but
at least now with the work around, I don't need to reboot. So thanks for
that.

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

Title:
  Diodon doesn't display clips until after reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/diodon/+bug/1943166/+subscriptions


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

[Bug 1942935] Re: kernel io hangs during mdcheck/resync

2021-09-13 Thread Chad Wagner
Here is Donald Buczek's reproducer script.  I setup an Ubuntu 20.04 VM
with latest linux-image-generic and was able to reproduce it within
maybe 10 or 15 minutes.  Exactly the same issue.

Filesystem layout built as follows:

# assemble raid devices
mdadm --create /dev/md0 --level=1 --raid-devices=2 --spare-devices=1 /dev/sda2 
/dev/sdb2 /dev/sdc2
mdadm --create /dev/md1 --level=5 --raid-devices=5 /dev/sda3 /dev/sdb3 
/dev/sdc3 /dev/sdd3 /dev/sde3


# create PVs, VGs, LVs
pvcreate /dev/md1
vgcreate vg1 /dev/md1
lvcreate --name root --extents 100%FREE vg1


# create filesystems
mkfs.ext4 /dev/md0
mkfs.ext4 /dev/vg1/root


** Attachment added: "mdhang.sh"
   
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.11/+bug/1942935/+attachment/5525050/+files/mdhang.sh

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

Title:
  kernel io hangs during mdcheck/resync

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-signed-hwe-5.11/+bug/1942935/+subscriptions


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

[Bug 1786013] Autopkgtest regression report (linux-meta-gcp-5.4/5.4.0.1053.39)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted linux-meta-gcp-5.4 (5.4.0.1053.39) for 
bionic have finished running.
The following regressions have been reported in tests triggered by the package:

systemd/237-3ubuntu10.51 (amd64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/bionic/update_excuses.html#linux-meta-gcp-5.4

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  Packaging resync

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


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

[Bug 1943299] Re: package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: ls: cannot access '/etc/apache2/mods-enabled/mpm_*.load': No such file or directory

2021-09-13 Thread Bryce Harrington
Hi Screenidhi,

The errors about all the missing apache2 mods looks odd to me, as does
the error about a missing /etc/apache2/apache2.conf.  Were you able to
get back up and running after hitting this issue, or is the server still
in fault?  If you do have an apache2.conf file, can you attach it?  If
you don't have one, can you explain more about how you're using apache
and php on your server?


** Summary changed:

- package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: installed 
apache2 package post-installation script subprocess returned error exit status 1
+ package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: ls: cannot 
access '/etc/apache2/mods-enabled/mpm_*.load': No such file or directory

** Changed in: apache2 (Ubuntu)
   Status: New => Incomplete

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

Title:
  package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: ls:
  cannot access '/etc/apache2/mods-enabled/mpm_*.load': No such file or
  directory

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


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

[Bug 1786013] Autopkgtest regression report (linux-meta-gke/5.4.0.1053.63)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted linux-meta-gke (5.4.0.1053.63) for 
focal have finished running.
The following regressions have been reported in tests triggered by the package:

backport-iwlwifi-dkms/8324-0ubuntu3~20.04.4 (amd64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/focal/update_excuses.html#linux-meta-gke

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  Packaging resync

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


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

[Bug 1943373] Re: package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to install/upgrade: o subprocesso instalado, do pacote mysql-server-8.0, o script post-installation retornou erro do status de

2021-09-13 Thread Bryce Harrington
MySQLConf.etc.mysql.my.cnf: Error: [Errno 40] Too many levels of
symbolic links: '/etc/mysql/my.cnf'

That error may mean that /etc/mysql/my.cnf is symlinked to itself. (And
if that's the case, then an obvious workaround would be to delete the
file and reinstall.)

As to how that got caused, without steps to reproduce it's hard to be
sure. This bit of code from mysql-server-8.0.postinst might have
something to do with it:

mysql_cfgdir=/etc/mysql
...
/usr/share/mysql-common/configure-symlinks install mysql 
"$mysql_cfgdir/mysql.cnf"

The corresponding logic in configure-symlinks would be:

  install)
variant="$2"
my_cnf_path="$3"
update-alternatives --install /etc/mysql/my.cnf my.cnf "$my_cnf_path" 200

In my system, this gets set up properly in alternatives:

  lrwxrwxrwx 1 root root 24 Mar 22 17:50 my.cnf ->
/etc/alternatives/my.cnf

@ Moisés: Can you provide the output of "ls -l /etc/mysql"? Thanks ahead of 
time.
Você pode fornecer a saída de "ls -l / etc / mysql"? Obrigado antecipadamente.


** Changed in: mysql-8.0 (Ubuntu)
   Status: Confirmed => Incomplete

** Summary changed:

- package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to install/upgrade: o 
subprocesso instalado, do pacote mysql-server-8.0, o script post-installation 
retornou erro do status de saída 2
+ package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to install/upgrade: 
Too many symbolic link levels: '/etc/mysql/my.cnf'

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

Title:
  package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to
  install/upgrade: Too many symbolic link levels: '/etc/mysql/my.cnf'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1943373/+subscriptions


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

[Bug 1943299] Re: package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: installed apache2 package post-installation script subprocess returned error exit status 1

2021-09-13 Thread Bryce Harrington
** Description changed:

  error occurred while upgrading my server from Ubuntu 18 to 20 LTS
  
  ProblemType: Package
  DistroRelease: Ubuntu 20.04
  Package: apache2 2.4.41-4ubuntu3.4
  ProcVersionSignature: Ubuntu 4.15.0-156.163-generic 4.15.18
  Uname: Linux 4.15.0-156-generic x86_64
  NonfreeKernelModules: zfs zunicode zavl icp zcommon znvpair
  Apache2ConfdDirListing: False
  Apache2Modules:
-  Error: command ['/usr/sbin/apachectl', '-D DUMP_MODULES'] failed with exit 
code 1: apache2: Could not open configuration file /etc/apache2/apache2.conf: 
No such file or directory
-  Action '-D DUMP_MODULES' failed.
-  The Apache error log may have more information.
+  Error: command ['/usr/sbin/apachectl', '-D DUMP_MODULES'] failed with exit 
code 1: apache2: Could not open configuration file /etc/apache2/apache2.conf: 
No such file or directory
+  Action '-D DUMP_MODULES' failed.
+  The Apache error log may have more information.
  ApportVersion: 2.20.11-0ubuntu27.18
  Architecture: amd64
  CasperMD5CheckResult: skip
  Date: Sat Sep 11 01:44:30 2021
  ErrorMessage: installed apache2 package post-installation script subprocess 
returned error exit status 1
  InstallationDate: Installed on 2018-09-26 (1081 days ago)
  InstallationMedia: Ubuntu-Server 16.04.3 LTS "Xenial Xerus" - Release amd64 
(20170801)
  Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
  PythonDetails: /usr/bin/python2.7, Python 2.7.18, python-is-python2, 2.7.17-4
  RelatedPackageVersions:
-  dpkg 1.19.7ubuntu3
-  apt  2.0.6
+  dpkg 1.19.7ubuntu3
+  apt  2.0.6
  SourcePackage: apache2
  Title: package apache2 2.4.41-4ubuntu3.4 failed to install/upgrade: installed 
apache2 package post-installation script subprocess returned error exit status 1
  UpgradeStatus: Upgraded to focal on 2021-09-11 (0 days ago)
  error.log:
-  
+ 
  modified.conffile..etc.apache2.apache2.conf: [deleted]
  modified.conffile..etc.apache2.conf-available.charset.conf: [deleted]
  modified.conffile..etc.apache2.conf-available.localized-error-pages.conf: 
[deleted]
  modified.conffile..etc.apache2.conf-available.other-vhosts-access-log.conf: 
[deleted]
  modified.conffile..etc.apache2.conf-available.security.conf: [deleted]
  modified.conffile..etc.apache2.conf-available.serve-cgi-bin.conf: [deleted]
  modified.conffile..etc.apache2.envvars: [deleted]
  modified.conffile..etc.apache2.magic: [deleted]
  modified.conffile..etc.apache2.mods-available.access_compat.load: [deleted]
  modified.conffile..etc.apache2.mods-available.actions.conf: [deleted]
  modified.conffile..etc.apache2.mods-available.actions.load: [deleted]
  modified.conffile..etc.apache2.mods-available.alias.conf: [deleted]
  modified.conffile..etc.apache2.mods-available.alias.load: [deleted]
  modified.conffile..etc.apache2.mods-available.allowmethods.load: [deleted]
  modified.conffile..etc.apache2.mods-available.asis.load: [deleted]
  modified.conffile..etc.apache2.mods-available.auth_basic.load: [deleted]
  modified.conffile..etc.apache2.mods-available.auth_digest.load: [deleted]
  modified.conffile..etc.apache2.mods-available.auth_form.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_anon.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_core.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_dbd.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_dbm.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_file.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authn_socache.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authnz_fcgi.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authnz_ldap.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_core.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_dbd.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_dbm.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_groupfile.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_host.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_owner.load: [deleted]
  modified.conffile..etc.apache2.mods-available.authz_user.load: [deleted]
  modified.conffile..etc.apache2.mods-available.autoindex.conf: [deleted]
  modified.conffile..etc.apache2.mods-available.autoindex.load: [deleted]
  modified.conffile..etc.apache2.mods-available.buffer.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cache.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cache_disk.conf: [deleted]
  modified.conffile..etc.apache2.mods-available.cache_disk.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cache_socache.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cern_meta.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cgi.load: [deleted]
  modified.conffile..etc.apache2.mods-available.cgid.conf: 

[Bug 1934998] Re: MySQLConf.etc.mysql.my.cnf: Error: [Errno 40] Too many symbolic link levels: '/etc/mysql/my.cnf'

2021-09-13 Thread Bryce Harrington
*** This bug is a duplicate of bug 1943373 ***
https://bugs.launchpad.net/bugs/1943373

** This bug has been marked a duplicate of bug 1943373
   package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to install/upgrade: 
o subprocesso instalado, do pacote mysql-server-8.0, o script post-installation 
retornou erro do status de saída 2

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

Title:
  MySQLConf.etc.mysql.my.cnf: Error: [Errno 40] Too many symbolic link
  levels: '/etc/mysql/my.cnf'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1934998/+subscriptions


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

[Bug 1943373] Re: package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to install/upgrade: o subprocesso instalado, do pacote mysql-server-8.0, o script post-installation retornou erro do status de

2021-09-13 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: mysql-8.0 (Ubuntu)
   Status: New => Confirmed

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

Title:
  package mysql-server-8.0 8.0.26-0ubuntu0.20.04.2 failed to
  install/upgrade: Too many symbolic link levels: '/etc/mysql/my.cnf'

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mysql-8.0/+bug/1943373/+subscriptions


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

[Bug 1883614] Re: sssd got killed due to segfault in ubuntu 16.04

2021-09-13 Thread Bryce Harrington
Is this reproducible on any newer Ubuntu releases?


** Changed in: sssd (Ubuntu)
   Status: Triaged => Incomplete

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

Title:
  sssd  got killed due to segfault in ubuntu 16.04

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


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

[Bug 1943049] Re: Docker ubuntu:impish: Problem executing scripts DPkg::Post-Invoke 'rm -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb /var/cache/apt/*.bin || true'

2021-09-13 Thread Michael Hudson-Doyle
We should probably snag
https://github.com/containerd/containerd/pull/5982 as well.

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

Title:
  Docker ubuntu:impish: Problem executing scripts DPkg::Post-Invoke 'rm
  -f /var/cache/apt/archives/*.deb /var/cache/apt/archives/partial/*.deb
  /var/cache/apt/*.bin || true'

To manage notifications about this bug go to:
https://bugs.launchpad.net/cloud-images/+bug/1943049/+subscriptions


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

[Bug 1943481] Re: libvirtd crashes when creating network interface pools in 6.0.0-0ubuntu8.13

2021-09-13 Thread Paul Saab
This is an updated lp-1892132-Add-phys_port_name-support-on-
virPCIGetNetName.patch that uses g_steal_pointer(); when
assigning *netname.

** Patch added: 
"lp-1892132-Add-phys_port_name-support-on-virPCIGetNetName.patch"
   
https://bugs.launchpad.net/ubuntu/+source/libvirt/+bug/1943481/+attachment/5525046/+files/lp-1892132-Add-phys_port_name-support-on-virPCIGetNetName.patch

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

Title:
  libvirtd crashes when creating network interface pools in
  6.0.0-0ubuntu8.13

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


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

[Bug 1939966] Re: Random system stops

2021-09-13 Thread Kuroš Taheri-Golværzi
I recorded a video (using my phone) of what the computer looks like once the 
crash has happened:
https://www.youtube.com/watch?v=36kg68mfrds

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

Title:
  Random system stops

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


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

[Bug 1939966] Re: Random system stops

2021-09-13 Thread Kuroš Taheri-Golværzi
It's gotten to the point where this happens at least once a day. I'm
lost for answers.

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

Title:
  Random system stops

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


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

[Bug 1938144] Re: monitor_read: unpermitted request 48 on server while attempting GSSAPI key exchange

2021-09-13 Thread Athos Ribeiro
Dmitry Belyavskiy proposed a patch for this issue at
https://github.com/openssh-gsskex/openssh-gsskex/pull/21.

I created a PPA with the proposed fix at https://launchpad.net/~athos-
ribeiro/+archive/ubuntu/openssh-gssapi-fix/+packages and I can confirm
it does fix the reproducer proposed in this bug.

Moreover, running the server with

/usr/sbin/sshd -d -p  -f /dev/null -o GSSAPIKeyExchange=yes -o
GSSAPIAuthentication=yes -o PasswordAuthentication=yes -o
PermitRootLogin=yes

And logging in as root, will prompt for the root password and get you a
proper ssh connection.

Finally, I also ran the available openssh dep8 test suite to ensure the
patch would not introduce covered regrerssions.

autopkgtest [17:57:18]:  summary
regress  PASS

Niklas, it would be really nice if you could also test the proposed
patch to confirm it does fix the reported issue.

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

Title:
  monitor_read: unpermitted request 48 on server while attempting GSSAPI
  key exchange

To manage notifications about this bug go to:
https://bugs.launchpad.net/openssh/+bug/1938144/+subscriptions


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

[Bug 1943288] Re: Soname change and transition started without a ffe

2021-09-13 Thread Steve Langasek
Ok so it turns out I misread this: the upload to Debian was in June, but
this was only synced to impish on Sep 10.  And while it's not an soname
transition in the usual sense, it is a new upstream version, which we
have reports of regressing the desktop.  Yes this needs to be reviewed
with respect to feature freeze.

It is also presently blocking a lot of packages in -proposed which are
being rebuilt against libffi8 and can't migrate.

** Changed in: libffi (Ubuntu)
   Status: Fix Released => New

** Changed in: libffi (Ubuntu)
 Assignee: (unassigned) => Matthias Klose (doko)

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

Title:
  Soname change and transition started without a ffe

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


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

[Bug 1943491] [NEW] GIMP Batch Process crashes after doing a batch format change

2021-09-13 Thread Jason A. McPeak
Public bug reported:

```
GNU Image Manipulation Program version 2.10.24
git-describe: GIMP_2_10_24
Build: unknown rev 0 for linux
# C compiler #
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/9/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none:hsa
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 
9.3.0-17ubuntu1~20.04' --with-bugurl=file:///usr/share/doc/gcc-9/README.Bugs 
--enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++,gm2 --prefix=/usr 
--with-gcc-major-version-only --program-suffix=-9 
--program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id 
--libexecdir=/usr/lib --without-included-gettext --enable-threads=posix 
--libdir=/usr/lib --enable-nls --enable-clocale=gnu --enable-libstdcxx-debug 
--enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new 
--enable-gnu-unique-object --disable-vtable-verify --enable-plugin 
--enable-default-pie --with-system-zlib --with-target-system-zlib=auto 
--enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 
--with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib 
--with-tune=generic 
--enable-offload-targets=nvptx-none=/build/gcc-9-HskZEa/gcc-9-9.3.0/debian/tmp-nvptx/usr,hsa
 --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu 
--host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04) 

# Libraries #
using babl version 0.1.86 (compiled against version 0.1.86)
using GEGL version 0.4.30 (compiled against version 0.4.30)
using GLib version 2.64.6 (compiled against version 2.64.6)
using GdkPixbuf version 2.40.0 (compiled against version 2.40.0)
using GTK+ version 2.24.32 (compiled against version 2.24.32)
using Pango version 1.44.7 (compiled against version 1.44.7)
using Fontconfig version 2.13.1 (compiled against version 2.13.1)
using Cairo version 1.16.0 (compiled against version 1.16.0)

```
> GIMP-CRITICAL: _gimp_wire_read_int8: assertion 'count >= 0' failed

Stack trace:
```

# Stack traces obtained from PID 36692 - Thread 36692 #

[New LWP 36693]
[New LWP 36694]
[New LWP 36695]
[New LWP 36696]
[New LWP 36697]
[New LWP 36698]
[New LWP 36699]
[New LWP 36700]
[New LWP 36701]
[New LWP 36702]
[New LWP 36721]
[New LWP 36774]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
__libc_read (nbytes=256, buf=0x7ffcf5b33ea0, fd=19) at 
../sysdeps/unix/sysv/linux/read.c:26
  Id   Target Id   Frame 
* 1Thread 0x7f0320673340 (LWP 36692) "gimp-2.10"   __libc_read (nbytes=256, 
buf=0x7ffcf5b33ea0, fd=19) at ../sysdeps/unix/sysv/linux/read.c:26
  2Thread 0x7f031ff27700 (LWP 36693) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  3Thread 0x7f031f726700 (LWP 36694) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  4Thread 0x7f031ef25700 (LWP 36695) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  5Thread 0x7f031e724700 (LWP 36696) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  6Thread 0x7f031df23700 (LWP 36697) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  7Thread 0x7f031d722700 (LWP 36698) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  8Thread 0x7f031cf21700 (LWP 36699) "worker"  syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  9Thread 0x7f02ff49c700 (LWP 36700) "gmain"   0x7f03214afaff in 
__GI___poll (fds=0x55bd93ad1d90, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  10   Thread 0x7f02fec9b700 (LWP 36701) "gdbus"   0x7f03214afaff in 
__GI___poll (fds=0x55bd93ae3ef0, nfds=2, timeout=-1) at 
../sysdeps/unix/sysv/linux/poll.c:29
  11   Thread 0x7f02f0861700 (LWP 36702) "async"   syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  12   Thread 0x7f02e7066700 (LWP 36721) "dashboard"   syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
  13   Thread 0x7f02e7fff700 (LWP 36774) "swap writer" syscall () at 
../sysdeps/unix/sysv/linux/x86_64/syscall.S:38

Thread 13 (Thread 0x7f02e7fff700 (LWP 36774)):
#0  syscall () at ../sysdeps/unix/sysv/linux/x86_64/syscall.S:38
No locals.
#1  0x7f03217a5623 in g_cond_wait () from 
/usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#2  0x7f0321caa3ad in ?? () from /usr/lib/x86_64-linux-gnu/libgegl-0.4.so.0
No symbol table info available.
#3  0x7f0321781ad1 in ?? () from /usr/lib/x86_64-linux-gnu/libglib-2.0.so.0
No symbol table info available.
#4  0x7f0321595609 in start_thread (arg=) at 
pthread_create.c:477
ret = 
pd = 
unwind_buf = {cancel_jmp_buf = {{jmp_buf = {139650458973952, 

[Bug 1786013] Autopkgtest regression report (linux-meta-gke-5.4/5.4.0.1053.56~18.04.18)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted linux-meta-gke-5.4 
(5.4.0.1053.56~18.04.18) for bionic have finished running.
The following regressions have been reported in tests triggered by the package:

kpatch/0.5.0-0ubuntu1.1 (amd64)
systemd/unknown (amd64)
lxc/3.0.3-0ubuntu1~18.04.1 (amd64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/bionic/update_excuses.html#linux-meta-gke-5.4

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  Packaging resync

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


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

[Bug 1937078] Re: Drivers: hv: vmbus: Fix duplicate CPU assignments within a device

2021-09-13 Thread Marcelo Cerri
Hi, Tim. I'm dropping the 5.4 backport from focal/linux-azure in the
current cycle because this commit is causing the boot to hang:

http://10.246.72.46:8080/view/all/job/focal-linux-azure-azure-
amd64-5.4.0-Standard_A2_v2-ubuntu_boot/4/console

I managed to reproduce the problem manually and reverting the commit
solved the problem.

** Changed in: linux-azure (Ubuntu Focal)
   Status: Fix Committed => In Progress

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

Title:
  Drivers: hv: vmbus: Fix duplicate CPU assignments within a device

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-azure/+bug/1937078/+subscriptions


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

[Bug 1943489] Re: package virtualbox-ext-pack (not installed) failed to install/upgrade: new virtualbox-ext-pack package pre-installation script subprocess returned error exit status 1

2021-09-13 Thread Apport retracing service
** Tags removed: need-duplicate-check

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

Title:
  package virtualbox-ext-pack (not installed) failed to install/upgrade:
  new virtualbox-ext-pack package pre-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/virtualbox-ext-pack/+bug/1943489/+subscriptions


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

[Bug 1943489] [NEW] package virtualbox-ext-pack (not installed) failed to install/upgrade: new virtualbox-ext-pack package pre-installation script subprocess returned error exit status 1

2021-09-13 Thread Ted Dykhorst
Public bug reported:

E: /var/cache/apt/archives/virtualbox-ext-
pack_6.1.26-2~ubuntu1.20.04.1_all.deb: new virtualbox-ext-pack package
pre-installation script subprocess returned error exit status 1

ProblemType: Package
DistroRelease: Ubuntu 20.04
Package: virtualbox-ext-pack (not installed)
ProcVersionSignature: Ubuntu 5.11.0-34.36~20.04.1-generic 5.11.22
Uname: Linux 5.11.0-34-generic x86_64
ApportVersion: 2.20.11-0ubuntu27.18
Architecture: amd64
CasperMD5CheckResult: skip
Date: Tue Sep 14 08:24:47 2021
DuplicateSignature:
 package:virtualbox-ext-pack:(not installed)
 Preparing to unpack 
.../11-virtualbox-ext-pack_6.1.26-2~ubuntu1.20.04.1_all.deb ...
 User did not accept the license.
 dpkg: error processing archive 
/tmp/apt-dpkg-install-AdAj6t/11-virtualbox-ext-pack_6.1.26-2~ubuntu1.20.04.1_all.deb
 (--unpack):
  new virtualbox-ext-pack package pre-installation script subprocess returned 
error exit status 1
ErrorMessage: new virtualbox-ext-pack package pre-installation script 
subprocess returned error exit status 1
InstallationDate: Installed on 2021-09-11 (2 days ago)
InstallationMedia: Ubuntu 20.04 LTS "Focal Fossa" - Release amd64 (20200423)
Python3Details: /usr/bin/python3.8, Python 3.8.10, python3-minimal, 
3.8.2-0ubuntu2
PythonDetails: N/A
RelatedPackageVersions:
 dpkg 1.19.7ubuntu3
 apt  2.0.6
SourcePackage: virtualbox-ext-pack
Title: package virtualbox-ext-pack (not installed) failed to install/upgrade: 
new virtualbox-ext-pack package pre-installation script subprocess returned 
error exit status 1
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: virtualbox-ext-pack (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-package focal

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

Title:
  package virtualbox-ext-pack (not installed) failed to install/upgrade:
  new virtualbox-ext-pack package pre-installation script subprocess
  returned error exit status 1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/virtualbox-ext-pack/+bug/1943489/+subscriptions


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

[Bug 1943379] acpidump.txt

2021-09-13 Thread benk
apport information

** Attachment added: "acpidump.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525039/+files/acpidump.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] ProcInterrupts.txt

2021-09-13 Thread benk
apport information

** Attachment added: "ProcInterrupts.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525036/+files/ProcInterrupts.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] UdevDb.txt

2021-09-13 Thread benk
apport information

** Attachment added: "UdevDb.txt"
   https://bugs.launchpad.net/bugs/1943379/+attachment/5525038/+files/UdevDb.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] ProcModules.txt

2021-09-13 Thread benk
apport information

** Attachment added: "ProcModules.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525037/+files/ProcModules.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] ProcEnviron.txt

2021-09-13 Thread benk
apport information

** Attachment added: "ProcEnviron.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525035/+files/ProcEnviron.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Lsusb-v.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Lsusb-v.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525032/+files/Lsusb-v.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] ProcCpuinfo.txt

2021-09-13 Thread benk
apport information

** Attachment added: "ProcCpuinfo.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525033/+files/ProcCpuinfo.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] ProcCpuinfoMinimal.txt

2021-09-13 Thread benk
apport information

** Attachment added: "ProcCpuinfoMinimal.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525034/+files/ProcCpuinfoMinimal.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Lsusb.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Lsusb.txt"
   https://bugs.launchpad.net/bugs/1943379/+attachment/5525030/+files/Lsusb.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Lsusb-t.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Lsusb-t.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525031/+files/Lsusb-t.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Lspci-vt.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Lspci-vt.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525029/+files/Lspci-vt.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Dependencies.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Dependencies.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525027/+files/Dependencies.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Lspci.txt

2021-09-13 Thread benk
apport information

** Attachment added: "Lspci.txt"
   https://bugs.launchpad.net/bugs/1943379/+attachment/5525028/+files/Lspci.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1943379] Re: CD tray ejected on hibernate resume

2021-09-13 Thread benk
apport information

** Tags added: apport-collected focal

** Description changed:

  Over the past few days I seem to have become subject to this kernel bug:
  https://bugzilla.kernel.org/show_bug.cgi?id=213759
  
  I'm running Ubuntu 20.04.3 LTS which is using kernel 5.11.0-34-generic.
  It looks like this issue was fixed in 5.14, so could we get a kernel
  update or a backport of the patch? See the mainline kernel fix
  
https://github.com/torvalds/linux/commit/5c04243a56a7977185b00400e59ca7e108004faf.
  
  Thanks!
+ --- 
+ ProblemType: Bug
+ ApportVersion: 2.20.11-0ubuntu27.18
+ Architecture: amd64
+ CasperMD5CheckResult: skip
+ CurrentDesktop: ubuntu:GNOME
+ CustomUdevRuleFiles: 70-snap.freecad.rules 70-snap.1password.rules 
70-snap.vlc.rules 70-snap.snap-store.rules 70-snap.spotify.rules 
70-snap.snapd.rules 70-snap.gimp.rules 70-snap.gnome-clocks.rules
+ DistroRelease: Ubuntu 20.04
+ MachineType: System manufacturer System Product Name
+ NonfreeKernelModules: nvidia_modeset nvidia
+ Package: udev 245.4-4ubuntu3.11 [modified: lib/udev/rules.d/60-cdrom_id.rules]
+ PackageArchitecture: amd64
+ ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-5.11.0-34-generic 
root=UUID=2aab2dde-b565-4aa7-8e94-9a25ea27a2f3 ro quiet splash vt.handoff=7
+ ProcVersionSignature: Ubuntu 5.11.0-34.36~20.04.1-generic 5.11.22
+ Tags:  focal
+ Uname: Linux 5.11.0-34-generic x86_64
+ UpgradeStatus: No upgrade log present (probably fresh install)
+ UserGroups: adm cdrom dip lpadmin lxd plugdev sambashare sudo
+ _MarkForUpload: True
+ dmi.bios.date: 09/19/2013
+ dmi.bios.release: 4.6
+ dmi.bios.vendor: American Megatrends Inc.
+ dmi.bios.version: 1601
+ dmi.board.asset.tag: To be filled by O.E.M.
+ dmi.board.name: P8B75-V
+ dmi.board.vendor: ASUSTeK COMPUTER INC.
+ dmi.board.version: Rev X.0x
+ dmi.chassis.asset.tag: Asset-1234567890
+ dmi.chassis.type: 3
+ dmi.chassis.vendor: Chassis Manufacture
+ dmi.chassis.version: Chassis Version
+ dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr1601:bd09/19/2013:br4.6:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:skuSKU:rvnASUSTeKCOMPUTERINC.:rnP8B75-V:rvrRevX.0x:cvnChassisManufacture:ct3:cvrChassisVersion:
+ dmi.product.family: To be filled by O.E.M.
+ dmi.product.name: System Product Name
+ dmi.product.sku: SKU
+ dmi.product.version: System Version
+ dmi.sys.vendor: System manufacturer

** Attachment added: "CurrentDmesg.txt"
   
https://bugs.launchpad.net/bugs/1943379/+attachment/5525026/+files/CurrentDmesg.txt

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

Title:
  CD tray ejected on hibernate resume

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


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

[Bug 1917148] Autopkgtest regression report (procps/2:3.3.16-1ubuntu2.3)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted procps (2:3.3.16-1ubuntu2.3) for focal 
have finished running.
The following regressions have been reported in tests triggered by the package:

xpra/3.0.6+dfsg1-1build1 (amd64)
reprotest/0.7.14 (amd64, arm64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/focal/update_excuses.html#procps

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  ps version is UNKNOWN in procps 2:3.3.16-1ubuntu2

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


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

[Bug 1786013] Autopkgtest regression report (linux-meta-gkeop-5.4/5.4.0.1024.25~18.04.25)

2021-09-13 Thread Ubuntu SRU Bot
All autopkgtests for the newly accepted linux-meta-gkeop-5.4 
(5.4.0.1024.25~18.04.25) for bionic have finished running.
The following regressions have been reported in tests triggered by the package:

lxc/3.0.3-0ubuntu1~18.04.1 (amd64)
kpatch/0.5.0-0ubuntu1.1 (amd64)


Please visit the excuses page listed below and investigate the failures, 
proceeding afterwards as per the StableReleaseUpdates policy regarding 
autopkgtest regressions [1].

https://people.canonical.com/~ubuntu-archive/proposed-
migration/bionic/update_excuses.html#linux-meta-gkeop-5.4

[1] https://wiki.ubuntu.com/StableReleaseUpdates#Autopkgtest_Regressions

Thank you!

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

Title:
  Packaging resync

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


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

[Bug 1943488] [NEW] when typeing too fast in the search line searching stops to work

2021-09-13 Thread Balazs Pere
Public bug reported:

1. $ lsb_release -rd
Description:Ubuntu 20.04.3 LTS
Release:20.04

2. $ apt-cache policy nautilus
nautilus:
  Installed: 1:3.36.3-0ubuntu1
  Candidate: 1:3.36.3-0ubuntu1
  Version table:
 *** 1:3.36.3-0ubuntu1 500
500 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
100 /var/lib/dpkg/status
 1:3.36.1.1-1ubuntu2 500
500 http://archive.ubuntu.com/ubuntu focal/main amd64 Packages

3. When I try to find a file/directory in nautilus I start to type some
letters (or press CTRL-f befor typing). Normally nautilus tries to find
the files and shows the result.

4. When I am typing too fast (or normal speed?) the searching hangs up,
a small blue circle goes around in the left bottom corner and nothing
happens for long time. If I cut (CTRL-a CTRL-x) the searched text and
paste it back (CTRL-f CTRL-v) the searching is successful, and the
result appears immidietly.

The situation is same e.g. in gnome-software, so I think this problem is
globally exists in gnome.

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


** Tags: nautilus searching typing

** Tags added: nautilus searching typing

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

Title:
  when typeing too fast in the search line searching stops to work

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


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

[Bug 1938645] Re: Ubuntu 20.04.2 getting kernel I/O errors connecting to Sony Walkman over USB using MTP protocol

2021-09-13 Thread Paul White
Thanks for the feedback.
Closing as requested.

** Changed in: linux (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  Ubuntu 20.04.2 getting kernel I/O errors connecting to Sony Walkman
  over USB using MTP protocol

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


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

[Bug 1617995] Re: Evince says "The document contains no pages" while viewing pdf file

2021-09-13 Thread Chris Bainbridge
Example PDF (at least, it seems to reproduce the same error message):
https://sec.report/lux/doc/102081415.pdf

I opened an upstream issue:
https://gitlab.freedesktop.org/poppler/poppler/-/issues/1140

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

Title:
  Evince says "The document contains no pages" while viewing pdf file

To manage notifications about this bug go to:
https://bugs.launchpad.net/evince/+bug/1617995/+subscriptions


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

[Bug 1617995] Re: Evince says "The document contains no pages" while viewing pdf file

2021-09-13 Thread Chris Bainbridge
** Bug watch added: gitlab.freedesktop.org/poppler/poppler/-/issues #1140
   https://gitlab.freedesktop.org/poppler/poppler/-/issues/1140

** Also affects: evince via
   https://gitlab.freedesktop.org/poppler/poppler/-/issues/1140
   Importance: Unknown
   Status: Unknown

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

Title:
  Evince says "The document contains no pages" while viewing pdf file

To manage notifications about this bug go to:
https://bugs.launchpad.net/evince/+bug/1617995/+subscriptions


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

[Bug 1941745] Re: [FFe][sync][sru] sos upstream 4.2

2021-09-13 Thread Eric Desrochers
I'll probably drop 'avocado-framework' testing for now and keep the
nosetest.

override_dh_auto_test:
nosetests3 -v --with-cover --cover-package=sos tests/unittests

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

Title:
  [FFe][sync][sru] sos upstream 4.2

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


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

[Bug 1943484] Re: Focal update: v5.4.141 upstream stable release

2021-09-13 Thread Kamal Mostafa
** Changed in: linux (Ubuntu Focal)
   Status: New => In Progress

** Changed in: linux (Ubuntu Focal)
   Importance: Undecided => Medium

** Changed in: linux (Ubuntu Focal)
 Assignee: (unassigned) => Kamal Mostafa (kamalmostafa)

** Description changed:

+ SRU Justification
  
- SRU Justification
+ Impact:
+    The upstream process for stable tree updates is quite similar
+    in scope to the Ubuntu SRU process, e.g., each patch has to
+    demonstrably fix a bug, and each patch is vetted by upstream
+    by originating either directly from a mainline/stable Linux tree or
+    a minimally backported form of that patch. The following upstream
+    stable patches should be included in the Ubuntu kernel:
  
- Impact:
-The upstream process for stable tree updates is quite similar
-in scope to the Ubuntu SRU process, e.g., each patch has to
-demonstrably fix a bug, and each patch is vetted by upstream
-by originating either directly from a mainline/stable Linux tree or
-a minimally backported form of that patch. The following upstream
-stable patches should be included in the Ubuntu kernel:
+    v5.4.141 upstream stable release
+    from git://git.kernel.org/
  
-v5.4.141 upstream stable release
-from git://git.kernel.org/
+ KVM: SVM: Fix off-by-one indexing when nullifying last used SEV VMCB
+ tee: Correct inappropriate usage of TEE_SHM_DMA_BUF flag
+ media: v4l2-mem2mem: always consider OUTPUT queue during poll
+ tracing: Reject string operand in the histogram expression
+ usb: dwc3: Stop active transfers before halting the controller
+ usb: dwc3: gadget: Allow runtime suspend if UDC unbinded
+ usb: dwc3: gadget: Restart DWC3 gadget when enabling pullup
+ usb: dwc3: gadget: Prevent EP queuing while stopping transfers
+ usb: dwc3: gadget: Clear DEP flags after stop transfers in ep disable
+ usb: dwc3: gadget: Disable gadget IRQ during pullup disable
+ usb: dwc3: gadget: Avoid runtime resume if disabling pullup
+ KVM: X86: MMU: Use the correct inherited permissions to get shadow page
+ USB:ehci:fix Kunpeng920 ehci hardware problem
+ ALSA: hda: Add quirk for ASUS Flow x13
+ ppp: Fix generating ppp unit id when ifname is not specified
+ ovl: prevent private clone if bind mount is not allowed
+ btrfs: make qgroup_free_reserved_data take btrfs_inode
+ btrfs: make btrfs_qgroup_reserve_data take btrfs_inode
+ btrfs: qgroup: allow to unreserve range without releasing other ranges
+ btrfs: qgroup: try to flush qgroup space when we get -EDQUOT
+ btrfs: transaction: Cleanup unused TRANS_STATE_BLOCKED
+ btrfs: qgroup: remove ASYNC_COMMIT mechanism in favor of reserve 
retry-after-EDQUOT
+ btrfs: fix lockdep splat when enabling and disabling qgroups
+ net: xilinx_emaclite: Do not print real IOMEM pointer
+ btrfs: qgroup: don't commit transaction when we already hold the handle
+ btrfs: export and rename qgroup_reserve_meta
+ btrfs: don't flush from btrfs_delayed_inode_reserve_metadata
+ Linux 5.4.141
+ UBUNTU: upstream stable to v5.4.141

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

Title:
  Focal update: v5.4.141 upstream stable release

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


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

[Bug 1943312] Re: dependency problems of version 3.4.2-1ubuntu3

2021-09-13 Thread surajvinay
Same here. The fix worked. Updated everything. But the main environment shows 
same error. 'Oh no! Something has gone wrong.!
I do have. Xfce session and xubuntu session which works on lightdm and hence 
able to work.
But doesn't work though gdm3. 
Tried a reinstall of ubuntu-desktop, gnome-shell, gnome and 
ubuntu-gnome-desktop. Still same.
Reinstall of gdm3 not possible as it can't be downloaded. That's where I am at.

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

Title:
  dependency problems of version 3.4.2-1ubuntu3

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


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

[Bug 1921518] Re: OpenSSL "double free" error

2021-09-13 Thread Vladimir Sokolovsky
Dimitri, we use the latest https://github.com/Mellanox/pka/tree/releases that 
includes the fix proposed by you.
Aren't you able to reproduce this issue on your side anymore?

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

Title:
  OpenSSL "double free" error

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


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

[Bug 1940417]

2021-09-13 Thread Simon-may
(In reply to simon.may from comment #28)
> In fact, it seems really strange what values for `layout.css.devPixelsPerPx` 
> trigger this – `1.22` also seems to work without issues, while other values 
> (like `1.21`) don’t.

Sorry, nevermind, `1.22` does have problems with some entries in the
bookmarks toolbar.

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

Title:
  On Wayland toolbar menus are sometimes invisible/flickering

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1940417/+subscriptions


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

[Bug 1940417]

2021-09-13 Thread Simon-may
In fact, it seems really strange what values for
`layout.css.devPixelsPerPx` trigger this – `1.22` also seems to work
without issues, while other values (like `1.21`) don’t.

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

Title:
  On Wayland toolbar menus are sometimes invisible/flickering

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1940417/+subscriptions


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

[Bug 1940417]

2021-09-13 Thread Simon-may
(In reply to Jani Uusitalo from comment #26)
> I can't speak for Jeroen, but I played around with the upstream builds (both 
> 92 and 91) and my faulty profile a bit and managed to isolate the trigger 
> combination for this: `MOZ_ENABLE_WAYLAND=1` and setting 
> `layout.css.devPixelsPerPx` to my preferred value of `1.2`; either resetting 
> `layout.css.devPixelsPerPx` to its default (`-1.0`), or running Firefox 
> without `MOZ_ENABLE_WAYLAND=1` will make the toolbar items work again. 
> [Here's the graphics portion of my 
> `about:support`](https://pastebin.mozilla.org/OdgM9Oox).
> 
> **So my steps to reproduce this are:**
> 1. start Firefox with `MOZ_ENABLE_WAYLAND=1`
> 2. set `layout.css.devPixelsPerPx` to `1.2`
> 3. click on the hamburger menu button
> 
> **What I expect to happen:**
> For the hamburger menu content to show.
> 
> **What happens instead:**
> The hamburger menu content flickers or doesn't show at all.

Just for reference/as a workaround: A value of `1.25` for
`layout.css.devPixelsPerPx` seems to work flawlessly for me (I was also
using `1.2` :-) ).

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

Title:
  On Wayland toolbar menus are sometimes invisible/flickering

To manage notifications about this bug go to:
https://bugs.launchpad.net/firefox/+bug/1940417/+subscriptions


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

  1   2   3   4   >