Bug 667787 - KStatusNotifierItem leaks D-Bus connections, makes D-Bus leak FDs and eat 100% CPU
Summary: KStatusNotifierItem leaks D-Bus connections, makes D-Bus leak FDs and eat 100...
Keywords:
Status: CLOSED ERRATA
Alias: None
Product: Fedora
Classification: Fedora
Component: kdelibs
Version: 14
Hardware: Unspecified
OS: Unspecified
low
medium
Target Milestone: ---
Assignee: Than Ngo
QA Contact: Fedora Extras Quality Assurance
URL:
Whiteboard:
: 684027 (view as bug list)
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 2011-01-06 19:08 UTC by Gilboa Davara
Modified: 2018-11-14 13:04 UTC (History)
22 users (show)

Fixed In Version: kdemultimedia-4.6.5-2.fc14
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2011-07-18 22:44:30 UTC
Type: ---
Embargoed:


Attachments (Terms of Use)


Links
System ID Private Priority Status Summary Last Updated
KDE Software Compilation 261180 0 None None None Never

Description Gilboa Davara 2011-01-06 19:08:18 UTC
As the title suggests, I'm seeing the above on multiple machine w/ completely different hardware and usage patterns.

The only thing in common is KDE. (Can it be a KDE issue?)

$ pstack 31820
Thread 2 (Thread 0x7f2901170700 (LWP 31821)):
#0  0x00007f290165d083 in poll () from /lib64/libc.so.6
#1  0x00007f29021772f4 in ?? () from /lib64/libselinux.so.1
#2  0x00007f2902177708 in avc_netlink_loop () from /lib64/libselinux.so.1
#3  0x00007f2901b35d5b in start_thread () from /lib64/libpthread.so.0
#4  0x00007f2901666a7d in clone () from /lib64/libc.so.6
Thread 1 (Thread 0x7f290278a7e0 (LWP 31820)):
#0  0x00007f290165d083 in poll () from /lib64/libc.so.6
#1  0x00007f2902805280 in ?? ()
#2  0x00007f29028056ad in ?? ()
#3  0x00007f29027eb719 in main ()

$ strace -p 31820
Process 31820 attached - interrupt to quit
poll([{fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=9, events=POLLIN}, {fd=10, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, events=POLLIN}, {fd=14, events=POLLIN}, {fd=15, events=POLLIN}, {fd=16, events=POLLIN}, {fd=17, events=POLLIN}, {fd=18, events=POLLIN}, {fd=22, events=POLLIN}, {fd=19, events=POLLIN}, {fd=23, events=POLLIN}, {fd=24, events=POLLIN}, {fd=25, events=POLLIN}, {fd=26, events=POLLIN}, {fd=27, events=POLLIN}, {fd=28, events=POLLIN}, {fd=29, events=POLLIN}, {fd=30, events=POLLIN}, {fd=31, events=POLLIN}, {fd=32, events=POLLIN}, {fd=33, events=POLLIN}, {fd=34, events=POLLIN}, {fd=35, events=POLLIN}, {fd=36, events=POLLIN}, {fd=37, events=POLLIN}, {fd=38, events=POLLIN}, {fd=39, events=POLLIN}, {fd=40, events=POLLIN}, ...], 1017, -1) = 1 ([{fd=3, revents=POLLIN}])
accept4(3, 0x7fffac534600, [16], SOCK_CLOEXEC) = -1 EMFILE (Too many open files)
fcntl(-1, F_GETFD)                      = -1 EBADF (Bad file descriptor)
poll([{fd=3, events=POLLIN}, {fd=6, events=POLLIN}, {fd=7, events=POLLIN}, {fd=9, events=POLLIN}, {fd=10, events=POLLIN}, {fd=12, events=POLLIN}, {fd=13, events=POLLIN}, {fd=14, events=POLLIN}, {fd=15, events=POLLIN}, {fd=16, events=POLLIN}, {fd=17, events=POLLIN}, {fd=18, events=POLLIN}, {fd=22, events=POLLIN}, {fd=19, events=POLLIN}, {fd=23, events=POLLIN}, {fd=24, events=POLLIN}, {fd=25, events=POLLIN}, {fd=26, events=POLLIN}, {fd=27, events=POLLIN}, {fd=28, events=POLLIN}, {fd=29, events=POLLIN}, {fd=30, events=POLLIN}, {fd=31, events=POLLIN}, {fd=32, events=POLLIN}, {fd=33, events=POLLIN}, {fd=34, events=POLLIN}, {fd=35, events=POLLIN}, {fd=36, events=POLLIN}, {fd=37, events=POLLIN}, {fd=38, events=POLLIN}, {fd=39, events=POLLIN}, {fd=40, events=POLLIN}, ...], 1017, -1) = 1 ([{fd=3, revents=POLLIN}])
accept4(3, 0x7fffac534600, [16], SOCK_CLOEXEC) = -1 EMFILE (Too many open files)
* Repeat 100,000 times.

