All of lore.kernel.org
 help / color / mirror / Atom feed
* + isdn-fix-bchannel_bh-call-from-isar_bh.patch added to -mm tree
@ 2007-03-25  8:32 akpm
  0 siblings, 0 replies; only message in thread
From: akpm @ 2007-03-25  8:32 UTC (permalink / raw)
  To: mm-commits; +Cc: jkosina, kkeil


The patch titled
     ISDN: fix BChannel_bh() call from isar_bh()
has been added to the -mm tree.  Its filename is
     isdn-fix-bchannel_bh-call-from-isar_bh.patch

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find
out what to do about this

------------------------------------------------------
Subject: ISDN: fix BChannel_bh() call from isar_bh()
From: Jiri Kosina <jkosina@suse.cz>

isar_bh() bh handler calls another (compatible) bh handler - BChannel_bh()
- but passes struct BCState* instead of struct work_struct*, which seems
wrong.

Cc: Karsten Keil <kkeil@suse.de>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 drivers/isdn/hisax/isar.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff -puN drivers/isdn/hisax/isar.c~isdn-fix-bchannel_bh-call-from-isar_bh drivers/isdn/hisax/isar.c
--- a/drivers/isdn/hisax/isar.c~isdn-fix-bchannel_bh-call-from-isar_bh
+++ a/drivers/isdn/hisax/isar.c
@@ -440,7 +440,7 @@ isar_bh(struct work_struct *work)
 {
 	struct BCState *bcs = container_of(work, struct BCState, tqueue);
 
-	BChannel_bh(bcs);
+	BChannel_bh(work);
 	if (test_and_clear_bit(B_LL_NOCARRIER, &bcs->event))
 		ll_deliver_faxstat(bcs, ISDN_FAX_CLASS1_NOCARR);
 	if (test_and_clear_bit(B_LL_CONNECT, &bcs->event))
_

Patches currently in -mm which might be from jkosina@suse.cz are

isdn-fix-bchannel_bh-call-from-isar_bh.patch
git-hid.patch
bluetooth-hid-quirks-mightymouse-quirk.patch
git-ipwireless_cs.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-03-25  8:32 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-03-25  8:32 + isdn-fix-bchannel_bh-call-from-isar_bh.patch added to -mm tree akpm

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.