Displaying 20 results from an estimated 31 matches for "201,15".
2004 Nov 29
2
Variable substitution - How can I do Dial(${DIALSTRING}) where ${DIALSTRING} is 'SIP/201, 15, tT'?
I've been banging my head against a brick wall for the last hour and I'm
sure this is one of those easy to solve things - just that I can't see the
wood for the trees.
I'm trying to do:
-----------
[some-context]
Exten => s,1,Macro(dodial,'SIP/201,15,tT',123456,MOHClass)
[macro-dodial]
Exten => s,1,SetCallerID(${ARG2})
Exten => s,2,SetMusicOnHold(${ARG3})
Exten => s,3,Dial(${ARG1})
-----------
(there's a lot more to it than that, but the above should give you an idea
of what I'm trying to achieve)
A command starting...
2007 Apr 18
1
[RFC, PATCH 7/24] i386 Vmi memory hole
...msden <zach@vmware.com>
Index: linux-2.6.16-rc3/arch/i386/Kconfig
===================================================================
--- linux-2.6.16-rc3.orig/arch/i386/Kconfig 2006-02-22 16:09:04.000000000 -0800
+++ linux-2.6.16-rc3/arch/i386/Kconfig 2006-02-22 16:33:27.000000000 -0800
@@ -201,6 +201,15 @@ config VMI_DEBUG
endmenu
+config MEMORY_HOLE
+ int "Create hole at top of memory (0-256 MB)"
+ range 0 256
+ default "64" if X86_VMI
+ default "0" if !X86_VMI
+ help
+ Useful for creating a hole in the top of memory when running
+ inside of a vi...
2007 Apr 18
1
[RFC, PATCH 7/24] i386 Vmi memory hole
...msden <zach@vmware.com>
Index: linux-2.6.16-rc3/arch/i386/Kconfig
===================================================================
--- linux-2.6.16-rc3.orig/arch/i386/Kconfig 2006-02-22 16:09:04.000000000 -0800
+++ linux-2.6.16-rc3/arch/i386/Kconfig 2006-02-22 16:33:27.000000000 -0800
@@ -201,6 +201,15 @@ config VMI_DEBUG
endmenu
+config MEMORY_HOLE
+ int "Create hole at top of memory (0-256 MB)"
+ range 0 256
+ default "64" if X86_VMI
+ default "0" if !X86_VMI
+ help
+ Useful for creating a hole in the top of memory when running
+ inside of a vi...
2009 Jun 05
1
[PATCHv3 03/13] qemu: add routines to manage PCI capabilities
...@@ struct PCIDevice {
/* Used to implement R/W bytes */
uint8_t wmask[PCI_CONFIG_SPACE_SIZE];
+ /* Used to allocate config space for capabilities. */
+ uint8_t used[PCI_CONFIG_SPACE_SIZE];
+
/* the following fields are read only */
PCIBus *bus;
int devfn;
@@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num,
uint32_t size, int type,
PCIMapIORegionFunc *map_func);
+int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
+
+void pci_del_capability(PCIDevi...
2009 Jun 05
1
[PATCHv3 03/13] qemu: add routines to manage PCI capabilities
...@@ struct PCIDevice {
/* Used to implement R/W bytes */
uint8_t wmask[PCI_CONFIG_SPACE_SIZE];
+ /* Used to allocate config space for capabilities. */
+ uint8_t used[PCI_CONFIG_SPACE_SIZE];
+
/* the following fields are read only */
PCIBus *bus;
int devfn;
@@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num,
uint32_t size, int type,
PCIMapIORegionFunc *map_func);
+int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
+
+void pci_del_capability(PCIDevi...
2009 May 25
2
[PATCH 03/11] qemu: add routines to manage PCI capabilities
...@@ struct PCIDevice {
/* Used to implement R/W bytes */
uint8_t mask[PCI_CONFIG_SPACE_SIZE];
+ /* Used to allocate config space for capabilities. */
+ uint8_t used[PCI_CONFIG_SPACE_SIZE];
+
/* the following fields are read only */
PCIBus *bus;
int devfn;
@@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num,
uint32_t size, int type,
PCIMapIORegionFunc *map_func);
+int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
+
+void pci_del_capability(PCIDevi...
2009 May 25
2
[PATCH 03/11] qemu: add routines to manage PCI capabilities
...@@ struct PCIDevice {
/* Used to implement R/W bytes */
uint8_t mask[PCI_CONFIG_SPACE_SIZE];
+ /* Used to allocate config space for capabilities. */
+ uint8_t used[PCI_CONFIG_SPACE_SIZE];
+
/* the following fields are read only */
PCIBus *bus;
int devfn;
@@ -194,6 +201,15 @@ void pci_register_io_region(PCIDevice *pci_dev, int region_num,
uint32_t size, int type,
PCIMapIORegionFunc *map_func);
+int pci_add_capability(PCIDevice *pci_dev, uint8_t cap_id, uint8_t cap_size);
+
+void pci_del_capability(PCIDevi...
2019 Jan 26
6
[PATCH 0/2] allow alternative guest tools directories for distributions
First patch just fixes installing guest tools from directory that was broken.
Second patch revamps how virt-v2v chooses from which directory install guest
tools on Linux. Details in commit message.
Tomáš Golembiovský (2):
v2v: fix path to source when copying files from guest tools directory
v2v: allow alternative directories for distributions
v2v/windows_virtio.ml | 67
2019 Jan 29
2
Re: [PATCH 2/2] v2v: allow alternative directories for distributions
On Saturday, 26 January 2019 13:19:59 CET Tomáš Golembiovský wrote:
> diff --git a/v2v/windows_virtio.ml b/v2v/windows_virtio.ml
> index 94c4774b7..cc33d9502 100644
> --- a/v2v/windows_virtio.ml
> +++ b/v2v/windows_virtio.ml
> @@ -186,14 +186,18 @@ let rec install_drivers ((g, _) as reg) inspect rcaps =
> a...
2009 May 31
1
Problem releasing call from a SIP extension
...rting simple switch on 'DAHDI/1-1'
[May 30 14:28:46] NOTICE[18535]: chan_dahdi.c:6830 ss_thread: Got event 18 (Ring Begin)...
[May 30 14:28:47] NOTICE[18535]: chan_dahdi.c:6830 ss_thread: Got event 2 (Ring/Answered)...
-- Executing [s at incoming:1] Dial("DAHDI/1-1", "SIP/201|15|tT") in new stack
-- Called 201
-- SIP/201-09243ea8 is ringing
-- Nobody picked up in 15000 ms
-- Executing [s at incoming:2] Hangup("DAHDI/1-1", "") in new stack
== Spawn extension (incoming, s, 2) exited non-zero on 'DAHDI/1-1'
-- Hungup &...
2009 Jun 01
2
Transfer call from analog telephone
...exten => *600,4,Playback(demo-echodone)
exten => *600,5,Hangup
exten => _9.,1,Dial(DAHDI/1/${EXTEN:1})
exten => _9.,2,Hangup
exten => 1010,1,Dial(DAHDI/2,15,tTm)
exten => 1010,2,Hangup
include => phones
[phones]
include => internal
[incoming]
exten => s,1,Dial(SIP/201,15,tTm)
exten => s,2,Hangup
###################### /etc/asterisk/chan_dahdi.conf
[trunkgroups]
[channels]
context=default
switchtype=national
signalling=fxo_ls
rxwink=300 ; Atlas seems to use long (250ms) winks
usecallerid=yes
hidecallerid=no
callwaiting=yes
usecallingpres=yes
c...
2019 Jun 27
2
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
On Thu, Jun 27, 2019 at 05:06:04PM +0900, Hiroyuki Katsura wrote:
> From: Hiroyuki_Katsura <hiroyuki.katsura.0513@gmail.com>
>
> ---
> generator/rust.ml | 13 ++++++++---
> run.in | 9 ++++++++
> rust/Cargo.lock | 6 +++++
> ru...
2019 Jan 26
0
[PATCH 2/2] v2v: allow alternative directories for distributions
...["el7"]
+ | _ -> [])
+ @ ["rhel"])
+ | "sles" | "suse-based" | "opensuse" -> Some [
+ (sprintf "fedora%d" inspect.i_major_version); "suse"; "lp151"]
| _ -> None in
match os with
@@ -201,15 +205,15 @@ and install_linux_tools g inspect =
warning (f_"don't know how to install guest tools on %s-%d")
inspect.i_distro inspect.i_major_version
| Some os ->
- let src_path = "linux" // os in
+ let src_paths = List.map ((//) "linux...
2011 Oct 20
0
[PATCH 07/12] cpufreq: allocate CPU masks dynamically
...ng a cpumask_t member, gets copied in
cpufreq_limit_change(), cpufreq_add_cpu(), set_cpufreq_gov(), and
set_cpufreq_para(). Make the member a cpumask_var_t, thus reducing the
amount of data needing copying (particularly with large NR_CPUS).
Signed-off-by: Jan Beulich <jbeulich@suse.com>
--- 2011-09-20.orig/xen/arch/x86/acpi/cpufreq/cpufreq.c 2011-10-12 08:35:12.000000000 +0200
+++ 2011-09-20/xen/arch/x86/acpi/cpufreq/cpufreq.c 2011-10-14 14:55:07.000000000 +0200
@@ -446,7 +446,7 @@ static int acpi_cpufreq_target(struct cp
if (unlikely(result))
return -ENODEV;
- cpumask_...
2019 Jun 27
1
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
On Thu, Jun 27, 2019 at 06:27:05PM +0900, Hiroyuki Katsura wrote:
> > I guess this is a stray debug message?
>
> Yes. I'm sorry...
>
> > we did *not* check them into git.
>
> Really? Does it mean that every time you build the library, Cargo.toml is
> generated?
That's how it h...
2019 Jun 27
0
[PATCH 3/9] Rust bindings: Add 4 bindings tests
...tic str> {
let g = unsafe { guestfs_create() };
+ println!(\"hoge\");
if g.is_null() {
Err(\"failed to create guestfs handle\")
} else {
diff --git a/run.in b/run.in
index 488e1b937..301b02664 100755
--- a/run.in
+++ b/run.in
@@ -201,6 +201,15 @@ else
fi
export CGO_LDFLAGS
+# For rust
+export RUST="@RUST@"
+if [ -z "$RUSTFLAGS" ]; then
+ RUSTFLAGS="-C link-args=-L$b/lib/.libs"
+else
+ RUSTFLAGS="$RUSTFLAGS -C link-args=-L$b/lib/.libs"
+fi
+export RUSTFLAGS
+
# For GObject, Java...
2007 Dec 13
0
2 commits - libswfdec/swfdec_flash_security.c libswfdec/swfdec_flash_security.h libswfdec/swfdec_net_stream.c libswfdec/swfdec_player.c libswfdec/swfdec_resource_request.c libswfdec/swfdec_resource_request.h libswfdec/swfdec_security.h
...C_SANDBOX_REMOTE:
if (swfdec_url_is_local (url)) {
- allowed = FALSE;
+ status = 0;
} else if (swfdec_flash_security_match_domain (sec->url, url)) {
- allowed = TRUE;
+ status = 1;
} else {
swfdec_flash_security_allow_cross_domain (sec, url, callback,
user_data);
@@ -201,11 +201,15 @@ swfdec_flash_security_allow_url (SwfdecSecurity *guard, const SwfdecURL *url,
}
break;
case SWFDEC_SANDBOX_LOCAL_FILE:
- allowed = swfdec_url_is_local (url);
+ if (swfdec_url_is_local (url)) {
+ status = 1;
+ } else {
+ status = 0;
+ }
bre...
2019 Jan 26
1
Re: [PATCH 2/2] v2v: allow alternative directories for distributions
Il giorno sab 26 gen 2019, 13:20 Tomáš Golembiovský <tgolembi@redhat.com>
ha scritto:
> Allow multiple alternative directory names for distributions (or
> distribution familiy) when installing Linux guest tools packages.
> Original naming required that there is a separate directory for every
> version of...
2019 Jun 27
0
Re: [PATCH 3/9] Rust bindings: Add 4 bindings tests
...patch 3 into patch 2.
Does this mean that the followings should be moved to patch 2?
generator/rust.ml | 13 ++++++++---
run.in | 9 ++++++++
rust/Cargo.lock | 6 +++++
rust/Cargo.toml | 4 +---
Regards,
Hiroyuki
2019年6月27日(木) 17:52 Richard W.M. Jones <rjones@redhat.com>:
> On Thu, Jun 27, 2019 at 05:06:04PM +0900, Hiroyuki Katsura wrote:
> > From: Hiroyuki_Katsura <hiroyuki.katsura.0513@gmail.com>
> >
> > ---
> > generator/rust.ml | 13 ++++++++---
> &...
2012 Apr 06
1
[WIP PATCH] dri/nouveau: Add S3TC support for nv20.
...h(ctx, st->pitch * h,
- &st->bo, &st->offset);
+ size = nouveau_format_get_nblocksy(st->format, h) * st->pitch;
+ *map = nouveau_get_scratch(ctx, size, &st->bo, &st->offset);
*stride = st->pitch;
} else {
int ret, flags = 0;
@@ -195,11 +201,15 @@ nouveau_map_texture_image(struct gl_context *ctx,
assert(!ret);
}
- *map = s->bo->map + y * s->pitch + x * s->cpp;
+ *map = s->bo->map +
+ nouveau_format_get_nblocksy(s->format, y) * s->pitch +
+ nouveau_format_get_nblocksx(s->format, x) * s->...