$ ls /proc/31820/fd | wc -l
1024

- Gilboa

Comment 1 Colin Walters 2011-01-06 20:01:00 UTC
Looks like normal case of too many dbus clients, which indicates a buggy app or OS shell.  Reassigning.

Comment 2 Gilboa Davara 2011-01-30 05:45:38 UTC
Rex,

Report upstream?
Both me and my colleges are hitting this on a weekly basis.

- Gilboa

Comment 3 Gilboa Davara 2011-01-30 05:47:03 UTC
Colin,

I'm almost certain that this is a upstream dbus question, but, shouldn't dbus handle lack-of-fd's in some graceful manner? (E.g. high/low water mark?) - instead of polling the CPU to death?

- Gilboa

Comment 4 Rex Dieter 2011-02-03 13:48:58 UTC
My best guess is that it's a particular app or widget that's the troublemaker here.  (I have doubts that it's a general problem with the kde shell, else this would be very widespread, but who knows).

Regardless, bugs.kde.org is one first step I guess.

Comment 5 Epifanov Ivan 2011-02-04 13:13:43 UTC
I can confirm it.
Fedora 14, kde 4.5.5, dbus 1.4.0.
Seems like, however, that's a kde or dbus bug, see https://bugs.kde.org/show_bug.cgi?id=221231 and https://bugs.kde.org/show_bug.cgi?id=261180

Comment 6 Rex Dieter 2011-02-04 14:10:07 UTC
Re comment #4
I'll try to find if there's some not-too-painful way to debug apps' dbus usage and fd's.  Any help or advice would be much appreciated.

Comment 7 Sam 2011-02-04 16:22:22 UTC
Reproduced here:
Fedora 14 x64
kernel-2.6.35.10-74.fc14.x86_64
dbus-1.4.0-2.fc14.x86_64
kdebase-4.5.5-1.fc14.x86_64

Comment 8 Rex Dieter 2011-02-04 16:38:42 UTC
OK, as an attempt to try to get a handle on trouble-makers, folks, please identify which plasmoids you use, and well as most-often used (kde or not) applications.  Thanks.

Comment 9 Sam 2011-02-04 16:47:22 UTC
I almost only run: konsole, Firefox, XEmacs, and Pidgin, all the current FC14-x64 versions, KDE exclusively.  OpenOffice from time to time, and it's not required to exhibit dbus-daemon runaway.  I'm pretty sure Firefox is the culprit in my case, but can't say absolutely for certain.  I did see dbus-daemon drop back down to normal after closing Firefox one time, but that hasn't been 100% reproducible.

Comment 10 Epifanov Ivan 2011-02-04 17:17:41 UTC
I'm running: konsole, opera, transmission-gtk, sometimes chromium on first screen and openbox, awn and smplayer on second. All the current
FC14-x64 versions.
Plasmoids: gmail-plasmoid, plasma_pyweather, plasma_applet_paste and smooth-tasks.

(In reply to comment #9)
Yep, I'm also sometimes can get dbus-daemon to return to normal, but after closing opera, transmission or awn in my case. But it returns to 100% load after 5-10 minutes anyway.

Comment 11 Gilboa Davara 2011-02-05 05:33:06 UTC
Applications:
Multiple copies of gvim.
Konsole.
OpenOffice write / calc.
Firefox.
gkrellm.

Widgets:
Activity per virtual desktop.
Each desktop with it's own set of Folder views.
Each desktop has Analog clock and YaWP.

On my coworker's machine he has:
Applications:
Konsole.
Firefox.
Qt-designer and/or eclipse.
gkrellm.

Widgets:
Single activity for all virtual desktops.
Multiple folder views, generic weather widget.

Rex,
Can I somehow force dbus to dump which applications use which FD's?

- Gilboa

Comment 12 Epifanov Ivan 2011-02-08 06:25:50 UTC
Ok, on fresh start i have around 70 fd's in dbus proc folder with all my software described above launched, which than got upped to 76 after yumupdatesd and package-kit update check.

Strange thing is, when dbus-daemon near fd's limit (1023 fd's) every time i, for example, click a link in psi fd's upped to 1024 and dbus-daemon starts eating my cpu. But on fresh start (when fd's are just around 70) fd's not upped by clicking links.

