search for: 0xxxxxxxxx

Displaying 20 results from an estimated 22 matches for "0xxxxxxxxx".

Did you mean: xxxxxxxxx
2009 May 09
1
Special Dialplan
...ant to call through that peer you must first enter pin for example 1234# and after that you hear the tone from line and after that you can dial desired numbers. I tried something like that, but doesn't worked. Did somebody have some clues? exten => 0X.,n(dial1),Dial(SIP/peer-account/1234#${0xxxxxxxxx},15,rt) Thank you guys for any help. I appreciate.
2007 Apr 24
1
default devmode
...device mode for HP laserjet 2600. All others work fine. In clientes with windows 2k, sometimes, when the client try to change printer preferences explorer.exe crash or when trying to access the properties page of the printer from Windows, the following error message appears: "Function address 0xXXXXXXXX caused a protection fault (exception code 0xc0000005). Some or all property page(s) may not be displayed." i've followed this instructions http://www.samba.org/samba/docs/man/Samba-HOWTO-Collection/classicalprinting.html#prt-modeset but nothing work. In man smb.conf i found informations...
2006 Jun 09
1
hangup extension
I've been testing the debug version of AstTAPI, which worked for a few calls, then a bit later in the day (and ever since), when the call is hung up, the TAPI client doesn't get notified. Looking at the server logs, The TAPI message that is sent upon hangup, isn't being sent. exten => h,1,UserEvent(TAPI|TAPIEVENT: LINE_CALLSTATE LINECALLSTATE_IDLE) This is in the same context as
2001 Sep 19
3
Flash 5 on Mandrake 8.0
Hey now- I'm trying to get Flash 5 installed using the default version of Wine that came with my Mandrake 8.0 installation. I am using Wine configured to use a "fake windows" partition, run in Windows 98 mode, and run within an X window. I can get the installer program for Flash 5 to start and being unpacking, but right after the unpacking of the .cab files I get an error
2016 Oct 19
3
[PATCH v4 5/5] x86, kvm: support vcpu preempted check
2016-10-19 06:20-0400, Pan Xinhui: > This is to fix some lock holder preemption issues. Some other locks > implementation do a spin loop before acquiring the lock itself. > Currently kernel has an interface of bool vcpu_is_preempted(int cpu). It > takes the cpu as parameter and return true if the cpu is preempted. Then > kernel can break the spin loops upon on the retval of
2016 Oct 19
3
[PATCH v4 5/5] x86, kvm: support vcpu preempted check
2016-10-19 06:20-0400, Pan Xinhui: > This is to fix some lock holder preemption issues. Some other locks > implementation do a spin loop before acquiring the lock itself. > Currently kernel has an interface of bool vcpu_is_preempted(int cpu). It > takes the cpu as parameter and return true if the cpu is preempted. Then > kernel can break the spin loops upon on the retval of
2011 Apr 12
1
Poor call quality – line drop, chopping sound, like robotic voice, Both party could not hear caller voice
...uration or the problem come from PRI E1 itself? [Apr 11 15:32:48] VERBOSE[9231] chan_dahdi.c: -- Requested transfer capability: 0x00 - SPEECH [Apr 11 15:32:48] DEBUG[6888] channel.c: Avoiding initial deadlock for channel '0xb67f3d50' [Apr 11 15:32:48] VERBOSE[9231] app_dial.c: -- Called g0/0XXXXXXXXX [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel DAHDI/2-1 to read format ulaw [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel SIP/2130-000006fb to write format ulaw [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel SIP/2130-000006fb to read format alaw [Apr 11 15:32:48] DEBUG[2993] man...
2011 Apr 13
0
Poor call quality - line drop, chopping sound, like robotic voice, Both party could not hear caller voice
...uration or the problem come from PRI E1 itself? [Apr 11 15:32:48] VERBOSE[9231] chan_dahdi.c: -- Requested transfer capability: 0x00 - SPEECH [Apr 11 15:32:48] DEBUG[6888] channel.c: Avoiding initial deadlock for channel '0xb67f3d50' [Apr 11 15:32:48] VERBOSE[9231] app_dial.c: -- Called g0/0XXXXXXXXX [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel DAHDI/2-1 to read format ulaw [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel SIP/2130-000006fb to write format ulaw [Apr 11 15:32:48] DEBUG[9231] channel.c: Set channel SIP/2130-000006fb to read format alaw [Apr 11 15:32:48] DEBUG[2993] man...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...e_offset, initrd, ird_size); + /* Entry is physical address: convert to virtual */ + return ehdr->e_entry + *page_offset; +} + +static unsigned long intuit_page_offset(unsigned char *img, unsigned long len) +{ + unsigned int i, possibilities[256]; + + for (i = 0; i + 4 < len; i++) { + /* mov 0xXXXXXXXX,%eax */ + if (img[i] == 0xA1 && ++possibilities[img[i+4]] > 3) + return (unsigned long)img[i+4] << 24; + } + errx(1, "could not determine page offset"); +} + +static u32 bzimage(int fd, unsigned long mem, unsigned long *pgdir_addr, + const char *initrd, unsigned lo...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 07/13] lguest64 loader
...e_offset, initrd, ird_size); + /* Entry is physical address: convert to virtual */ + return ehdr->e_entry + *page_offset; +} + +static unsigned long intuit_page_offset(unsigned char *img, unsigned long len) +{ + unsigned int i, possibilities[256]; + + for (i = 0; i + 4 < len; i++) { + /* mov 0xXXXXXXXX,%eax */ + if (img[i] == 0xA1 && ++possibilities[img[i+4]] > 3) + return (unsigned long)img[i+4] << 24; + } + errx(1, "could not determine page offset"); +} + +static u32 bzimage(int fd, unsigned long mem, unsigned long *pgdir_addr, + const char *initrd, unsigned lo...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...].p_paddr); + } + + return entry_point((void *)start, (void *)end, *page_offset); +} + +/* This is amazingly reliable. */ +static unsigned long intuit_page_offset(unsigned char *img, unsigned long len) +{ + unsigned int i, possibilities[256] = { 0 }; + + for (i = 0; i + 4 < len; i++) { + /* mov 0xXXXXXXXX,%eax */ + if (img[i] == 0xA1 && ++possibilities[img[i+4]] > 3) + return (unsigned long)img[i+4] << 24; + } + errx(1, "could not determine page offset"); +} + +static unsigned long unpack_bzimage(int fd, unsigned long *page_offset) +{ + gzFile f; + int ret, len = 0; + v...
2007 May 09
0
[patch 9/9] lguest: the documentation, example launcher
...].p_paddr); + } + + return entry_point((void *)start, (void *)end, *page_offset); +} + +/* This is amazingly reliable. */ +static unsigned long intuit_page_offset(unsigned char *img, unsigned long len) +{ + unsigned int i, possibilities[256] = { 0 }; + + for (i = 0; i + 4 < len; i++) { + /* mov 0xXXXXXXXX,%eax */ + if (img[i] == 0xA1 && ++possibilities[img[i+4]] > 3) + return (unsigned long)img[i+4] << 24; + } + errx(1, "could not determine page offset"); +} + +static unsigned long unpack_bzimage(int fd, unsigned long *page_offset) +{ + gzFile f; + int ret, len = 0; + v...
2019 May 29
6
[PATCH 00/22] Some documentation fixes
Fix several warnings and broken links. This series was generated against linux-next, but was rebased to be applied at docs-next. It should apply cleanly on either tree. There's a git tree with all of them applied on the top of docs/docs-next at: https://git.linuxtv.org/mchehab/experimental.git/log/?h=fix_doc_links_v2 Mauro Carvalho Chehab (21): ABI: sysfs-devices-system-cpu: point to
2019 Jun 04
0
[PATCH v2 19/22] docs: fix broken documentation links
...on/firmware-guide/acpi/method-tracing.rst index d0b077b73f5f..0aa7e2c5d32a 100644 --- a/Documentation/firmware-guide/acpi/method-tracing.rst +++ b/Documentation/firmware-guide/acpi/method-tracing.rst @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the specified Where: 0xXXXXXXXX/0xYYYYYYYY - Refer to Documentation/acpi/debug.txt for possible debug layer/level + Refer to Documentation/firmware-guide/acpi/debug.rst for possible debug layer/level masking values. \PPPP.AAAA.TTTT.HHHH Full path of a control method that can be found in the ACPI namespace....
2019 Jun 07
0
[PATCH v3 16/20] docs: fix broken documentation links
...on/firmware-guide/acpi/method-tracing.rst index d0b077b73f5f..0aa7e2c5d32a 100644 --- a/Documentation/firmware-guide/acpi/method-tracing.rst +++ b/Documentation/firmware-guide/acpi/method-tracing.rst @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the specified Where: 0xXXXXXXXX/0xYYYYYYYY - Refer to Documentation/acpi/debug.txt for possible debug layer/level + Refer to Documentation/firmware-guide/acpi/debug.rst for possible debug layer/level masking values. \PPPP.AAAA.TTTT.HHHH Full path of a control method that can be found in the ACPI namespace....
2019 May 30
1
[PATCH 22/22] docs: fix broken documentation links
...st index > d0b077b73f5f..0aa7e2c5d32a 100644 > --- a/Documentation/firmware-guide/acpi/method-tracing.rst > +++ b/Documentation/firmware-guide/acpi/method-tracing.rst > @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the > specified > > Where: > 0xXXXXXXXX/0xYYYYYYYY > - Refer to Documentation/acpi/debug.txt for possible debug layer/level > + Refer to Documentation/firmware-guide/acpi/debug.rst for possible > debug layer/level masking values. > \PPPP.AAAA.TTTT.HHHH > Full path of a control method that can be found in...
2019 May 30
1
[PATCH 22/22] docs: fix broken documentation links
...st index > d0b077b73f5f..0aa7e2c5d32a 100644 > --- a/Documentation/firmware-guide/acpi/method-tracing.rst > +++ b/Documentation/firmware-guide/acpi/method-tracing.rst > @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the > specified > > Where: > 0xXXXXXXXX/0xYYYYYYYY > - Refer to Documentation/acpi/debug.txt for possible debug layer/level > + Refer to Documentation/firmware-guide/acpi/debug.rst for possible > debug layer/level masking values. > \PPPP.AAAA.TTTT.HHHH > Full path of a control method that can be found in...
2019 May 20
3
[PATCH 10/10] docs: fix broken documentation links
...on/firmware-guide/acpi/method-tracing.rst index d0b077b73f5f..0aa7e2c5d32a 100644 --- a/Documentation/firmware-guide/acpi/method-tracing.rst +++ b/Documentation/firmware-guide/acpi/method-tracing.rst @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the specified Where: 0xXXXXXXXX/0xYYYYYYYY - Refer to Documentation/acpi/debug.txt for possible debug layer/level + Refer to Documentation/firmware-guide/acpi/debug.rst for possible debug layer/level masking values. \PPPP.AAAA.TTTT.HHHH Full path of a control method that can be found in the ACPI namespace....
2019 May 29
0
[PATCH 22/22] docs: fix broken documentation links
...on/firmware-guide/acpi/method-tracing.rst index d0b077b73f5f..0aa7e2c5d32a 100644 --- a/Documentation/firmware-guide/acpi/method-tracing.rst +++ b/Documentation/firmware-guide/acpi/method-tracing.rst @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the specified Where: 0xXXXXXXXX/0xYYYYYYYY - Refer to Documentation/acpi/debug.txt for possible debug layer/level + Refer to Documentation/firmware-guide/acpi/debug.rst for possible debug layer/level masking values. \PPPP.AAAA.TTTT.HHHH Full path of a control method that can be found in the ACPI namespace....
2019 May 30
0
[PATCH 22/22] docs: fix broken documentation links
...5d32a 100644 > > --- a/Documentation/firmware-guide/acpi/method-tracing.rst > > +++ b/Documentation/firmware-guide/acpi/method-tracing.rst > > @@ -68,7 +68,7 @@ c. Filter out the debug layer/level matched logs when the > > specified > > > > Where: > > 0xXXXXXXXX/0xYYYYYYYY > > - Refer to Documentation/acpi/debug.txt for possible debug layer/level > > + Refer to Documentation/firmware-guide/acpi/debug.rst for possible > > debug layer/level masking values. > > \PPPP.AAAA.TTTT.HHHH > > Full path of a control met...