]> Git Repo - linux.git/commitdiff
[IA64-SGI] XPC remove unnecessary GFP_DMA flag
authorJes Sorensen <[email protected]>
Tue, 24 Jan 2006 09:23:16 +0000 (04:23 -0500)
committerTony Luck <[email protected]>
Tue, 24 Jan 2006 23:49:49 +0000 (15:49 -0800)
Remove the GFP_DMA flag from XPC kmalloc() calls.

Signed-off-by: Jes Sorensen <[email protected]>
Acked-by: Dean Nelson <[email protected]>
Signed-off-by: Tony Luck <[email protected]>
arch/ia64/sn/kernel/xpc_channel.c

index 8d950c778bb6c71a8ef13090f29e4ad7e224973d..36e5437a0fb6bdc281e104340b4b9ec8f4358a3a 100644 (file)
@@ -447,7 +447,7 @@ xpc_allocate_local_msgqueue(struct xpc_channel *ch)
 
                nbytes = nentries * ch->msg_size;
                ch->local_msgqueue = xpc_kmalloc_cacheline_aligned(nbytes,
-                                               (GFP_KERNEL | GFP_DMA),
+                                               GFP_KERNEL,
                                                &ch->local_msgqueue_base);
                if (ch->local_msgqueue == NULL) {
                        continue;
@@ -455,7 +455,7 @@ xpc_allocate_local_msgqueue(struct xpc_channel *ch)
                memset(ch->local_msgqueue, 0, nbytes);
 
                nbytes = nentries * sizeof(struct xpc_notify);
-               ch->notify_queue = kmalloc(nbytes, (GFP_KERNEL | GFP_DMA));
+               ch->notify_queue = kmalloc(nbytes, GFP_KERNEL);
                if (ch->notify_queue == NULL) {
                        kfree(ch->local_msgqueue_base);
                        ch->local_msgqueue = NULL;
@@ -502,7 +502,7 @@ xpc_allocate_remote_msgqueue(struct xpc_channel *ch)
 
                nbytes = nentries * ch->msg_size;
                ch->remote_msgqueue = xpc_kmalloc_cacheline_aligned(nbytes,
-                                               (GFP_KERNEL | GFP_DMA),
+                                               GFP_KERNEL,
                                                &ch->remote_msgqueue_base);
                if (ch->remote_msgqueue == NULL) {
                        continue;
This page took 0.056418 seconds and 4 git commands to generate.