|   | 
      | 
  
  
      | 
      | 
  
 
     | 
    | 
  
  
     | 
    | 
  
  
    |   | 
      | 
  
  
    | 
         
xen-devel
[Xen-devel] [PATCH 08 of 38] x86: make apic_* operations inline	function
 
Mainly to get proper type-checking and consistency.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@xxxxxxxxxx>
---
 arch/x86/include/asm/apic.h |   35 +++++++++++++++++++++++++++++------
 1 file changed, 29 insertions(+), 6 deletions(-)
diff --git a/arch/x86/include/asm/apic.h b/arch/x86/include/asm/apic.h
--- a/arch/x86/include/asm/apic.h
+++ b/arch/x86/include/asm/apic.h
@@ -125,12 +125,35 @@
 
 extern struct apic_ops *apic_ops;
 
-#define apic_read (apic_ops->read)
-#define apic_write (apic_ops->write)
-#define apic_icr_read (apic_ops->icr_read)
-#define apic_icr_write (apic_ops->icr_write)
-#define apic_wait_icr_idle (apic_ops->wait_icr_idle)
-#define safe_apic_wait_icr_idle (apic_ops->safe_wait_icr_idle)
+static inline u32 apic_read(u32 reg)
+{
+       return apic_ops->read(reg);
+}
+
+static inline void apic_write(u32 reg, u32 val)
+{
+       apic_ops->write(reg, val);
+}
+
+static inline u64 apic_icr_read(void)
+{
+       return apic_ops->icr_read();
+}
+
+static inline void apic_icr_write(u32 low, u32 high)
+{
+       apic_ops->icr_write(low, high);
+}
+
+static inline void apic_wait_icr_idle(void)
+{
+       apic_ops->wait_icr_idle();
+}
+
+static inline u32 safe_apic_wait_icr_idle(void)
+{
+       return apic_ops->safe_wait_icr_idle();
+}
 
 extern int get_physical_broadcast(void);
 
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
 |   
 
| <Prev in Thread] | 
Current Thread | 
[Next in Thread>
 |  
- Re: [Xen-devel] [PATCH 03 of 38] swiotlb: allow architectures	tooverride swiotlb pool allocation, (continued)
 
 
[Xen-devel] [PATCH 04 of 38] swiotlb: move some definitions to	header, Jeremy Fitzhardinge
[Xen-devel] [PATCH 05 of 38] swiotlb: allow architectures to	override virt<->bus<->virt conversions, Jeremy Fitzhardinge
[Xen-devel] [PATCH 06 of 38] xen: clean up asm-x86/xen/hypervisor.h, Jeremy Fitzhardinge
[Xen-devel] [PATCH 09 of 38] x86: make sure we really have an hpet	mapping before using it, Jeremy Fitzhardinge
[Xen-devel] [PATCH 08 of 38] x86: make apic_* operations inline	functions,
Jeremy Fitzhardinge <=
[Xen-devel] [PATCH 07 of 38] x86: add io_apic_ops, Jeremy Fitzhardinge
[Xen-devel] [PATCH 10 of 38] x86: add handle_irq() to allow	interrupt injection, Jeremy Fitzhardinge
[Xen-devel] [PATCH 11 of 38] x86: define no-op exit_idle() on 32-bit, Jeremy Fitzhardinge
[Xen-devel] [PATCH 12 of 38] xen/dom0: handle acpi lapic parsing in	Xen dom0, Jeremy Fitzhardinge
[Xen-devel] [PATCH 13 of 38] x86: unstatic mp_find_ioapic so it can	be used elsewhere, Jeremy Fitzhardinge
[Xen-devel] [PATCH 14 of 38] x86: add mp_find_ioapic_pin, Jeremy Fitzhardinge
[Xen-devel] [PATCH 15 of 38] x86: unstatic ioapic entry funcs, Jeremy Fitzhardinge
[Xen-devel] [PATCH 16 of 38] x86: include linux/init.h in	asm/numa_64.h, Jeremy Fitzhardinge
[Xen-devel] [PATCH 17 of 38] x86: add swiotlb allocation functions, Jeremy Fitzhardinge
[Xen-devel] [PATCH 19 of 38] x86: add arch specific version of the	swiotlb virt<->bus<->virt functions, Jeremy Fitzhardinge
 |  
  
 | 
    | 
  
  
    |   | 
    |