From owner-cvs-all Sat Mar 27 12:41:45 1999 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (Postfix) with ESMTP id 6BABE15234; Sat, 27 Mar 1999 12:41:44 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Received: (from wpaul@localhost) by freefall.freebsd.org (8.9.2/8.9.2) id MAA11707; Sat, 27 Mar 1999 12:41:26 -0800 (PST) (envelope-from wpaul@FreeBSD.org) Message-Id: <199903272041.MAA11707@freefall.freebsd.org> From: Bill Paul Date: Sat, 27 Mar 1999 12:41:26 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/pci if_pn.c if_pnreg.h if_xl.c if_xlreg.h src/sys/alpha/conf GENERIC Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk wpaul 1999/03/27 12:41:26 PST Modified files: sys/pci if_pn.c if_pnreg.h if_xl.c if_xlreg.h sys/alpha/conf GENERIC Log: Make the xl and pn drivers work on FreeBSD/alpha and add them to sys/alpha/conf/GENERIC. Note: the PNIC ignores the lower few bits of the RX buffer DMA address, which means we have to add yet another kludge to make it happy. Since we can't offset the packet data, we copy the first few bytes of the received data into a separate mbuf with proper alignment. This puts the IP header where it needs to be to prevent unaligned accesses. Also modified the PNIC driver to use a non-interrupt driven TX strategy. This improves performance somewhat on x86/SMP systems where interrupt delivery doesn't seem to be as fast with an SMP kernel as with a UP kernel. Revision Changes Path 1.9 +62 -25 src/sys/pci/if_pn.c 1.6 +8 -4 src/sys/pci/if_pnreg.h 1.26 +29 -4 src/sys/pci/if_xl.c 1.10 +18 -30 src/sys/pci/if_xlreg.h 1.16 +3 -1 src/sys/alpha/conf/GENERIC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message