summaryrefslogtreecommitdiff
path: root/drivers/dahdi/wctdm24xxp/xhfc.c
diff options
context:
space:
mode:
authorShaun Ruffell <sruffell@digium.com>2011-06-02 20:01:54 +0000
committerShaun Ruffell <sruffell@digium.com>2011-06-02 20:01:54 +0000
commitab16381fa5cb2c0af61149194c18e43e3b287b83 (patch)
tree1e7c989b2b269b4fcb9b9cc74ebba4c8e1a7addd /drivers/dahdi/wctdm24xxp/xhfc.c
parentda4fb491de5e3b51407f5902b0bc78c2286e890a (diff)
wctdm24xxp: Block chanconfig and spanconfig until board is ready.
Currently the board will always be ready if the module initialization function is complete but this change will facilitate allowing some of the more time consuming configuration steps to happen in parallel on system start. Signed-off-by: Shaun Ruffell <sruffell@digium.com> git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@9944 a0bf4364-ded3-4de4-8d8a-66a801d63aff
Diffstat (limited to 'drivers/dahdi/wctdm24xxp/xhfc.c')
-rw-r--r--drivers/dahdi/wctdm24xxp/xhfc.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/drivers/dahdi/wctdm24xxp/xhfc.c b/drivers/dahdi/wctdm24xxp/xhfc.c
index 730d2e0..e0cc687 100644
--- a/drivers/dahdi/wctdm24xxp/xhfc.c
+++ b/drivers/dahdi/wctdm24xxp/xhfc.c
@@ -2183,11 +2183,19 @@ int b400m_spanconfig(struct file *file, struct dahdi_span *span,
struct wctdm *wc;
int te_mode, term;
int pos;
+ int res;
bspan = bspan_from_dspan(span);
b4 = bspan->parent;
wc = b4->wc;
+ if ((file->f_flags & O_NONBLOCK) && !wc->initialized)
+ return -EAGAIN;
+
+ res = wctdm_wait_for_ready(wc);
+ if (res)
+ return res;
+
b400m_disable_workqueues(b4->wc);
te_mode = (lc->lineconfig & DAHDI_CONFIG_NTTE) ? 0 : 1;
@@ -2258,6 +2266,13 @@ int b400m_chanconfig(struct file *file, struct dahdi_chan *chan, int sigtype)
struct b400m *b4 = bspan->parent;
int res;
+ if ((file->f_flags & O_NONBLOCK) && !b4->wc->initialized)
+ return -EAGAIN;
+
+ res = wctdm_wait_for_ready(b4->wc);
+ if (res)
+ return res;
+
alreadyrunning = bspan->wspan->span.flags & DAHDI_FLAG_RUNNING;
if (DBG_FOPS) {