[<prev] [next>] [day] [month] [year] [list]
Message-ID: <224028.52554.qm@web52009.mail.re2.yahoo.com>
Date: Wed, 31 Oct 2007 10:05:46 -0700 (PDT)
From: Matti Linnanvuori <mattilinnanvuori@...oo.com>
To: linux-kernel@...r.kernel.org
Cc: bugme-daemon@...nel-bugs.osdl.org
Subject: [PATCH] telephony: phonedev panics if unregistering device not registered [Bug 9266]
From: Matti Linnanvuori <mattilinnanvuori@...oo.com>
Remove panic from phonedev.
Signed-off-by: Matti Linnanvuori <mattilinnanvuori@...oo.com>
---
--- a/drivers/telephony/phonedev.c 2007-10-31 17:52:55.784817000 +0200
+++ linux-2.6.24/drivers/telephony/phonedev.c 2007-10-31 17:55:48.144879000 +0200
@@ -120,9 +120,8 @@ int phone_register_device(struct phone_d
void phone_unregister_device(struct phone_device *pfd)
{
mutex_lock(&phone_lock);
- if (phone_device[pfd->minor] != pfd)
- panic("phone: bad unregister");
- phone_device[pfd->minor] = NULL;
+ if (likely(phone_device[pfd->minor] == pfd))
+ phone_device[pfd->minor] = NULL;
mutex_unlock(&phone_lock);
}
Heute schon einen Blick in die Zukunft von E-Mails wagen? Versuchen SieĀ“s mit dem neuen Yahoo! Mail. www.yahoo.de/mail
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists