http://bugzilla.opensuse.org/show_bug.cgi?id=1198817
Bug ID: 1198817
Summary: Firefox 99 and Thunderbird 91 unusable (extremly slow)
since last update (today)
Classification: openSUSE
Product: openSUSE Tumbleweed
Version: Current
Hardware: x86-64
OS: openSUSE Tumbleweed
Status: NEW
Severity: Critical
Priority: P5 - None
Component: Firefox
Assignee: factory-mozilla(a)lists.opensuse.org
Reporter: krjdev(a)gmail.com
QA Contact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
Firefox 99 and Thunderbird 91 are extremely slow since the last update today.
Must write this bug report with Chrome.
No issues with older releases and with other applications.
--
You are receiving this mail because:
You are the assignee for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1198877
Bug ID: 1198877
Summary: Firefox with high CPU usage on network change event(?)
Classification: openSUSE
Product: openSUSE Tumbleweed
Version: Current
Hardware: x86-64
OS: Linux
Status: NEW
Severity: Normal
Priority: P5 - None
Component: Firefox
Assignee: factory-mozilla(a)lists.opensuse.org
Reporter: jengelh(a)inai.de
QA Contact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
After about 2 hours of firefox 99 running (was fine with earlier versions i.e.
98/etc.), the subthread known as "Netlink Monitor" in /proc/xxx/stat goes into
an infinite loop.
strace shows:
poll([{fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 2, -1) = 1 ([{fd=24,
revents=POLLERR}])
poll([{fd=22, events=POLLIN}, {fd=24, events=POLLIN}], 2, -1) = 1 ([{fd=24,
revents=POLLERR}])
over and over again.
lsof:
firefox 30312 jengelh 22r FIFO 0,13 0t0 4037553
pipe
firefox 30312 jengelh 24u netlink 0t0 4041789
ROUTE
gdb:
(gdb) bt
#0 0x00007f5c92e8052f in poll () at /lib64/libc.so.6
#1 0x00007f5c88c8d68b in poll () at /usr/include/bits/poll2.h:39
#2 operator() () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/netwerk/system/netlink/NetlinkService.cpp:1205
#3 eintr_retry<mozilla::net::NetlinkService::Run()::<lambda()> > ()
at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/netwerk/system/netlink/NetlinkService.cpp:45
#4 mozilla::net::NetlinkService::Run() () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/netwerk/system/netlink/NetlinkService.cpp:1203
#5 0x00007f5c8882b4a5 in nsThread::ProcessNextEvent(bool, bool*) () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/xpcom/threads/nsThread.cpp:1167
#6 0x00007f5c888043d8 in NS_ProcessNextEvent(nsIThread*, bool) () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/xpcom/threads/nsThreadUtils.cpp:467
#7 0x00007f5c88d5ae0d in
mozilla::ipc::MessagePumpForNonMainThreads::Run(base::MessagePump::Delegate*)
()
at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/ipc/glue/MessagePump.cpp:300
#8 0x00007f5c88d349b5 in MessageLoop::RunInternal() () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/ipc/chromium/src/base/message_loop.cc:331
#9 MessageLoop::RunHandler() () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/ipc/chromium/src/base/message_loop.cc:324
#10 MessageLoop::Run() () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/ipc/chromium/src/base/message_loop.cc:306
#11 0x00007f5c888238c9 in nsThread::ThreadFunc(void*) () at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/xpcom/threads/nsThread.cpp:389
#12 0x00007f5c92c3e110 in () at /lib64/libnspr4.so
#13 0x000055b617ce67ea in set_alt_signal_stack_and_start(PthreadCreateParams*)
()
at
/usr/src/debug/MozillaFirefox-99.0.1-1.1.x86_64/toolkit/crashreporter/pthread_create_interposer/pthread_create_interposer.cpp:80
#14 0x00007f5c92e042ba in start_thread () at /lib64/libc.so.6
#15 0x00007f5c92e8e460 in clone3 () at /lib64/libc.so.6
code in question:
1193 while (!shutdown) {
1194 if (mOutgoingMessages.Length() &&
!mOutgoingMessages[0]->IsPending()) {
1195 if (!mOutgoingMessages[0]->Send(netlinkSocket)) {
1196 LOG(("Failed to send netlink message"));
1197 mOutgoingMessages.RemoveElementAt(0);
1198 // try to send another message if available before polling
1199 continue;
1200 }
1201 }
1202
1203 int rc = eintr_retry([&]() {
1204 AUTO_PROFILER_THREAD_SLEEP;
1205 return poll(fds, 2, GetPollWait());
1206 });
1207
1208 if (rc > 0) {
1209 if (fds[0].revents & POLLIN) {
1210 // shutdown, abort the loop!
1211 LOG(("thread shutdown received, dying...\n"));
1212 shutdown = true;
1213 } else if (fds[1].revents & POLLIN) {
1214 LOG(("netlink message received, handling it...\n"));
1215 OnNetlinkMessage(netlinkSocket);
1216 }
1217 } else if (rc < 0) {
1218 rv = NS_ERROR_FAILURE;
1219 break;
1220 }
1221 }
stepping and repetition pattern:
(gdb) n
1194 if (mOutgoingMessages.Length() &&
!mOutgoingMessages[0]->IsPending()) {
(gdb)
1203 int rc = eintr_retry([&]() {
(gdb)
1208 if (rc > 0) {
(gdb)
1209 if (fds[0].revents & POLLIN) {
(gdb)
1213 } else if (fds[1].revents & POLLIN) {
(gdb)
1194 if (mOutgoingMessages.Length() &&
!mOutgoingMessages[0]->IsPending()) {
As shown above by strace, there's a POLLERR condition on the netlink socket,
and FF fails to handle it.
--
You are receiving this mail because:
You are the assignee for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1198374
Bug ID: 1198374
Summary: Several tabs in Firefox crash since 20220410
Classification: openSUSE
Product: openSUSE Tumbleweed
Version: Current
Hardware: x86-64
OS: openSUSE Tumbleweed
Status: NEW
Severity: Major
Priority: P5 - None
Component: Firefox
Assignee: factory-mozilla(a)lists.opensuse.org
Reporter: robby.engelmann(a)r-engelmann.de
QA Contact: qa-bugs(a)suse.de
Found By: ---
Blocker: ---
Since last snapshot several websites (e.g.
https://build.opensuse.org/project/show/openSUSE:Factory) included e.g.
password internal page lead to crashed tabs.
Being back and sticking to 20220409 for now.
Operating System: openSUSE Tumbleweed 20220409
KDE Plasma Version: 5.24.80
KDE Frameworks Version: 5.94.0
Qt Version: 5.15.2
Kernel Version: 5.17.1-1-default (64-bit)
Graphics Platform: Wayland
Processors: 8 �� Intel�� Core��� i7-10510U CPU @ 1.80GHz
Memory: 31.0 GiB of RAM
Graphics Processor: Mesa Intel�� UHD Graphics
Manufacturer: TUXEDO
Product Name: TUXEDO
System Version: Not Applicable
--
You are receiving this mail because:
You are the assignee for the bug.
http://bugzilla.opensuse.org/show_bug.cgi?id=1197308http://bugzilla.opensuse.org/show_bug.cgi?id=1197308#c8
John Shand <jshand2013(a)gmail.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution|--- |WORKSFORME
--- Comment #8 from John Shand <jshand2013(a)gmail.com> ---
this seems to have disappeared by using default settings
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.suse.com/show_bug.cgi?id=1198085
Martin Sirringhaus <martin.sirringhaus(a)suse.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Test-bug. |Make factory-mozilla the
| |default assignee of the
| |Firefox component
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.suse.com/show_bug.cgi?id=1198085
Martin Sirringhaus <martin.sirringhaus(a)suse.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Assignee|mozilla-bugs(a)suse.de |factory-mozilla(a)lists.opens
| |use.org
--
You are receiving this mail because:
You are the assignee for the bug.
https://bugzilla.suse.com/show_bug.cgi?id=1197308https://bugzilla.suse.com/show_bug.cgi?id=1197308#c6
Martin Sirringhaus <martin.sirringhaus(a)suse.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jshand2013(a)gmail.com
Flags| |needinfo?(jshand2013@gmail.
| |com)
--- Comment #6 from Martin Sirringhaus <martin.sirringhaus(a)suse.com> ---
Could you elaborate what "bookmarks are disabled" means?
What happens if you press Ctrl+B and click on a saved bookmark?
--
You are receiving this mail because:
You are the assignee for the bug.