Also, the only common app i see is konsole, but i don't thing it can be troublemaker.
So, can (k)packagekit be a culprit? Because dbus-daemon fd's doesn't come back down to value it was before launching updater.

Comment 13 Gilboa Davara 2011-02-08 10:15:52 UTC
I second the kpackagekit observation (not exactly kpackagekit, but kpackagekit-icon...).
I suffered another dbus-attach yesterday and started searching for highest FD count in /proc and kpackagekit ate ~500 fds.

$ cat /proc/4924/cmdline 
/usr/libexec/kde4/kpackagekitsmarticon
$ ls -l /proc/4924/fd | wc -l
531

Should I changing component to kpackagekit/icon?

- Gilboa

Comment 14 Epifanov Ivan 2011-02-13 15:15:41 UTC
Yep, can confirm, thats kpackagekitsmart icon:

# top -b -n 1 | grep dbus-daemon
 1306 dbus      20   0 22932 2168  780 S  0.0  0.1   1:32.28 ?          1:32 dbus-daemon --system                                                            
29571 iSage     20   0 26400 4904  652 S  0.0  0.2   0:06.56 ?          0:06 /bin/dbus-daemon --fork --print-pid 5 --print-address 7 --session

# ls /proc/29571/fd | wc -l
208

# top -b -n 1 | grep kpackagekit
30515 iSage     20   0  451m  13m 5568 S  0.0  0.7   0:02.63 ?          0:02 /usr/libexec/kde4/kpackagekitsmarticon                                          

# kill 30515
# ls /proc/29571/fd | wc -l                                                                                                               
72

Comment 15 Sam 2011-02-13 20:18:41 UTC
And I can add that I've had kpackagekitsmarticon running when I've had the issue as well.  Although I haven't had the issue lately and kpackagekit is still running as before.

Comment 16 Gilboa Davara 2011-02-14 17:07:14 UTC
Ivan and Sam,

Can you test kpackagekitsmarticon instead of kpackagekit itself?
(At least in my case kpackagekitsmarticon was the culprit)

- Gilboa

Comment 17 Epifanov Ivan 2011-02-14 17:34:03 UTC
Yes. I've already written above that it was kpackagekitsmarticon in my case too.

Comment 18 Ian Donaldson 2011-03-10 21:15:31 UTC
Me too.  kpackagekitsmarticon was holding nearly 1000 FD's and killing
it freed most of the FD's in dbus-daemon.

kpackagekit-0.6.3.3-1.fc14.x86_64

Looks like it auto-respawns so I can cron a kill job as a workaround...

