From bf70b14cabc495ea52c8cb493fd621615e732a68 Mon Sep 17 00:00:00 2001 From: jpeeler Date: Thu, 21 Aug 2008 23:46:39 +0000 Subject: Merged revisions 139391 via svnmerge from https://origsvn.digium.com/svn/asterisk/trunk ................ r139391 | jpeeler | 2008-08-21 18:41:50 -0500 (Thu, 21 Aug 2008) | 11 lines Merged revisions 139387 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r139387 | jpeeler | 2008-08-21 18:39:31 -0500 (Thu, 21 Aug 2008) | 3 lines Fixes loop that could possibly never exit in the event of a channel never being able to be opened or specify after a restart. (closes issue #11017) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@139400 f38db490-d61c-443f-a65b-d21fe96a405b --- channels/chan_dahdi.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'channels') diff --git a/channels/chan_dahdi.c b/channels/chan_dahdi.c index c774d15df..6c1e4f4d1 100644 --- a/channels/chan_dahdi.c +++ b/channels/chan_dahdi.c @@ -8153,12 +8153,14 @@ static struct dahdi_pvt *mkintf(int channel, const struct dahdi_chan_conf *conf, int chan_sig = conf->chan.sig; if (!here) { if ((channel != CHAN_PSEUDO) && !pri) { + int count = 0; snprintf(fn, sizeof(fn), "%d", channel); /* Open non-blocking */ tmp->subs[SUB_REAL].dfd = dahdi_open(fn); - while (tmp->subs[SUB_REAL].dfd < 0 && reloading == 2) { /* the kernel may not call dahdi_release fast enough for the open flagbit to be cleared in time */ + while (tmp->subs[SUB_REAL].dfd < 0 && reloading == 2 && count < 1000) { /* the kernel may not call dahdi_release fast enough for the open flagbit to be cleared in time */ usleep(1); tmp->subs[SUB_REAL].dfd = dahdi_open(fn); + count++; } /* Allocate a DAHDI structure */ if (tmp->subs[SUB_REAL].dfd < 0) { -- cgit v1.2.3