Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 130376
b: refs/heads/master
c: 17e2161
h: refs/heads/master
v: v3
  • Loading branch information
Robin Holt authored and Linus Torvalds committed Jan 30, 2009
1 parent 9e041a2 commit 1f28054
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 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: 69b3bb65fa97a1e8563518dbbc35cd57beefb2d4
refs/heads/master: 17e2161654da4e6bdfd8d53d4f52e820ee93f423
10 changes: 6 additions & 4 deletions trunk/drivers/misc/sgi-xp/xpc_sn2.c
Original file line number Diff line number Diff line change
Expand Up @@ -1957,11 +1957,13 @@ xpc_get_deliverable_payload_sn2(struct xpc_channel *ch)

msg = xpc_pull_remote_msg_sn2(ch, get);

DBUG_ON(msg != NULL && msg->number != get);
DBUG_ON(msg != NULL && (msg->flags & XPC_M_SN2_DONE));
DBUG_ON(msg != NULL && !(msg->flags & XPC_M_SN2_READY));
if (msg != NULL) {
DBUG_ON(msg->number != get);
DBUG_ON(msg->flags & XPC_M_SN2_DONE);
DBUG_ON(!(msg->flags & XPC_M_SN2_READY));

payload = &msg->payload;
payload = &msg->payload;
}
break;
}

Expand Down

0 comments on commit 1f28054

Please sign in to comment.