Comment 19 Kevin Kofler 2011-03-10 23:08:23 UTC
*** Bug 684027 has been marked as a duplicate of this bug. ***

Comment 20 Gilboa Davara 2011-03-12 07:42:04 UTC
Kevin / Rex,

Should we open an upstream BZ?

- Gilboa

Comment 21 Kevin Kofler 2011-03-12 16:02:15 UTC
Yes please.

Comment 23 Simon McVittie 2011-05-03 08:47:43 UTC
> I'm almost certain that this is a upstream dbus question, but, shouldn't dbus
> handle lack-of-fd's in some graceful manner?

This is an upstream D-Bus bug (23194) already. Fixing it requires some restructuring, so I have three branches awaiting review, which are all needed (in this order) to fix it:

* https://bugs.freedesktop.org/show_bug.cgi?id=33336
* https://bugs.freedesktop.org/show_bug.cgi?id=33342
* https://bugs.freedesktop.org/show_bug.cgi?id=23194

Comment 24 Jon Burgess 2011-06-13 22:04:39 UTC
I am hitting this on F15 and killing kpackagekitsmarticon gets things working again. 

If I'm reading it correctly this upstream bug has an attachment which should fix this: https://bugs.kde.org/show_bug.cgi?id=261180

Comment 25 Rex Dieter 2011-06-13 23:04:11 UTC
That looks like it to me, I'll see about doing a build including that patch for further testing.

Comment 26 Rex Dieter 2011-06-14 14:10:23 UTC
updating summary, reassigning to kdelibs.

Comment 27 Fedora Update System 2011-06-27 14:41:48 UTC
kde-l10n-4.6.4-1.fc14, kdeaccessibility-4.6.4-1.fc14, kdeadmin-4.6.4-1.fc14, kdeartwork-4.6.4-1.fc14, kdebase-runtime-4.6.4-1.fc14, kdebase-workspace-4.6.4-2.fc14, kdebindings-4.6.4-1.fc14, kdeedu-4.6.4-1.fc14, kdegames-4.6.4-1.fc14, kdemultimedia-4.6.4-1.fc14, kdenetwork-4.6.4-1.fc14, kdepimlibs-4.6.4-1.fc14, kdeplasma-addons-4.6.4-1.fc14, kdesdk-4.6.4-1.fc14, kdetoys-4.6.4-1.fc14, kdeutils-4.6.4-1.fc14, oxygen-icon-theme-4.6.4-2.fc14, kdelibs-4.6.4-2.fc14, kdebase-4.6.4-2.fc14, kdegraphics-4.6.4-2.fc14 has been submitted as an update for Fedora 14.
https://admin.fedoraproject.org/updates/kde-l10n-4.6.4-1.fc14,kdeaccessibility-4.6.4-1.fc14,kdeadmin-4.6.4-1.fc14,kdeartwork-4.6.4-1.fc14,kdebase-4.6.4-2.fc14,kdebase-runtime-4.6.4-1.fc14,kdebase-workspace-4.6.4-2.fc14,kdebindings-4.6.4-1.fc14,kdeedu-4.6.4-1.fc14,kdegames-4.6.4-1.fc14,kdegraphics-4.6.4-2.fc14,kdelibs-4.6.4-2.fc14,kdemultimedia-4.6.4-1.fc14,kdenetwork-4.6.4-1.fc14,kdepimlibs-4.6.4-1.fc14,kdeplasma-addons-4.6.4-1.fc14,kdesdk-4.6.4-1.fc14,kdetoys-4.6.4-1.fc14,kdeutils-4.6.4-1.fc14,oxygen-icon-theme-4.6.4-2.fc14

