[patch 14/56] openmosix/openmosix-kcomd-typo-fix.patch
Florian Delizy <[email protected]> Thu, 02 Nov 2006 22:56:06 +0100
| Newsgroups | gmane.linux.cluster.openmosix.devel |
|---|---|
| Message-ID | <[email protected]> |
------------------------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ openMosix-devel mailing list openMosix-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org https://lists.sourceforge.net/lists/listinfo/openmosix-devel
openmosix-kcomd-typo-fix.patch
(text/x-patch, 955 B)
Index: linux/hpc/kcom.c
===================================================================
--- linux.orig/hpc/kcom.c 2006-11-02 22:51:51.000000000 +0100
+++ linux/hpc/kcom.c 2006-11-02 22:51:53.000000000 +0100
@@ -938,14 +938,14 @@
int i=-1;
printk("wait_for_response...for msgid %u\n", msgid);
- list_for_each_entry_safe(pkt, pkt_next, &task->in_packs, list)
- // FIXME: check for resp or ack, too.
- if (msgid==pkt->msgid) {
- i=pkt->len;
- list_del(&pkt->list);
- kmem_cache_free(kcom_pkt_cachep, pkt);
- printk("wait_for_response: i=%d, addr=%lu pkt->resp=%s\n", i, pkt->addr, pkt->resp);
- }
+ list_for_each_entry_safe(pkt, pkt_next, &task->in_packs, list)
+ // FIXME: check for resp or ack, too.
+ if (msgid==pkt->msgid) {
+ i=pkt->len;
+ list_del(&pkt->list);
+ kmem_cache_free(kcom_pkt_cachep, pkt);
+ printk("wait_for_response: i=%d, addr=%lu pkt->resp=%s\n", i, pkt->addr, pkt->resp);
+ }
return i;
}