Commit 22ae0bea authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman

Staging: hv: remove #defines from osd.c

Remove the unneeded #defines from osd.c

Cc: Hank Janssen <hjanssen@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 27274e5d
...@@ -21,15 +21,12 @@ ...@@ -21,15 +21,12 @@
* *
*/ */
#define KERNEL_2_6_27
#include <linux/module.h> #include <linux/module.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/mm.h> #include <linux/mm.h>
#include <linux/highmem.h> #include <linux/highmem.h>
#include <linux/vmalloc.h> #include <linux/vmalloc.h>
//#include <linux/config.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/irq.h> #include <linux/irq.h>
#include <linux/interrupt.h> #include <linux/interrupt.h>
...@@ -86,20 +83,11 @@ typedef struct _WORKITEM { ...@@ -86,20 +83,11 @@ typedef struct _WORKITEM {
void LogMsg(const char *fmt, ...) void LogMsg(const char *fmt, ...)
{ {
#ifdef KERNEL_2_6_5
char buf[1024];
#endif
va_list args; va_list args;
va_start(args, fmt); va_start(args, fmt);
#ifdef KERNEL_2_6_5
vsnprintf(buf, 1024, fmt, args);
va_end(args);
printk(buf);
#else
vprintk(fmt, args); vprintk(fmt, args);
va_end(args); va_end(args);
#endif
} }
void BitSet(unsigned int* addr, int bit) void BitSet(unsigned int* addr, int bit)
...@@ -130,30 +118,12 @@ int BitTestAndSet(unsigned int* addr, int bit) ...@@ -130,30 +118,12 @@ int BitTestAndSet(unsigned int* addr, int bit)
int InterlockedIncrement(int *val) int InterlockedIncrement(int *val)
{ {
#ifdef KERNEL_2_6_5
int i;
local_irq_disable();
i = atomic_read((atomic_t*)val);
atomic_set((atomic_t*)val, i+1);
local_irq_enable();
return i+1;
#else
return atomic_inc_return((atomic_t*)val); return atomic_inc_return((atomic_t*)val);
#endif
} }
int InterlockedDecrement(int *val) int InterlockedDecrement(int *val)
{ {
#ifdef KERNEL_2_6_5
int i;
local_irq_disable();
i = atomic_read((atomic_t*)val);
atomic_set((atomic_t*)val, i-1);
local_irq_enable();
return i-1;
#else
return atomic_dec_return((atomic_t*)val); return atomic_dec_return((atomic_t*)val);
#endif
} }
#ifndef atomic_cmpxchg #ifndef atomic_cmpxchg
...@@ -428,11 +398,7 @@ unsigned long Virtual2Physical(void * VirtAddr) ...@@ -428,11 +398,7 @@ unsigned long Virtual2Physical(void * VirtAddr)
return pfn << PAGE_SHIFT; return pfn << PAGE_SHIFT;
} }
#ifdef KERNEL_2_6_27
void WorkItemCallback(struct work_struct *work) void WorkItemCallback(struct work_struct *work)
#else
void WorkItemCallback(void* work)
#endif
{ {
WORKITEM* w = (WORKITEM*)work; WORKITEM* w = (WORKITEM*)work;
...@@ -474,11 +440,7 @@ int WorkQueueQueueWorkItem(HANDLE hWorkQueue, PFN_WORKITEM_CALLBACK workItem, vo ...@@ -474,11 +440,7 @@ int WorkQueueQueueWorkItem(HANDLE hWorkQueue, PFN_WORKITEM_CALLBACK workItem, vo
w->callback = workItem, w->callback = workItem,
w->context = context; w->context = context;
#ifdef KERNEL_2_6_27
INIT_WORK(&w->work, WorkItemCallback); INIT_WORK(&w->work, WorkItemCallback);
#else
INIT_WORK(&w->work, WorkItemCallback, w);
#endif
return queue_work(wq->queue, &w->work); return queue_work(wq->queue, &w->work);
} }
...@@ -492,10 +454,6 @@ void QueueWorkItem(PFN_WORKITEM_CALLBACK workItem, void* context) ...@@ -492,10 +454,6 @@ void QueueWorkItem(PFN_WORKITEM_CALLBACK workItem, void* context)
w->callback = workItem, w->callback = workItem,
w->context = context; w->context = context;
#ifdef KERNEL_2_6_27
INIT_WORK(&w->work, WorkItemCallback); INIT_WORK(&w->work, WorkItemCallback);
#else
INIT_WORK(&w->work, WorkItemCallback, w);
#endif
schedule_work(&w->work); schedule_work(&w->work);
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment