search for: __delay

Displaying 20 results from an estimated 29 matches for "__delay".

2009 Jan 24
5
[LLVMdev] inline asm semantics: output constraint width smaller than input
...\ + (int)__ret_pu; \ }) #define __put_user_size(x, ptr, size, retval, errret) \ diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c index f456860..12d27f8 100644 --- a/arch/x86/lib/delay.c +++ b/arch/x86/lib/delay.c @@ -112,7 +112,7 @@ EXPORT_SYMBOL(__delay); inline void __const_udelay(unsigned long xloops) { - int d0; + unsigned long d0; xloops *= 4; asm("mull %%edx" -- 1.5.6.5 -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: .config-llvm-64 URL: <http://lists....
2009 Jan 24
0
[LLVMdev] inline asm semantics: output constraint width smaller than input
...\ > }) > > #define __put_user_size(x, ptr, size, retval, errret) \ > diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c > index f456860..12d27f8 100644 > --- a/arch/x86/lib/delay.c > +++ b/arch/x86/lib/delay.c > @@ -112,7 +112,7 @@ EXPORT_SYMBOL(__delay); > > inline void __const_udelay(unsigned long xloops) > { > - int d0; > + unsigned long d0; > > xloops *= 4; > asm("mull %%edx" Is this all that you need (plus the 16-bit setup code tweaks) to get LLVM to successfully build a 64-bit kernel...
2007 Apr 18
0
[PATCH 5/9] Paravirt drop udelay op
...t;)) { diff -r 135d1b73c878 include/asm-i386/delay.h --- a/include/asm-i386/delay.h Tue Feb 27 16:23:56 2007 -0800 +++ b/include/asm-i386/delay.h Tue Feb 27 16:26:01 2007 -0800 @@ -16,13 +16,6 @@ extern void __const_udelay(unsigned long extern void __const_udelay(unsigned long usecs); extern void __delay(unsigned long loops); -#if defined(CONFIG_PARAVIRT) && !defined(USE_REAL_TIME_DELAY) -#define udelay(n) paravirt_ops.const_udelay((n) * 0x10c7ul) - -#define ndelay(n) paravirt_ops.const_udelay((n) * 5ul) - -#else /* !PARAVIRT || USE_REAL_TIME_DELAY */ - /* 0x10c7 is 2**32 / 1000000 (roun...
2007 Apr 18
0
[PATCH 5/9] Paravirt drop udelay op
...t;)) { diff -r 135d1b73c878 include/asm-i386/delay.h --- a/include/asm-i386/delay.h Tue Feb 27 16:23:56 2007 -0800 +++ b/include/asm-i386/delay.h Tue Feb 27 16:26:01 2007 -0800 @@ -16,13 +16,6 @@ extern void __const_udelay(unsigned long extern void __const_udelay(unsigned long usecs); extern void __delay(unsigned long loops); -#if defined(CONFIG_PARAVIRT) && !defined(USE_REAL_TIME_DELAY) -#define udelay(n) paravirt_ops.const_udelay((n) * 0x10c7ul) - -#define ndelay(n) paravirt_ops.const_udelay((n) * 5ul) - -#else /* !PARAVIRT || USE_REAL_TIME_DELAY */ - /* 0x10c7 is 2**32 / 1000000 (roun...
2009 Jan 24
1
[LLVMdev] inline asm semantics: output constraint width smaller than input
...>> #define __put_user_size(x, ptr, size, retval, errret) \ >> diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c >> index f456860..12d27f8 100644 >> --- a/arch/x86/lib/delay.c >> +++ b/arch/x86/lib/delay.c >> @@ -112,7 +112,7 @@ EXPORT_SYMBOL(__delay); >> >> inline void __const_udelay(unsigned long xloops) >> { >> - int d0; >> + unsigned long d0; >> >> xloops *= 4; >> asm("mull %%edx" >> > > Is this all that you need (plus the 16-bit setup code twea...
2007 Apr 18
1
RFC: const_udelay in 018-delay functions patch
...D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- a/include/asm-i386/delay.h +++ b/include/asm-i386/delay.h @@ -15,6 +15,13 @@ extern void __const_udelay(unsigned long extern void __const_udelay(unsigned long usecs); extern void __delay(unsigned long loops); = +#if defined(CONFIG_PARAVIRT) && !defined(USE_REAL_TIME_DELAY) +#define udelay(n) paravirt_ops.const_udelay((n) * 0x10c7ul) + = +#define ndelay(n) paravirt_ops.const_udelay((n) * 5ul) + +#else /* !PARAVIRT || USE_REAL_TIME_DELAY */ + #define udelay(n) (__builtin_...
2007 Apr 18
1
RFC: const_udelay in 018-delay functions patch
...D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- a/include/asm-i386/delay.h +++ b/include/asm-i386/delay.h @@ -15,6 +15,13 @@ extern void __const_udelay(unsigned long extern void __const_udelay(unsigned long usecs); extern void __delay(unsigned long loops); = +#if defined(CONFIG_PARAVIRT) && !defined(USE_REAL_TIME_DELAY) +#define udelay(n) paravirt_ops.const_udelay((n) * 0x10c7ul) + = +#define ndelay(n) paravirt_ops.const_udelay((n) * 5ul) + +#else /* !PARAVIRT || USE_REAL_TIME_DELAY */ + #define udelay(n) (__builtin_...
2007 Jun 13
2
HTB deadlock
...= BUG: soft lockup detected on CPU#0! [<c013c890>] softlockup_tick+0x93/0xc2 [<c0127585>] update_process_times+0x26/0x5c [<c0111cd5>] smp_apic_timer_interrupt+0x97/0xb2 [<c0104373>] apic_timer_interrupt+0x1f/0x24 [<c01cd2eb>] delay_tsc+0x7/0x13 [<c01cd323>] __delay+0x6/0x7 [<c01ce796>] _raw_spin_lock+0xb8/0x13e [<c02846df>] dev_queue_xmit+0x53/0x2e4 [<c0286e20>] neigh_connected_output+0x80/0xa0 [<c02a213a>] ip_output+0x1b5/0x24b [<c02a0b56>] ip_finish_output+0x0/0x192 [<c029dfef>] ip_forward+0x1c8/0x2b9 [<c029ddf0...
2009 Jan 24
1
[LLVMdev] inline asm semantics: output constraint width smaller than input
...e: >> #define __put_user_size(x, ptr, size, retval, errret) \ >> diff --git a/arch/x86/lib/delay.c b/arch/x86/lib/delay.c >> index f456860..12d27f8 100644 >> --- a/arch/x86/lib/delay.c >> +++ b/arch/x86/lib/delay.c >> @@ -112,7 +112,7 @@ EXPORT_SYMBOL(__delay); >> >> inline void __const_udelay(unsigned long xloops) >> { >> - int d0; >> + unsigned long d0; >> >> xloops *= 4; >> asm("mull %%edx" > > Is this all that you need (plus the 16-bit setup code tweaks) to get > LLVM...
2010 Aug 02
2
CentOS 5.5 latest revisions seem really slow
I recently updated to OpenOffice 3.2 and I noticed that it, and the latest Evolution, seem to be incredibly slow for some operations. E.g., in OO, about half the time when I'm editing something, it takes anywhere from 10-30 seconds for OO to respond to a click on one of the icons or menu items, and Evo is taking forever to format messages. During these times the gnome-system-monitor icon on
2016 Jun 15
0
[PATCH v7 00/12] Support non-lru page migration
...814ed89c ffff8800a69c7148 ffffffff8112795d ffffed0015523e60 [ 340.319970] 000000009e857390 ffff8800aa91f300 ffff8800bbe21cc0 ffff8800047d6f80 [ 340.319975] ffff8800a69c72b0 ffff8800aa91f300 ffff8800a69c7168 ffffffff81d31bed [ 340.319980] Call Trace: [ 340.319983] [<ffffffff814ed89c>] ? __delay+0xa/0xc [ 340.319988] [<ffffffff8112795d>] do_raw_spin_lock+0x197/0x257 [ 340.319991] [<ffffffff81d31bed>] _raw_spin_lock+0x35/0x3c [ 340.319998] [<ffffffffa02c6062>] ? zs_free+0x191/0x27a [zsmalloc] [ 340.320003] [<ffffffffa02c6062>] zs_free+0x191/0x27a [zsmalloc] [...
2016 Jun 15
2
[PATCH v7 00/12] Support non-lru page migration
...c7148 ffffffff8112795d ffffed0015523e60 > [ 340.319970] 000000009e857390 ffff8800aa91f300 ffff8800bbe21cc0 ffff8800047d6f80 > [ 340.319975] ffff8800a69c72b0 ffff8800aa91f300 ffff8800a69c7168 ffffffff81d31bed > [ 340.319980] Call Trace: > [ 340.319983] [<ffffffff814ed89c>] ? __delay+0xa/0xc > [ 340.319988] [<ffffffff8112795d>] do_raw_spin_lock+0x197/0x257 > [ 340.319991] [<ffffffff81d31bed>] _raw_spin_lock+0x35/0x3c > [ 340.319998] [<ffffffffa02c6062>] ? zs_free+0x191/0x27a [zsmalloc] > [ 340.320003] [<ffffffffa02c6062>] zs_free+0x19...
2016 Jun 15
2
[PATCH v7 00/12] Support non-lru page migration
...c7148 ffffffff8112795d ffffed0015523e60 > [ 340.319970] 000000009e857390 ffff8800aa91f300 ffff8800bbe21cc0 ffff8800047d6f80 > [ 340.319975] ffff8800a69c72b0 ffff8800aa91f300 ffff8800a69c7168 ffffffff81d31bed > [ 340.319980] Call Trace: > [ 340.319983] [<ffffffff814ed89c>] ? __delay+0xa/0xc > [ 340.319988] [<ffffffff8112795d>] do_raw_spin_lock+0x197/0x257 > [ 340.319991] [<ffffffff81d31bed>] _raw_spin_lock+0x35/0x3c > [ 340.319998] [<ffffffffa02c6062>] ? zs_free+0x191/0x27a [zsmalloc] > [ 340.320003] [<ffffffffa02c6062>] zs_free+0x19...
2004 Jul 21
3
X100P panic
...ext_address+0x2b/0x37 [<0210605a>] print_context_stack+0x37/0x44 [<021060ba>] show_trace+0x53/0x77 [<02106159>] show_stack+0x7b/0x81 [<02106250>] show_registers+0xde/0x177 [<021063a7>] die+0x59/0xaf [<021146f3>] do_page_fault+0x2f7/0x446 [<02192ba5>] __delay+0x9/0xa [<021d948a>] serial8250_console_write+0x176/0x1bc [<021d9314>] serial8250_console_write+0x0/0x1bc [<02115e8c>] __wake_up_common+0x32/0x54 [<02107367>] do_IRQ+0x134/0x169 [<021143fc>] do_page_fault+0x0/0x446 ======================= [<021156ed>] reca...
2016 Jun 16
0
[PATCH v7 00/12] Support non-lru page migration
...00a7caab00 ffff8800a7caab10 ffff8800a7caab08 0000000022af534e [ 344.264186] ffff8801122a7100 ffffffff814eeb8c ffff8801122a7148 ffffffff81127ce6 [ 344.264191] ffffed0014f95560 000000009e85cd68 ffff8800a7caab00 ffff8800a7caab58 [ 344.264196] Call Trace: [ 344.264199] [<ffffffff814eeb8c>] __delay+0xa/0xc [ 344.264203] [<ffffffff81127ce6>] do_raw_spin_lock+0x197/0x257 [ 344.264206] [<ffffffff81d32d0d>] _raw_spin_lock+0x35/0x3c [ 344.264212] [<ffffffffa03ccd78>] ? zs_malloc+0x17e/0xb71 [zsmalloc] [ 344.264217] [<ffffffffa03ccd78>] zs_malloc+0x17e/0xb71 [zsmallo...
2007 Sep 28
0
Unable to boot xen dom0 on IBM System x3250
...6/0x3f2 [<ffffffff80210a87>] handle_IRQ_event+0x2d/0x60 [<ffffffff802a79ec>] __do_IRQ+0xa4/0x105 [<ffffffff802699b3>] do_IRQ+0xe7/0xf5 [<ffffffff8038dde8>] evtchn_do_upcall+0x86/0xe0 [<ffffffff8025cc1a>] do_hypervisor_callback+0x1e/0x2c [<ffffffff8020c70a>] __delay+0x6/0x10 [<ffffffff880c2d0a>] :mptbase:WaitForDoorbellInt+0xbe/0xe9 [<ffffffff880c2f3f>] :mptbase:mpt_handshake_req_reply_wait+0x138/0x296 [<ffffffff880c38a3>] :mptbase:SendIocInit+0x242/0x325 [<ffffffff880c32d5>] :mptbase:GetIocFacts+0x7e/0x253 [<ffffffff880c4459&gt...
2020 Apr 13
2
Build regressions/improvements in v5.7-rc1
...ble]: => 411:16 shx3_defconfig (fix available) > + /kisskb/src/drivers/vdpa/vdpa_sim/vdpa_sim.c: error: implicit declaration of function 'set_dma_ops' [-Werror=implicit-function-declaration]: => 324:2 um-all{yes,mod}config allmodconfig+64K_PAGES > + error: modpost: "__delay" [drivers/net/phy/mdio-cavium.ko] undefined!: => N/A sh-allmodconfig (seen before, __delay is an internal function, not to be called by drivers, cfr. "Undefined functions to get compile-time errors") > + error: modpost: "sysrq_mask" [drivers/tty/serial/serial_core...
2020 Apr 13
2
Build regressions/improvements in v5.7-rc1
...ble]: => 411:16 shx3_defconfig (fix available) > + /kisskb/src/drivers/vdpa/vdpa_sim/vdpa_sim.c: error: implicit declaration of function 'set_dma_ops' [-Werror=implicit-function-declaration]: => 324:2 um-all{yes,mod}config allmodconfig+64K_PAGES > + error: modpost: "__delay" [drivers/net/phy/mdio-cavium.ko] undefined!: => N/A sh-allmodconfig (seen before, __delay is an internal function, not to be called by drivers, cfr. "Undefined functions to get compile-time errors") > + error: modpost: "sysrq_mask" [drivers/tty/serial/serial_core...
2007 Apr 18
8
[PATCH 0/7] x86 paravirtualization infrastructure
The following patches introduce the core infrastructure needed to paravirtualize the 32-bit x86 Linux kernel. This is done by moving virtualization sensitive insn's or code paths to a function table, paravirt_ops. This structure can be populated with hypervisor specific calls or native stubs and currently support running on bare metal, VMI, Xen, or Lhype. These patches apply to
2007 Apr 18
8
[PATCH 0/7] x86 paravirtualization infrastructure
The following patches introduce the core infrastructure needed to paravirtualize the 32-bit x86 Linux kernel. This is done by moving virtualization sensitive insn's or code paths to a function table, paravirt_ops. This structure can be populated with hypervisor specific calls or native stubs and currently support running on bare metal, VMI, Xen, or Lhype. These patches apply to