search for: 5ul

Displaying 14 results from an estimated 14 matches for "5ul".

Did you mean: 0ul
2007 Apr 18
0
[PATCH 5/9] Paravirt drop udelay op
...delay(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 (rounded up) */ #define udelay(n) (__builtin_constant_p(n) ? \ ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : \ @@ -32,7 +25,6 @@ extern void __delay(unsigned long loops) #define ndelay(n) (__...
2007 Apr 18
0
[PATCH 5/9] Paravirt drop udelay op
...delay(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 (rounded up) */ #define udelay(n) (__builtin_constant_p(n) ? \ ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : \ @@ -32,7 +25,6 @@ extern void __delay(unsigned long loops) #define ndelay(n) (__...
2007 Apr 18
1
RFC: const_udelay in 018-delay functions patch
...(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_constant_p(n) ? \ ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : \ __udelay(n)) @@ -22,6 +29,7 @@ extern void __delay(unsigned long loops) #define ndelay(n) (__builtin_constant_p(n) ? \ ((n...
2007 Apr 18
1
RFC: const_udelay in 018-delay functions patch
...(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_constant_p(n) ? \ ((n) > 20000 ? __bad_udelay() : __const_udelay((n) * 0x10c7ul)) : \ __udelay(n)) @@ -22,6 +29,7 @@ extern void __delay(unsigned long loops) #define ndelay(n) (__builtin_constant_p(n) ? \ ((n...
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
2013 Aug 05
2
[LLVMdev] Many PPC64 failures with llvm 3.3
...AndFlagsSequence [ 1552s] /home/abuild/rpmbuild/BUILD/llvm-3.3/unittests/Support/YAMLIOTest.cpp:840: Failure [ 1552s] Value of: yin.error() [ 1552s] Actual: true [ 1552s] Expected: false [ 1552s] /home/abuild/rpmbuild/BUILD/llvm-3.3/unittests/Support/YAMLIOTest.cpp:841: Failure [ 1552s] Value of: 5UL [ 1552s] Actual: 5 [ 1552s] Expected: seq2.size() [ 1552s] Which is: 3 [ 1552s] /home/abuild/rpmbuild/BUILD/llvm-3.3/unittests/Support/YAMLIOTest.cpp:847: Failure [ 1552s] Value of: (uint32_t)a2 [ 1552s] Actual: 1 [ 1552s] Expected: seq2[2].flags [ 1552s] Which is: 0 [ 1552s] /home/abuild/rpmbu...
2007 Apr 18
20
[patch 00/20] XEN-paravirt: Xen guest implementation for paravirt_ops interface
This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual block
2007 Apr 18
20
[patch 00/20] XEN-paravirt: Xen guest implementation for paravirt_ops interface
This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual block
2007 Apr 18
20
[patch 00/20] XEN-paravirt: Xen guest implementation for paravirt_ops interface
This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual block
2008 May 21
0
Errors in using gdb (PR#11496)
...kwNc4mktaOfapSlCmDK7xTYJaGcdqZTK0ypspnDU 5BVU3wm0R19JyTRLHairga8SbKOmGtyNqAloj5YL5fDEabCKDatgsAGfgO7GufibGpeUyaIs aIdH4lXRRG5Y6wHgYTiEimTIxBBwpewYpuVPSIm7FFli1F68tOExSt0kENXvlOg4PUSHMnk1 E1whxJdTst+WUmKW4FrroF3GZkgFQXEMYnnM4mgK6bql3nlc4MgBKSVgKh4C8ug+1xvgCng5 OsgJahsmoTYRWNDOufgZBUICMEj+ZpGS50otQGI+5UL/1YfG7gw+ITd8ziC9nRKJDEzCRQa3 MDAGt5cRcwS081YCtcVAWl00kxxFZ6EHqXAm1MLaVFOFLCW2eaVu69mgd5KnVCsvDdODdBfc 38ESSkPb1fy5ipbnVR7iiiqSYTySTzm8KkGxzJUtoRYZJuH2I3rJqr+EQHs+2QrZBe3yTxVR BlEoS2NwxRhGeUXZ+9gzSO+t1OF6Whe086IJ5z2r+FSg7N12QGHvLaeOI08rWXKZV5Yv/SdP JkgXxMA10pGsWoF2SgAtUC56Jn4QF0dEKZ9PBFOJXCUbGAxe9h0...
2007 Apr 18
25
[patch 00/21] Xen-paravirt: Xen guest implementation for paravirt_ops interface
Hi Andi, This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual
2007 Apr 18
25
[patch 00/21] Xen-paravirt: Xen guest implementation for paravirt_ops interface
Hi Andi, This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual
2007 Apr 18
25
[patch 00/21] Xen-paravirt: Xen guest implementation for paravirt_ops interface
Hi Andi, This patch series implements the Linux Xen guest in terms of the paravirt-ops interface. The features in implemented this patch series are: * domU only * UP only (most code is SMP-safe, but there's no way to create a new vcpu) * writable pagetables, with late pinning/early unpinning (no shadow pagetable support) * supports both PAE and non-PAE modes * xen console * virtual