1
0
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:
Jim
2020-03-01 22:04:47 -05:00
parent 73d2479dba
commit 06a848a464

View File

@@ -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);