summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-10-29 15:09:11 +0000
committerTzafrir Cohen <tzafrir.cohen@xorcom.com>2008-10-29 15:09:11 +0000
commitbf9fef3f74f16a8e650d756953e54ab8d57c5e15 (patch)
tree65084fc3e9a04070cf8e388b6fab9b8701cb68ca
parent396c1460b299c50049a4ff00971ced9b26561029 (diff)
xpp: Increase the maximal size of the command queue to 500 .
Temporarily increase the maximal size of the command queue from 300 to 500 as a workaround of an issue at initialization time (mainly of BRI+FXS). git-svn-id: http://svn.asterisk.org/svn/dahdi/linux/trunk@5167 a0bf4364-ded3-4de4-8d8a-66a801d63aff
-rw-r--r--drivers/dahdi/xpp/xbus-core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/dahdi/xpp/xbus-core.c b/drivers/dahdi/xpp/xbus-core.c
index 75363da..09d5de9 100644
--- a/drivers/dahdi/xpp/xbus-core.c
+++ b/drivers/dahdi/xpp/xbus-core.c
@@ -1378,7 +1378,7 @@ xbus_t *xbus_new(struct xbus_ops *ops, ushort max_send_size, void *priv)
goto nobus;
}
#endif
- xframe_queue_init(&xbus->command_queue, 10, 300, "command_queue", xbus);
+ xframe_queue_init(&xbus->command_queue, 10, 500, "command_queue", xbus);
xframe_queue_init(&xbus->receive_queue, 10, 50, "receive_queue", xbus);
xframe_queue_init(&xbus->send_pool, 10, 200, "send_pool", xbus);
xframe_queue_init(&xbus->receive_pool, 10, 50, "receive_pool", xbus);