Re: Dialogic SR 6.1 / Bayonne 1.2.14pl2: event overflow & event failure in read

David Sugar <[email protected]> Fri, 13 Mar 2009 10:01:12 -0400
Newsgroups gmane.comp.gnu.bayonne.devel
Message-ID <[email protected]>
This is a multi-part message in MIME format.
--------------020401030408090803060701
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit

This is rather interesting to know.  There is also a build-out for an
entirely new Bayonne release series currently underway...although it
looks more likely it will be completed later this summer.

Anthony DeRobertis wrote:
> A long time ago, someone reported a problem where they were getting
> messages like:
> 
>     bayonne: dx(22): event overflow
>     bayonne: dx(0): event failure in read
>     last message repeated 1525 times
>       
> 
> Just ran into it yesterday, and found its due to the LiS preload. This
> isn't needed with SR6.1 anymore. In fact, LiS isn't needed at all with
> DM3. Springware still uses it internally, but doesn't expose that to
> Bayonne anymore.
> 
> Easy enough to fix. Apply the following patch, then run aclocal and
> ./reconfig. Hope this helps someone...
> 
> diff -rdbU3 bayonne-1.2.14pl2.old/configure.ac bayonne-1.2.14pl2/configure.ac
> --- bayonne-1.2.14pl2.old/configure.ac	2005-01-27 13:08:11.000000000 -0500
> +++ bayonne-1.2.14pl2/configure.ac	2007-11-15 14:26:45.000000000 -0500
> @@ -144,13 +144,9 @@
>  	ost_cv_openh323=false
>  fi
>  
> -if test "$ost_cv_unix_streams" = "true" ; then
> -   AC_ARG_WITH(dialogic, [--without-dialogic      Disable dialogic support],
> +AC_ARG_WITH(dialogic, [--without-dialogic      Disable dialogic support],
>  	ost_cv_dialogic_unix=none,
>  	[OST_DIALOGIC])
> -else
> -	ost_cv_dialogic_unix=none
> -fi
>  
>  if test $ost_cv_unsafe = false ; then
>  
> diff -rdbU3 bayonne-1.2.14pl2.old/m4/ost_dialogic.m4 bayonne-1.2.14pl2/m4/ost_dialogic.m4
> --- bayonne-1.2.14pl2.old/m4/ost_dialogic.m4	2003-06-10 12:48:24.000000000 -0400
> +++ bayonne-1.2.14pl2/m4/ost_dialogic.m4	2007-11-15 14:23:13.000000000 -0500
> @@ -28,9 +28,6 @@
>  	else
>  		dlgprefix=/usr/dialogic
>  	fi
> -	if test "$ost_cv_unix_streams" = "false" ; then
> -		dlgprefix=/dev/null
> -	fi
>  	AC_MSG_CHECKING([for dialogic sdk ($dlgprefix)])
>  	if test -d $dlgprefix ; then
>  		AC_MSG_RESULT(found)
> diff -rdbU3 bayonne-1.2.14pl2.old/server/bayonne.in bayonne-1.2.14pl2/server/bayonne.in
> --- bayonne-1.2.14pl2.old/server/bayonne.in	2003-09-15 22:53:25.000000000 -0400
> +++ bayonne-1.2.14pl2/server/bayonne.in	2007-11-15 14:49:11.000000000 -0500
> @@ -468,7 +468,7 @@
>  			BAYONNE_PRELOAD=/usr/lib/libLiS.so
>  			;;
>  		globalcall)
> -			BAYONNE_PRELOAD=/usr/lib/libLiS.so:/usr/dialogic/lib/libgc.so:/usr/dialogic/lib/libdevmap.so
> +			BAYONNE_PRELOAD=/usr/dialogic/lib/libgc.so:/usr/dialogic/lib/libdevmap.so
>  			;;
>  		esac
>  	fi
> 
> 
> 
> 
> _______________________________________________
> Bayonne-devel mailing list
> [email protected]
> http://lists.gnu.org/mailman/listinfo/bayonne-devel

--------------020401030408090803060701
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Bayonne-devel mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bayonne-devel

--------------020401030408090803060701--