summaryrefslogtreecommitdiff
path: root/linux/pcmcia-cs
diff options
context:
space:
mode:
authorThomas Schwinge <tschwinge@gnu.org>2007-04-25 13:11:51 +0000
committerThomas Schwinge <tschwinge@gnu.org>2009-06-18 00:27:08 +0200
commitd29098865fff13b39d27d826ba988402ac948728 (patch)
tree72885428e0b5db472d4f6518a368e63d6aca65ea /linux/pcmcia-cs
parente09ce48efdefed551bbac853f2477d0f40f1ac30 (diff)
2007-04-25 Thomas Schwinge <tschwinge@gnu.org>
* linux/pcmcia-cs/glue/ds.c (kmalloc, kfree): Call `linux_kmalloc', respective `linux_kfree' instead.
Diffstat (limited to 'linux/pcmcia-cs')
-rw-r--r--linux/pcmcia-cs/glue/ds.c16
1 files changed, 11 insertions, 5 deletions
diff --git a/linux/pcmcia-cs/glue/ds.c b/linux/pcmcia-cs/glue/ds.c
index d0ecac9..733e4b6 100644
--- a/linux/pcmcia-cs/glue/ds.c
+++ b/linux/pcmcia-cs/glue/ds.c
@@ -26,7 +26,13 @@
/*
* Prepare the namespace for inclusion of Mach header files.
*/
+
#undef PAGE_SHIFT
+
+/*
+ * This is really ugly. But this is glue code, so... It's about the `kfree'
+ * symbols in <linux/malloc.h> and <kern/kalloc.h>.
+ */
#undef kfree
/*
@@ -120,11 +126,11 @@ device_deallocate(void *p)
{
*link = user->next;
user->user_magic = 0;
- kfree(user);
+ linux_kfree(user);
}
/* now finally reap the device */
- kfree(device);
+ linux_kfree(device);
}
/*
@@ -179,7 +185,7 @@ device_open (ipc_port_t reply_port, mach_msg_type_name_t reply_port_type,
io_return_t err = D_SUCCESS;
struct mach_device *dev;
- dev = kmalloc(sizeof(struct mach_socket_device), GFP_KERNEL);
+ dev = linux_kmalloc(sizeof(struct mach_socket_device), GFP_KERNEL);
if(! dev)
{
err = D_NO_MEMORY;
@@ -203,7 +209,7 @@ device_open (ipc_port_t reply_port, mach_msg_type_name_t reply_port_type,
s->state |= SOCKET_BUSY;
}
- user_info_t *user = kmalloc(sizeof(user_info_t), GFP_KERNEL);
+ user_info_t *user = linux_kmalloc(sizeof(user_info_t), GFP_KERNEL);
if(! user)
{
err = D_NO_MEMORY;
@@ -254,7 +260,7 @@ device_open (ipc_port_t reply_port, mach_msg_type_name_t reply_port_type,
ipc_port_dealloc_kernel(dev->port);
}
- kfree(dev);
+ linux_kfree(dev);
dev = NULL;
}
}