==== //depot/FreeBSD-ken/src/sys/pci/if_fxp.c#4 - /a/ken/perforce/FreeBSD-ken/src/sys/pci/if_fxp.c ==== *** /tmp/tmp.8481.0 Mon May 22 14:33:40 2000 --- /a/ken/perforce/FreeBSD-ken/src/sys/pci/if_fxp.c Sun May 21 16:47:39 2000 *************** *** 1456,1461 **** --- 1456,1462 ---- cbp->stripping = !prm; /* truncate rx packet to byte count */ cbp->padding = 1; /* (do) pad short tx packets */ cbp->rcv_crc_xfer = 0; /* (don't) xfer CRC to host */ + cbp->flow_control = 0x3d; /* turn on 802.3x flow control */ cbp->force_fdx = 0; /* (don't) force full duplex */ cbp->fdx_pin_en = 1; /* (enable) FDX# pin */ cbp->multi_ia = 0; /* (don't) accept multiple IAs */ ==== //depot/FreeBSD-ken/src/sys/pci/if_fxpreg.h#2 - /a/ken/perforce/FreeBSD-ken/src/sys/pci/if_fxpreg.h ==== *** /tmp/tmp.8481.1 Mon May 22 14:33:40 2000 --- /a/ken/perforce/FreeBSD-ken/src/sys/pci/if_fxpreg.h Sat Feb 5 02:52:29 2000 *************** *** 161,167 **** padding:1, rcv_crc_xfer:1, :5; ! volatile u_int :6, force_fdx:1, fdx_pin_en:1; volatile u_int :6, --- 161,172 ---- padding:1, rcv_crc_xfer:1, :5; ! /* ! * IEEE 802.3x flow control: ! * 0 == off ! * 0x3d == on ! */ ! volatile u_int flow_control:6, force_fdx:1, fdx_pin_en:1; volatile u_int :6,