Comment 28 Fedora Update System 2011-06-27 14:42:07 UTC
kde-l10n-4.6.4-1.fc15, kdeaccessibility-4.6.4-1.fc15, kdeadmin-4.6.4-1.fc15, kdeartwork-4.6.4-1.fc15, kdebase-runtime-4.6.4-1.fc15, kdebase-workspace-4.6.4-2.fc15, kdebindings-4.6.4-1.fc15, kdeedu-4.6.4-1.fc15, kdegames-4.6.4-1.fc15, kdemultimedia-4.6.4-1.fc15, kdenetwork-4.6.4-1.fc15, kdepimlibs-4.6.4-1.fc15, kdeplasma-addons-4.6.4-1.fc15, kdesdk-4.6.4-1.fc15, kdetoys-4.6.4-1.fc15, kdeutils-4.6.4-1.fc15, oxygen-icon-theme-4.6.4-2.fc15, kdelibs-4.6.4-2.fc15, kdebase-4.6.4-2.fc15, kdegraphics-4.6.4-2.fc15 has been submitted as an update for Fedora 15.
https://admin.fedoraproject.org/updates/kde-l10n-4.6.4-1.fc15,kdeaccessibility-4.6.4-1.fc15,kdeadmin-4.6.4-1.fc15,kdeartwork-4.6.4-1.fc15,kdebase-4.6.4-2.fc15,kdebase-runtime-4.6.4-1.fc15,kdebase-workspace-4.6.4-2.fc15,kdebindings-4.6.4-1.fc15,kdeedu-4.6.4-1.fc15,kdegames-4.6.4-1.fc15,kdegraphics-4.6.4-2.fc15,kdelibs-4.6.4-2.fc15,kdemultimedia-4.6.4-1.fc15,kdenetwork-4.6.4-1.fc15,kdepimlibs-4.6.4-1.fc15,kdeplasma-addons-4.6.4-1.fc15,kdesdk-4.6.4-1.fc15,kdetoys-4.6.4-1.fc15,kdeutils-4.6.4-1.fc15,oxygen-icon-theme-4.6.4-2.fc15

Comment 29 Fedora Update System 2011-06-28 20:26:03 UTC
Package kdelibs-4.6.4-5.fc15, kdepimlibs-4.6.4-2.fc15, kde-l10n-4.6.4-1.fc15, kdeaccessibility-4.6.4-1.fc15, kdeadmin-4.6.4-1.fc15, kdeartwork-4.6.4-1.fc15, kdebase-runtime-4.6.4-1.fc15, kdebase-workspace-4.6.4-2.fc15, kdebindings-4.6.4-1.fc15, kdeedu-4.6.4-1.fc15, kdegames-4.6.4-1.fc15, kdemultimedia-4.6.4-1.fc15, kdenetwork-4.6.4-1.fc15, kdeplasma-addons-4.6.4-1.fc15, kdesdk-4.6.4-1.fc15, kdetoys-4.6.4-1.fc15, kdeutils-4.6.4-1.fc15, oxygen-icon-theme-4.6.4-2.fc15, kdebase-4.6.4-2.fc15, kdegraphics-4.6.4-2.fc15:
* should fix your issue,
* was pushed to the Fedora 15 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing kdelibs-4.6.4-5.fc15 kdepimlibs-4.6.4-2.fc15 kde-l10n-4.6.4-1.fc15 kdeaccessibility-4.6.4-1.fc15 kdeadmin-4.6.4-1.fc15 kdeartwork-4.6.4-1.fc15 kdebase-runtime-4.6.4-1.fc15 kdebase-workspace-4.6.4-2.fc15 kdebindings-4.6.4-1.fc15 kdeedu-4.6.4-1.fc15 kdegames-4.6.4-1.fc15 kdemultimedia-4.6.4-1.fc15 kdenetwork-4.6.4-1.fc15 kdeplasma-addons-4.6.4-1.fc15 kdesdk-4.6.4-1.fc15 kdetoys-4.6.4-1.fc15 kdeutils-4.6.4-1.fc15 oxygen-icon-theme-4.6.4-2.fc15 kdebase-4.6.4-2.fc15 kdegraphics-4.6.4-2.fc15'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/kde-l10n-4.6.4-1.fc15,kdeaccessibility-4.6.4-1.fc15,kdeadmin-4.6.4-1.fc15,kdeartwork-4.6.4-1.fc15,kdebase-4.6.4-2.fc15,kdebase-runtime-4.6.4-1.fc15,kdebase-workspace-4.6.4-2.fc15,kdebindings-4.6.4-1.fc15,kdeedu-4.6.4-1.fc15,kdegames-4.6.4-1.fc15,kdegraphics-4.6.4-2.fc15,kdelibs-4.6.4-5.fc15,kdemultimedia-4.6.4-1.fc15,kdenetwork-4.6.4-1.fc15,kdepimlibs-4.6.4-2.fc15,kdeplasma-addons-4.6.4-1.fc15,kdesdk-4.6.4-1.fc15,kdetoys-4.6.4-1.fc15,kdeutils-4.6.4-1.fc15,oxygen-icon-theme-4.6.4-2.fc15
then log in and leave karma (feedback).

