Re: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-12-01 Thread Samuel Thibault
Shakthi Kannan, le Sat 15 Nov 2008 00:47:46 +0530, a écrit : > There is a conflict for device_deallocate when put in ds_routines.h > for linux/pcmcia-cs/glue/ds.c:444 which uses: > > void device_deallocate (void *p). Gah, that reveals a reason why these were taking void*, so I reverted that bef

Re: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-11-14 Thread Shakthi Kannan
CTED]> Date: Sat, 15 Nov 2008 00:35:59 +0530 Subject: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c diff --git a/device/ds_routines.h b/device/ds_routines.h index 24668b4..40213f3 100644 --- a/device/ds_routines.h +++ b/device/ds_routines.h @@ -47,11 +47,16 @@ kern_

Re: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-11-13 Thread Samuel Thibault
Shakthi Kannan, le Thu 13 Nov 2008 23:59:59 +0530, a écrit : > --- a/kern/ipc_mig.c > +++ b/kern/ipc_mig.c > @@ -53,6 +53,10 @@ > #include > #include > > +/* Function prototypes */ > +void device_reference (device_t dev); > +void device_deallocate (device_t dev); Err, no, these should rather

[PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-11-13 Thread Shakthi Kannan
1 From: Shakthi Kannan <[EMAIL PROTECTED]> Date: Thu, 13 Nov 2008 23:57:36 +0530 Subject: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c --- kern/ipc_mig.c |4 kern/task.c|2 +- vm/memory_object.c |3 +++ vm/vm_kern.c |2 +- 4 files c