Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 19151
b: refs/heads/master
c: 139366a
h: refs/heads/master
i:
  19149: c1cb7f7
  19147: 4f17d02
  19143: 9fefaba
  19135: d7a9515
v: v3
  • Loading branch information
Jes Sorensen authored and Tony Luck committed Jan 24, 2006
1 parent e0efbc7 commit c11b068
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e5ee7dda96476e09ee63af464ea17ddad1dc489d
refs/heads/master: 139366a093d1ce2749b1b4247947ceb9b78caa2a
6 changes: 3 additions & 3 deletions trunk/arch/ia64/sn/kernel/xpc_channel.c
Original file line number Diff line number Diff line change
Expand Up @@ -447,15 +447,15 @@ 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;
}
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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit c11b068

Please sign in to comment.