This is a note to let you know that I've just added the patch titled
mISDN: Bugfix for layer2 fixed TEI mode
to the 3.5-stable tree which can be found at:
http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary
The filename of the patch is:
misdn-bugfix-for-layer2-fixed-tei-mode.patch
and it can be found in the queue-3.5 subdirectory.
If you, or anyone else, feels it should not be added to the stable tree,
please let <[email protected]> know about it.
>From 25099335944a23db75d4916644122c746684e093 Mon Sep 17 00:00:00 2001
From: Karsten Keil <[email protected]>
Date: Sat, 4 Aug 2012 00:14:25 +0000
Subject: mISDN: Bugfix for layer2 fixed TEI mode
From: Karsten Keil <[email protected]>
commit 25099335944a23db75d4916644122c746684e093 upstream.
If a fixed TEI is used, the initial state of the layer 2 statmachine need to be
4 (TEI assigned). This was true only for Point to Point connections, but not
for the other fixed TEIs. It was not found before, because usually only the
TEI 0 is used as fixed TEI for PtP mode, but if you try X31 packet mode
connections with SAPI 16, TEI 1, it did fail.
Signed-off-by: Karsten Keil <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
---
drivers/isdn/mISDN/layer2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/drivers/isdn/mISDN/layer2.c
+++ b/drivers/isdn/mISDN/layer2.c
@@ -2222,7 +2222,7 @@ create_l2(struct mISDNchannel *ch, u_int
InitWin(l2);
l2->l2m.fsm = &l2fsm;
if (test_bit(FLG_LAPB, &l2->flag) ||
- test_bit(FLG_PTP, &l2->flag) ||
+ test_bit(FLG_FIXED_TEI, &l2->flag) ||
test_bit(FLG_LAPD_NET, &l2->flag))
l2->l2m.state = ST_L2_4;
else
Patches currently in stable-queue which might be from [email protected] are
queue-3.5/misdn-bugfix-only-few-bytes-are-transfered-on-a-connection.patch
queue-3.5/misdn-bugfix-for-layer2-fixed-tei-mode.patch
--
To unsubscribe from this list: send the line "unsubscribe stable" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html