mirror of
https://github.com/prirun/p50em.git
synced 2026-02-06 16:04:54 +00:00
devpnc.h: don't send broadcasts to myself. Not sure if this is right
This commit is contained in:
2
devpnc.h
2
devpnc.h
@@ -664,7 +664,7 @@ unsigned short pncxmit(t_dma *iob) {
|
||||
xstat = 0;
|
||||
if ((*iob).toid == 255) {
|
||||
for (nodeid=1; nodeid<=MAXNODEID; nodeid++)
|
||||
if (ni[nodeid].cstate != PNCCSNONE)
|
||||
if (nodeid != myid && ni[nodeid].cstate != PNCCSNONE)
|
||||
xstat |= pncxmit1(nodeid, iob);
|
||||
} else {
|
||||
xstat |= pncxmit1((*iob).toid, iob);
|
||||
|
||||
Reference in New Issue
Block a user