Comment 30 Jon Burgess 2011-06-29 20:18:04 UTC
Updated to latest kde testing updates & rebooted but the number of open sockets still appears to be growing over time. It looks like the patch proposed on the linked KDE bug and in the current testing package did not work as intended. If you look again at the KDE bug the final committed patch shows a different fix has been applied to the KDE tree.

Comment 31 Fedora Update System 2011-07-07 13:03:35 UTC
kde-l10n-4.6.5-1.fc15,kdeaccessibility-4.6.5-1.fc15,kdeadmin-4.6.5-1.fc15,kdeartwork-4.6.5-1.fc15,kdebase-4.6.5-1.fc15,kdebase-runtime-4.6.5-1.fc15,kdebase-workspace-4.6.5-2.fc15,kdebindings-4.6.5-1.fc15,kdeedu-4.6.5-1.fc15,kdegames-4.6.5-1.fc15,kdegraphics-4.6.5-3.fc15,kdelibs-4.6.5-1.fc15,kdemultimedia-4.6.5-1.fc15,kdenetwork-4.6.5-1.fc15,kdepimlibs-4.6.5-1.fc15,kdeplasma-addons-4.6.5-1.fc15,kdesdk-4.6.5-1.fc15,kdetoys-4.6.5-1.fc15,kdeutils-4.6.5-2.fc15,oxygen-icon-theme-4.6.5-1.fc15 has been submitted as an update for Fedora 15.
https://admin.fedoraproject.org/updates/kde-l10n-4.6.5-1.fc15,kdeaccessibility-4.6.5-1.fc15,kdeadmin-4.6.5-1.fc15,kdeartwork-4.6.5-1.fc15,kdebase-4.6.5-1.fc15,kdebase-runtime-4.6.5-1.fc15,kdebase-workspace-4.6.5-2.fc15,kdebindings-4.6.5-1.fc15,kdeedu-4.6.5-1.fc15,kdegames-4.6.5-1.fc15,kdegraphics-4.6.5-3.fc15,kdelibs-4.6.5-1.fc15,kdemultimedia-4.6.5-1.fc15,kdenetwork-4.6.5-1.fc15,kdepimlibs-4.6.5-1.fc15,kdeplasma-addons-4.6.5-1.fc15,kdesdk-4.6.5-1.fc15,kdetoys-4.6.5-1.fc15,kdeutils-4.6.5-2.fc15,oxygen-icon-theme-4.6.5-1.fc15

