Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 26 Nov 2007 16:11:46 +0200
From:      Ian FREISLICH <ianf@clue.co.za>
To:        current@freebsd.org
Subject:   Poll: asterisk anyone? (+patch)
Message-ID:  <E1Iwegc-0000eb-SL@clue.co.za>

next in thread | raw e-mail | index | archive | help
Hi

Just a quick poll to find out if anyone here is successfully running
asterisk (+zaptel) on 7-BETAx or -CURRENT or a previous branch for
that matter.

I'm having great difficulty making it work on -CURRENT/AMD64.  After
the recentish changes renaming kthreads to kproc, zaptel needs the
following patch to compile.

Any datapoints, even that I'm being a total noob will be helpful.

I'm experiencing:
8-CURRENT (amd64): phone on FXS port doesn't get dial tone.  A SIP phone can
	register, but the first dial attempt requires a reboot to
	unstick asterisk.
7-BETA (i386): phone on FXS port gets dialtone, but the first dial attempt
	requires a reboot to unstick asterisk.
6.3-BETA (i386): Works fine.

--- work/zaptel-bsd-1.4.6/zaptel/zaptel.c.orig       2007-11-13 08:12:02.000000000 +0000
+++ work/zaptel-bsd-1.4.6/zaptel/zaptel.c    2007-11-13 08:16:38.000000000 +0000
@@ -254,7 +254,7 @@
         while (1) {
                 if (kthread_must_exit) {
                         wakeup(cookie);
-                        kthread_exit(0);
+                        kproc_exit(0);
                 }
 
                 ZAP_LOCK(toselwakeup_lock);
@@ -1254,7 +1254,7 @@
                ZAP_LOCK_INIT(toselwakeup_lock, "toselwakeup_lock");
 
                kthread_must_exit = 0;
-               if (kthread_create(selwakeup_thread_handler, (void *)toselwakeup, &kthread, 0, 0, "zt_selwakeup_thread"))
+               if (kproc_create(selwakeup_thread_handler, (void *)toselwakeup, kthread, 0, 0, "zt_selwakeup_thread"))
                {
                        printf("Failed to create kthread\n");
                }

Ian

--
Ian Freislich




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?E1Iwegc-0000eb-SL>