diff options
author | Patrick J Volkerding <volkerdi@slackware.com> | 2010-05-19 08:58:23 +0000 |
---|---|---|
committer | Eric Hameleers <alien@slackware.com> | 2018-05-31 22:43:05 +0200 |
commit | b76270bf9e6dd375e495fec92140a79a79415d27 (patch) | |
tree | 3dbed78b2279bf9f14207a16dc634b90995cbd40 /source/l/hal/patches/fix_led_crash.diff | |
parent | 5a12e7c134274dba706667107d10d231517d3e05 (diff) | |
download | current-b76270bf9e6dd375e495fec92140a79a79415d27.tar.gz |
Slackware 13.1slackware-13.1
Wed May 19 08:58:23 UTC 2010
Slackware 13.1 x86_64 stable is released!
Lots of thanks are due -- see the RELEASE_NOTES and the rest of the
ChangeLog for credits. The ISOs are on their way to replication,
a 6 CD-ROM 32-bit set and a dual-sided 32-bit/64-bit x86/x86_64 DVD.
We are taking pre-orders now at store.slackware.com, and offering
a discount if you sign up for a subscription. Consider picking up
a copy to help support the project. Thanks again to the Slackware
community for testing, contributing, and generally holding us to a
high level of quality. :-)
Enjoy!
Diffstat (limited to 'source/l/hal/patches/fix_led_crash.diff')
-rw-r--r-- | source/l/hal/patches/fix_led_crash.diff | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/source/l/hal/patches/fix_led_crash.diff b/source/l/hal/patches/fix_led_crash.diff deleted file mode 100644 index 3b50bbca..00000000 --- a/source/l/hal/patches/fix_led_crash.diff +++ /dev/null @@ -1,26 +0,0 @@ -commit aec7c567419a1b8c33be1d08f962eea31a53e317 -Author: Andrey Borzenkov <arvidjaar@mail.ru> -Date: Tue Jul 14 21:34:07 2009 +0200 - - work aroud crash caused by LED device handling - - During suspend led device is removed; during resume it is recreated. - Apparently removing led device cause hald-addon- leds to exit - (thus disconnecting D-Bus connection); and sometimes next "add" event - comes too early, before hald had chance to notice missing addon. - - Adds extra check to hald_singleton_device_added() to ensure we do not - abort on disconnected D-Bus connection. - -diff -Nur hal-0.5.11.orig/hald/hald_dbus.c hal-0.5.11/hald/hald_dbus.c ---- hal-0.5.11.orig/hald/hald_dbus.c 2008-05-07 18:23:29.000000000 -0500 -+++ hal-0.5.11/hald/hald_dbus.c 2009-07-16 16:19:04.629624258 -0500 -@@ -3432,7 +3432,7 @@ - if (dbus_connection_send_with_reply (connection, - message, - &pending_call, -- /*-1*/ 8000)) { -+ /*-1*/ 8000) && pending_call) { - /*HAL_INFO (("connection=%x message=%x", connection, message));*/ - dbus_pending_call_set_notify (pending_call, - reply_from_singleton_device_changed, |