Comment 32 Fedora Update System 2011-07-07 13:43:45 UTC
kde-l10n-4.6.5-1.fc14, kdeaccessibility-4.6.5-1.fc14, kdeadmin-4.6.5-1.fc14, kdeartwork-4.6.5-1.fc14, kdebase-4.6.5-1.fc14, kdebase-runtime-4.6.5-1.fc14, kdebase-workspace-4.6.5-2.fc14, kdebindings-4.6.5-1.fc14, kdeedu-4.6.5-1.fc14, kdegames-4.6.5-1.fc14, kdegraphics-4.6.5-3.fc14, kdelibs-4.6.5-1.fc14, kdemultimedia-4.6.5-1.fc14, kdenetwork-4.6.5-1.fc14, kdepimlibs-4.6.5-1.fc14, kdeplasma-addons-4.6.5-1.fc14, kdesdk-4.6.5-1.fc14, kdetoys-4.6.5-1.fc14, kdeutils-4.6.5-2.fc14, oxygen-icon-theme-4.6.5-1.fc14 has been submitted as an update for Fedora 14.
https://admin.fedoraproject.org/updates/kde-l10n-4.6.5-1.fc14,kdeaccessibility-4.6.5-1.fc14,kdeadmin-4.6.5-1.fc14,kdeartwork-4.6.5-1.fc14,kdebase-4.6.5-1.fc14,kdebase-runtime-4.6.5-1.fc14,kdebase-workspace-4.6.5-2.fc14,kdebindings-4.6.5-1.fc14,kdeedu-4.6.5-1.fc14,kdegames-4.6.5-1.fc14,kdegraphics-4.6.5-3.fc14,kdelibs-4.6.5-1.fc14,kdemultimedia-4.6.5-1.fc14,kdenetwork-4.6.5-1.fc14,kdepimlibs-4.6.5-1.fc14,kdeplasma-addons-4.6.5-1.fc14,kdesdk-4.6.5-1.fc14,kdetoys-4.6.5-1.fc14,kdeutils-4.6.5-2.fc14,oxygen-icon-theme-4.6.5-1.fc14

Comment 33 Fedora Update System 2011-07-18 22:43:58 UTC
kde-l10n-4.6.5-1.fc15, kdeaccessibility-4.6.5-1.fc15, kdeadmin-4.6.5-1.fc15, kdeartwork-4.6.5-1.fc15, kdebase-4.6.5-1.fc15, kdebase-runtime-4.6.5-1.fc15, kdebase-workspace-4.6.5-2.fc15, kdebindings-4.6.5-1.fc15, kdeedu-4.6.5-1.fc15, kdegames-4.6.5-1.fc15, kdegraphics-4.6.5-3.fc15, kdelibs-4.6.5-1.fc15, kdenetwork-4.6.5-1.fc15, kdepimlibs-4.6.5-1.fc15, kdeplasma-addons-4.6.5-1.fc15, kdesdk-4.6.5-1.fc15, kdetoys-4.6.5-1.fc15, kdeutils-4.6.5-2.fc15, oxygen-icon-theme-4.6.5-1.fc15, kdemultimedia-4.6.5-2.fc15 has been pushed to the Fedora 15 stable repository.  If problems still persist, please make note of it in this bug report.

Comment 34 Fedora Update System 2011-07-23 01:52:48 UTC
kdemultimedia-4.6.5-2.fc14, kde-l10n-4.6.5-1.fc14, kdeaccessibility-4.6.5-1.fc14, kdeadmin-4.6.5-1.fc14, kdeartwork-4.6.5-1.fc14, kdebase-4.6.5-1.fc14, kdebase-runtime-4.6.5-1.fc14, kdebase-workspace-4.6.5-2.fc14, kdebindings-4.6.5-1.fc14, kdeedu-4.6.5-1.fc14, kdegames-4.6.5-1.fc14, kdegraphics-4.6.5-3.fc14, kdelibs-4.6.5-1.fc14, kdenetwork-4.6.5-1.fc14, kdepimlibs-4.6.5-1.fc14, kdeplasma-addons-4.6.5-1.fc14, kdesdk-4.6.5-1.fc14, kdetoys-4.6.5-1.fc14, kdeutils-4.6.5-2.fc14, oxygen-icon-theme-4.6.5-1.fc14 has been pushed to the Fedora 14 stable repository.  If problems still persist, please make note of it in this bug report.


Note You need to log in before you can comment on or make changes to this bug.