Displaying 20 results from an estimated 29 matches for "54,20".
2024 Jan 03
1
chan_iax2.c:4739 __auto_congest: Auto-congesting call due to slow response
...xtensions
> disallow=all
> allow=ulaw
> allow=alaw
> callgroup=1
> pickupgroup=1
>
> Remote extension.conf:
>
> exten => 4,1,Dial(SIP/4,15,trw)
> exten => 4,n,GotoIf($["${DIALSTATUS}"="BUSY"]?vmail:line2)
> exten => 4,n(line2),Dial(SIP/54,20,rw)
> exten => 4,n(vmail),Voicemail(4)
> exten => 4,n,Voicemail(4)
> exten => 4,n,Hangup()
>
>
You have no internal context in your dialplan. But in your iax.conf you specify internal as your context.
-H
2017 May 08
2
Call does not go voicemail
...ro on
'IAX2/home_server-6364'..."
The call terminated here in a error which prevented the dialplan from
continuing. Something there is broken, my recommendation is to check you
registrations first inside asterisk:
> sip show peers
Something wasn't "happy" about SIP/54 in your system when Asterisk tried
talking to it.
So you tried this:
"...
Even when I put:
exten => 4,n,GotoIf($["${DIALSTATUS}"="BUSY"]?line2)
exten => 4,n(line2),Dial(${FD_L2},20,trw)
exten => 4,n(line2),Voicemail(4)
..."
What that will do is go to the fi...
2024 Jan 02
1
chan_iax2.c:4739 __auto_congest: Auto-congesting call due to slow response
On 1/2/2024 4:03 PM, thelma at sys-concept.com wrote:
> I'm using asterisk-16.30.1
>
> When I try to call another asterisk server over IAX I get a busy signal,
>
> chan_iax2.c:4739 __auto_congest: Auto-congesting call due to slow
> response
> -- IAX2/192.168.143.1:4569-656 is circuit-busy
>
> Asterisk-16.16 is working normally, no congestion error.
There is not
2006 Mar 09
1
[TIP] Making an intelligent form fields
...f aggregation
attributes[param] = aggregation.klass.new(value)
end
end
super(attributes)
end
Now an user can enter "2%", "2.0 %", "2.1 % ", etc. and everything is
acceptable. We can now create value object for money so field "54,20
EUR" is perfectly acceptable. And there can be objects for entering date
like "+3 days" and so on.
The mechanizm for "i_attributes" can be enhanced similiary as Date is
expanded into form fields. So for example we can have aggregation
composed_of :i_amount, :cla...
2019 Nov 22
8
Re: [PATCH nbdkit v2 03/10] python: Implement nbdkit API version 2.
...:
> + return 2
Matches the C counterpart of #define NBDKIT_API_VERSION 2 at the top of
a plugin.
> +
> +
> # This just prints the extra command line parameters, but real plugins
> # should parse them and reject any unknown parameters.
> def config(key, value):
> @@ -54,20 +61,20 @@ def get_size(h):
> return len(disk)
>
>
> -def pread(h, count, offset):
> +def pread(h, count, offset, flags):
> global disk
> return disk[offset:offset+count]
Do we really want to be passing 'flags' as an integer that the python
s...
2019 Nov 22
0
Re: [PATCH nbdkit v2 03/10] python: Implement nbdkit API version 2.
...a global variable
> instead of a function? But a function is just fine (and easier to
> integrate the way we do all our other callbacks).
I couldn't work out how to do this, plus we have the callback_defined
function which makes this easy, so yes, I did the easy thing :-)
> >@@ -54,20 +61,20 @@ def get_size(h):
> > return len(disk)
> >-def pread(h, count, offset):
> >+def pread(h, count, offset, flags):
> > global disk
> > return disk[offset:offset+count]
>
> Do we really want to be passing 'flags' as an integer that...
2019 Nov 22
1
Re: [PATCH nbdkit v2 03/10] python: Implement nbdkit API version 2.
On 11/22/19 3:14 PM, Richard W.M. Jones wrote:
>>> @@ -54,20 +61,20 @@ def get_size(h):
>>> return len(disk)
>>> -def pread(h, count, offset):
>>> +def pread(h, count, offset, flags):
>>> global disk
>>> return disk[offset:offset+count]
>>
>> Do we really want to be passing 'fl...
2009 Nov 18
1
[PATCH] Fix dependencies on generator.ml
...m | 14 +++++++++++---
ruby/Makefile.am | 14 +++++++++++---
src/Makefile.am | 33 +++++++++++++++++----------------
11 files changed, 146 insertions(+), 47 deletions(-)
diff --git a/Makefile.am b/Makefile.am
index 87efb2d..66f2144 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -54,9 +54,20 @@ if HAVE_HASKELL
SUBDIRS += haskell
endif
+GENERATOR_ML = \
+ guestfs-structs.pod \
+ guestfs-actions.pod \
+ guestfish-actions.pod
+
+.PHONY: force
+
+$(GENERATOR_ML): force
+ $(MAKE) -C $(top_builddir)/src stamp-generator
+
EXTRA_DIST = \
- guestfs.pod guestfs-actions.pod guestfs-...
2019 Nov 22
0
[PATCH nbdkit v2 03/10] python: Implement nbdkit API version 2.
...etermine which one you want to use. This is the
+# latest version at the time this example was written.
+def api_version():
+ return 2
+
+
# This just prints the extra command line parameters, but real plugins
# should parse them and reject any unknown parameters.
def config(key, value):
@@ -54,20 +61,20 @@ def get_size(h):
return len(disk)
-def pread(h, count, offset):
+def pread(h, count, offset, flags):
global disk
return disk[offset:offset+count]
-def pwrite(h, buf, offset):
+def pwrite(h, buf, offset, flags):
global disk
end = offset + len(buf)
d...
2019 Nov 23
0
[PATCH nbdkit v3 2/7] python: Implement nbdkit API version 2.
...nction first to determine which one you want to use. This is the
+# latest version at the time this example was written.
+API_VERSION = 2
+
+
# This just prints the extra command line parameters, but real plugins
# should parse them and reject any unknown parameters.
def config(key, value):
@@ -54,20 +60,20 @@ def get_size(h):
return len(disk)
-def pread(h, count, offset):
+def pread(h, count, offset, flags):
global disk
return disk[offset:offset+count]
-def pwrite(h, buf, offset):
+def pwrite(h, buf, offset, flags):
global disk
end = offset + len(buf)
d...
2020 Sep 29
0
[PATCH v3 3/7] drm/gem: Use struct dma_buf_map in GEM vmap ops and convert GEM backends
...em;
/* do data transfer to cursor BO */
- update_cursor_image(dst, src, fb->width, fb->height);
+ update_cursor_image(dst, map.vaddr, fb->width, fb->height);
- drm_gem_vram_vunmap(gbo, src);
+ drm_gem_vram_vunmap(gbo, &map);
drm_gem_vram_unpin(gbo);
return 0;
@@ -257,7 +254,7 @@ void ast_cursor_show(struct ast_private *ast, int x, int y,
u8 __iomem *sig;
u8 jreg;
- dst = ast->cursor.vaddr[ast->cursor.next_index];
+ dst = ast->cursor.map[ast->cursor.next_index].vaddr;
sig = dst + AST_HWC_SIZE;
writel(x, sig + AST_HWC_SIGNATURE_X);
diff --git a/d...
2020 Oct 15
1
[PATCH v4 06/10] drm/gem: Use struct dma_buf_map in GEM vmap ops and convert GEM backends
...int etnaviv_gem_prime_mmap(struct drm_gem_object *obj,
struct vm_area_struct *vma);
struct drm_gem_object *etnaviv_gem_prime_import_sg_table(struct drm_device *dev,
diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c b/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
index a6d9932a32ae..bc2543dd987d 100644
--- a/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
+++ b/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
@@ -22,9 +22,14 @@ struct sg_table *etnaviv_gem_prime_get_sg_table(struct drm_gem_object *obj)
return drm_prime_pages_to_sg(obj->dev, etnaviv_obj->pages, npages);
}
-void *et...
2009 Nov 19
5
Fix various build dependency problems
Patch 1/5 is a repost. Only change is title update.
These fix parallel make on my machine, and additionally make building from
subdirectories more correct.
2020 Oct 15
0
[PATCH v4 06/10] drm/gem: Use struct dma_buf_map in GEM vmap ops and convert GEM backends
..._mmap(struct drm_gem_object *obj,
> struct vm_area_struct *vma);
> struct drm_gem_object *etnaviv_gem_prime_import_sg_table(struct drm_device *dev,
> diff --git a/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c b/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
> index a6d9932a32ae..bc2543dd987d 100644
> --- a/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
> +++ b/drivers/gpu/drm/etnaviv/etnaviv_gem_prime.c
> @@ -22,9 +22,14 @@ struct sg_table *etnaviv_gem_prime_get_sg_table(struct drm_gem_object *obj)
> return drm_prime_pages_to_sg(obj->dev, etnaviv_obj->pages, np...
2019 Nov 21
10
[PATCH nbdkit 0/8] Implement nbdkit API v2 for Python plugins.
And fill out most of the missing bits of the API.
Rich.
2019 Nov 22
18
[PATCH nbdkit v2 00/10] Implement nbdkit API v2 for Python plugins.
v1:
https://www.redhat.com/archives/libguestfs/2019-November/msg00153.html
v2:
- Fix implementation of can_cache.
- Add implementation of can_fua.
- Add a very thorough test suite which tests every command + flag
combination.
2020 Aug 13
15
[v2v PATCH 00/14] Adaptations to Weblate
...o/LINGUAS | 15 +
po/Makefile.am | 32 +-
po/POTFILES | 24 +
po/cs.po | 1294 +-
po/de.po | 2003 +-
po/en_GB.po | 2684 -
po/es.po | 2911 +-
po/eu.po | 2541 -
po/fr.po | 3562 +-
po/gu.po | 2096 +-
po/hi.po | 1944 +-
po/ja.po | 3746 +-
po/kn.po | 1928 +-
po/ml.po | 1910 +-
po/mr.po | 2602 +-
po/nl.po...
2020 Sep 29
14
[PATCH v3 0/7] Support GEM object mappings from I/O memory
DRM's fbdev console uses regular load and store operations to update
framebuffer memory. The bochs driver on sparc64 requires the use of
I/O-specific load and store operations. We have a workaround, but need
a long-term solution to the problem.
This patchset changes GEM's vmap/vunmap interfaces to forward pointers
of type struct dma_buf_map and updates the generic fbdev emulation to
use
2020 Sep 29
14
[PATCH v3 0/7] Support GEM object mappings from I/O memory
DRM's fbdev console uses regular load and store operations to update
framebuffer memory. The bochs driver on sparc64 requires the use of
I/O-specific load and store operations. We have a workaround, but need
a long-term solution to the problem.
This patchset changes GEM's vmap/vunmap interfaces to forward pointers
of type struct dma_buf_map and updates the generic fbdev emulation to
use
2019 Nov 25
7
[PATCH nbdkit v2 0/7] Implement nbdkit API v2 for Python plugins.
v3 was here:
https://www.redhat.com/archives/libguestfs/2019-November/msg00209.html
In v4:
- Rebase on top of current master. Includes various fixes and
updates required because of Nir's patches that went into master.
- Fix api_version() -> API_VERSION in patch 2 noted previously on the
mailing list.
Rich.