search for: 102,15

Displaying 20 results from an estimated 21 matches for "102,15".

Did you mean: 102,11
2007 Aug 29
5
Ringing sound doesn't work
Hi, I have these extensions: exten => 101,1,Dial(SIP/101,15) exten => 102,1,Dial(SIP/102,15) exten => 0,1,Dial(SIP/101&SIP/102,15,r) They work fine and I get the ringing sound if I dial them directly. However, I also have this extension: exten => s,1,Answer() exten => s,2,Background(viagenie) exten => s,3,WaitExten() The ringing sound doesn't work...
2005 Mar 28
3
can a sip.conf stanza be shared by several phones?
Hi, If several phones register to the same sip.conf section what will happen with a "Dial SIP/shared" in asterisk? All phones ringing and the first one to answer gets the call? Undefined behavior? Thanks, -- Jesus is coming! Everyone look busy!
2007 May 21
0
Branch 'as' - libswfdec/swfdec_as_frame.c libswfdec/swfdec_as_frame.h libswfdec/swfdec_as_function.c libswfdec/swfdec_as_function.h libswfdec/swfdec_as_native_function.c libswfdec/swfdec_as_object.c libswfdec/swfdec_as_script_function.c
...,6 @@ swfdec_as_frame_mark (SwfdecAsObject *ob for (i = 0; i < frame->n_registers; i++) { swfdec_as_value_mark (&frame->registers[i]); } - /* FIXME: do we want this? */ for (i = 0; i < frame->argc; i++) { swfdec_as_value_mark (&frame->argv[i]); } @@ -102,18 +102,15 @@ swfdec_as_frame_init (SwfdecAsFrame *fra } SwfdecAsFrame * -swfdec_as_frame_new (SwfdecAsObject *thisp, SwfdecScript *script) +swfdec_as_frame_new (SwfdecAsContext *context, SwfdecScript *script) { - SwfdecAsContext *context; SwfdecAsFrame *frame; SwfdecAsStack *stack;...
2002 Jan 23
1
Fix AFS and Kerberos interaction
...-279,9 +280,7 @@ packet_write_wait(); return (1); } -#endif /* KRB4 */ -#ifdef AFS int auth_krb4_tgt(Authctxt *authctxt, const char *string) { @@ -370,4 +369,4 @@ return (1); } -#endif /* AFS */ +#endif /* KRB4 */ --- auth.h 2002/01/23 12:01:53 1.1 +++ auth.h 2002/01/23 12:14:19 @@ -102,14 +102,15 @@ int auth_krb4(Authctxt *, KTEXT, char **); int auth_krb4_password(Authctxt *, const char *); void krb4_cleanup_proc(void *); +#endif /* KRB4 */ #ifdef AFS #include <kafs.h> +#ifdef KRB4 int auth_krb4_tgt(Authctxt *, const char *); int auth_afs_token(Authc...
2017 Jul 14
0
[PATCH 01/27] build: Make OCaml compiler required for all builds.
...Check for <caml/unixsupport.h> header. +old_CPPFLAGS="$CPPFLAGS" +CPPFLAGS="$CPPFLAGS -I`$OCAMLC -where`" +AC_CHECK_HEADERS([caml/unixsupport.h],[],[],[#include <caml/mlvalues.h>]) +CPPFLAGS="$old_CPPFLAGS" OCAML_PKG_gettext=no OCAML_PKG_libvirt=no @@ -102,15 +99,15 @@ AS_IF([test "x$OCAMLC" != "xno"],[ fi ]) AM_CONDITIONAL([HAVE_OCAML_PKG_GETTEXT], - [test "x$OCAMLC" != "xno" && test "x$OCAMLFIND" != "xno" && test "x$OCAML_PKG_gettext" != "xno"]...
2018 Sep 07
0
[PATCH nbdkit 3/6] file: Make the file= parameter into a magic config key.
...=blocksize1.img + --filter=log file logfile=blocksize1.log blocksize1.img nbdkit -P blocksize2.pid -U blocksize2.sock --filter=blocksize \ - --filter=log file logfile=blocksize2.log file=blocksize2.img \ + --filter=log file logfile=blocksize2.log blocksize2.img \ minblock=1024 maxdata=512k maxlen=1M # We may have to wait a short time for the pid files to appear. diff --git a/tests/test-cache.sh b/tests/test-cache.sh index 6f058b8..215bab1 100755 --- a/tests/test-cache.sh +++ b/tests/test-cache.sh @@ -41,7 +41,7 @@ rm -f $files truncate -s 1G cache.img # Run nbdki...
2018 Sep 08
0
[PATCH nbdkit v2 3/6] file: Make the file= parameter into a magic config key.
...=blocksize1.img + --filter=log file logfile=blocksize1.log blocksize1.img nbdkit -P blocksize2.pid -U blocksize2.sock --filter=blocksize \ - --filter=log file logfile=blocksize2.log file=blocksize2.img \ + --filter=log file logfile=blocksize2.log blocksize2.img \ minblock=1024 maxdata=512k maxlen=1M # We may have to wait a short time for the pid files to appear. diff --git a/tests/test-cache.sh b/tests/test-cache.sh index 6f058b8..215bab1 100755 --- a/tests/test-cache.sh +++ b/tests/test-cache.sh @@ -41,7 +41,7 @@ rm -f $files truncate -s 1G cache.img # Run nbdki...
2010 Jul 16
0
[LLVMdev] Win32 COFF Support - Patch 3
...getSymbolData(Symbol)->setExternal(true); > + break; > + > + default: > + dbg_unexpected("unsupported attribute " << Attribute); > + break; > + } > } > > void WinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { > @@ -102,15 +280,34 @@ void WinCOFFStreamer::EmitSymbolDesc(MCSymbol *Symbol, unsigned DescValue) { > } > > void WinCOFFStreamer::BeginCOFFSymbolDef(MCSymbol const *Symbol) { > + assert(CurSymbol == NULL); Please style asserts as: assert(Condition && "Explanation of the assert&q...
2010 Jul 14
2
[LLVMdev] Win32 COFF Support - Patch 3
On Sun, Jul 11, 2010 at 6:10 PM, Chris Lattner <clattner at apple.com> wrote: > This probably needs to be slightly tweaked to work with mainline.  I don't see anything objectionable, but I think Daniel needs to review this one. Updated patch to work with mainline. http://github.com/Bigcheese/llvm-mirror/commit/d19a4c82c18afc4830c09b70f02d162292231c94 - Michael Spencer
2020 Jul 21
0
[PATCH v9 75/84] KVM: introspection: add KVMI_VCPU_CONTROL_MSR and KVMI_EVENT_MSR
...test.c index 0087b91574f0..0ddc0029e3e5 100644 --- a/tools/testing/selftests/kvm/x86_64/kvmi_test.c +++ b/tools/testing/selftests/kvm/x86_64/kvmi_test.c @@ -57,6 +57,7 @@ enum { GUEST_TEST_CR, GUEST_TEST_DESCRIPTOR, GUEST_TEST_HYPERCALL, + GUEST_TEST_MSR, GUEST_TEST_XSETBV, }; @@ -101,6 +102,15 @@ static void guest_hypercall_test(void) asm volatile(".byte 0x0f,0x01,0xc1"); } +static void guest_msr_test(void) +{ + uint64_t msr; + + msr = rdmsr(MSR_MISC_FEATURES_ENABLES); + msr |= 1; /* MSR_MISC_FEATURES_ENABLES_CPUID_FAULT */ + wrmsr(MSR_MISC_FEATURES_ENABLES, msr); +} +...
2018 Sep 07
7
[PATCH nbdkit 0/6] plugins: Implement magic config key.
Remove the need to use file= (and in future other) parameters for many plugins. eg. Using the file plugin becomes: nbdkit file disk.img Rich.
2018 Sep 08
8
[PATCH nbdkit v2 0/6] plugins: Implement magic config key.
v1 was here: https://www.redhat.com/archives/libguestfs/2018-September/msg00024.html v2: - As discussed in the patch review, tighten up the characters permitted in keys. - Update documentation to note that relative paths can be made safe by prefixing with ./ and absolute paths do not need any extra steps. - I pushed patch 1/6 from the v1 series since it was just a trivial
2018 Sep 10
7
[PATCH nbdkit v3 0/6] plugins: Implement magic config key.
v1: https://www.redhat.com/archives/libguestfs/2018-September/msg00024.html v2: https://www.redhat.com/archives/libguestfs/2018-September/msg00034.html v3: - Fixed is_config_key zero length test. - Fixed is_config_key so it uses strspn and is not O(n^2). - Changed >= 1.7 to >= 1.8 in the documentation. Rich.
2017 Mar 29
15
[PATCH 00/15] Support for GP10B chipset
...| 41 ++++++++ drm/nouveau/nvkm/engine/gr/Kbuild | 1 + drm/nouveau/nvkm/engine/gr/gf100.c | 16 +-- drm/nouveau/nvkm/engine/gr/gf100.h | 4 + drm/nouveau/nvkm/engine/gr/gp100.c | 13 ++- drm/nouveau/nvkm/engine/gr/gp102.c | 1 + drm/nouveau/nvkm/engine/gr/gp10b.c | 59 +++++++++++ drm/nouveau/nvkm/falcon/msgqueue.c | 35 +++++-- drm/nouveau/nvkm/falcon/msgqueue.h | 10 +- drm/nouveau/nvkm/falcon/msgqueue_0137c63d.c | 115 ++++++++++++++++++...
2015 Feb 09
10
[PATCH RFC v5 net-next 0/6] enable tx interrupts for virtio-net
...64/+41.2/-2.6/+45.1/ 2/64/+40.8/-2.7/+44.7/ 4/64/+38.5/-2.8/+42.5/ 8/64/+36.1/-2.1/+38.9/ 1/256/+158.5/-5.0/+172.3/ 2/256/+155.3/-4.7/+167.9/ 4/256/+156.4/-5.3/+170.6/ 8/256/+155.4/-4.9/+168.6/ 1/512/+276.5/-3.0/+288.3/ 2/512/+280.1/-3.3/+293.1/ 4/512/+276.1/-2.7/+286.7/ 8/512/+267.1/-3.2/+279.1/ 1/1024/+344.0/-6.9/+376.9/ 2/1024/+362.3/-2.2/+372.8/ 4/1024/+370.4/-1.1/+375.8/ 8/1024/+374.0/+0.6/+371.1/ 1/4096/+15.1/-30.4/+65.5/ 2/4096/+6.3/-32.9/+58.4/ 4/4096/+6.9/-32.4/+58.3/ 8/4096/+6.7/-26.4/+45.0/ 1/16384/-0.6/-4.6/+4.2/ 2/16384/+0.0/-5.0/+5.4/ 4/16384/+0.0/-2.5/+2.6/ 8/16384/-0.0/-13.8/+13.2...
2015 Feb 09
10
[PATCH RFC v5 net-next 0/6] enable tx interrupts for virtio-net
...64/+41.2/-2.6/+45.1/ 2/64/+40.8/-2.7/+44.7/ 4/64/+38.5/-2.8/+42.5/ 8/64/+36.1/-2.1/+38.9/ 1/256/+158.5/-5.0/+172.3/ 2/256/+155.3/-4.7/+167.9/ 4/256/+156.4/-5.3/+170.6/ 8/256/+155.4/-4.9/+168.6/ 1/512/+276.5/-3.0/+288.3/ 2/512/+280.1/-3.3/+293.1/ 4/512/+276.1/-2.7/+286.7/ 8/512/+267.1/-3.2/+279.1/ 1/1024/+344.0/-6.9/+376.9/ 2/1024/+362.3/-2.2/+372.8/ 4/1024/+370.4/-1.1/+375.8/ 8/1024/+374.0/+0.6/+371.1/ 1/4096/+15.1/-30.4/+65.5/ 2/4096/+6.3/-32.9/+58.4/ 4/4096/+6.9/-32.4/+58.3/ 8/4096/+6.7/-26.4/+45.0/ 1/16384/-0.6/-4.6/+4.2/ 2/16384/+0.0/-5.0/+5.4/ 4/16384/+0.0/-2.5/+2.6/ 8/16384/-0.0/-13.8/+13.2...
2010 Aug 18
16
[PATCH 00 of 16] libxl: autogenerate type definitions and destructor functions
The series introduces auto-generation of the type definitions used in the libxl interface followed by auto-generation of a destructor function for each type. In the future it may be possible to use the related data structures for other purposes, for example auto-generation of the functions to marshal between C and language binding data types. tools/_libxl_types.h should be identical both before
2017 Jul 14
45
[PATCH 00/27] Reimplement many daemon APIs in OCaml.
Previously posted as part of the mega utilities/inspection series here: https://www.redhat.com/archives/libguestfs/2017-June/msg00232.html What I've done is to extract just the parts related to rewriting daemon APIs in OCaml, rebase them on top of the current master, fix a few things, and recompile and test everything. Rich.
2020 Jul 21
87
[PATCH v9 00/84] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VMs (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place
2019 Aug 09
117
[RFC PATCH v6 00/92] VM introspection
The KVM introspection subsystem provides a facility for applications running on the host or in a separate VM, to control the execution of other VM-s (pause, resume, shutdown), query the state of the vCPUs (GPRs, MSRs etc.), alter the page access bits in the shadow page tables (only for the hardware backed ones, eg. Intel's EPT) and receive notifications when events of interest have taken place