Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933595AbZJFWTR (ORCPT ); Tue, 6 Oct 2009 18:19:17 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S933543AbZJFWTO (ORCPT ); Tue, 6 Oct 2009 18:19:14 -0400 Received: from mail.pxnet.com ([195.227.45.7]:41011 "EHLO mail.pxnet.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933575AbZJFWTN (ORCPT ); Tue, 6 Oct 2009 18:19:13 -0400 From: Tilman Schmidt Subject: [PATCH 01/11] gigaset: fix reject/hangup handling To: David Miller , netdev@vger.kernel.org, linux-kernel@vger.kernel.org CC: Hansjoerg Lipp , Karsten Keil , Karsten Keil , isdn4linux@listserv.isdn4linux.de, i4ldeveloper@listserv.isdn4linux.de Message-ID: <20091006-patch-gigaset-01.tilman@imap.cc> In-Reply-To: <20091006-patch-gigaset-00.tilman@imap.cc> References: <20091006-patch-gigaset-00.tilman@imap.cc> Date: Wed, 7 Oct 2009 00:18:26 +0200 (CEST) X-Spam-Score: -2.112 () AWL,BAYES_00,RDNS_NONE Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1232 Lines: 34 Signal D channel disconnect in a few cases where it was missed, including when an incoming call is disconnected before it was accepted. Impact: error handling improvement Signed-off-by: Tilman Schmidt --- drivers/isdn/gigaset/ev-layer.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/drivers/isdn/gigaset/ev-layer.c b/drivers/isdn/gigaset/ev-layer.c index 2d91049..ff2ec2c 100644 --- a/drivers/isdn/gigaset/ev-layer.c +++ b/drivers/isdn/gigaset/ev-layer.c @@ -707,6 +707,11 @@ static void disconnect(struct at_state_t **at_state_p) if (bcs) { /* B channel assigned: invoke hardware specific handler */ cs->ops->close_bchannel(bcs); + /* notify LL */ + if (bcs->chstate & (CHS_D_UP | CHS_NOTIFY_LL)) { + bcs->chstate &= ~(CHS_D_UP | CHS_NOTIFY_LL); + gigaset_i4l_channel_cmd(bcs, ISDN_STAT_DHUP); + } } else { /* no B channel assigned: just deallocate */ spin_lock_irqsave(&cs->lock, flags); -- 1.6.2.1.214.ge986c -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/