From owner-freebsd-current Thu May 9 11:52:27 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id LAA03065 for current-outgoing; Thu, 9 May 1996 11:52:27 -0700 (PDT) Received: from palmer.demon.co.uk (palmer.demon.co.uk [158.152.50.150]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id LAA03029 Thu, 9 May 1996 11:52:17 -0700 (PDT) Received: from palmer.demon.co.uk (localhost [127.0.0.1]) by palmer.demon.co.uk (sendmail/PALMER-1) with ESMTP id TAA26331 ; Thu, 9 May 1996 19:49:34 +0100 (BST) To: Randy Terbush cc: davidg@root.com, current@FreeBSD.ORG, freebsd-isp@FreeBSD.ORG, stable@FreeBSD.ORG From: "Gary Palmer" Subject: Re: Continued MBUF problem with ET V.35 card In-reply-to: Your message of "Thu, 09 May 1996 11:52:08 CDT." <199605091657.LAA25376@sierra.zyzzyva.com> Date: Thu, 09 May 1996 19:49:34 +0100 Message-ID: <26329.831667774@palmer.demon.co.uk> Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Randy Terbush wrote in message ID <199605091657.LAA25376@sierra.zyzzyva.com>: > Both 2.1.0 and -stable sport version 1.9. Could someone share a copy > of version 1.8 so that I could see what has changed since 1.8? > Thanks again David. Enclosed is a diff between 1.8 and 1.9 along with the log message. Gary -- Gary Palmer FreeBSD Core Team Member FreeBSD - Turning PC's into workstations. See http://www.FreeBSD.ORG/ for info. ---------------------------- revision 1.9 date: 1994/11/14 13:54:20; author: bde; state: Exp; lines: +6 -5 Declare a complete prototype for the function pointer *ext_free and the function m_devget. Uniformize idempotency ifdef. ---------------------------- Index: mbuf.h =================================================================== RCS file: /mnt/usr/home/ncvs/src/sys/sys/mbuf.h,v retrieving revision 1.8 retrieving revision 1.9 diff -r1.8 -r1.9 34c34 < * $Id: mbuf.h,v 1.8 1994/11/04 00:28:38 davidg Exp $ --- > * $Id: mbuf.h,v 1.9 1994/11/14 13:54:20 bde Exp $ 89c89,90 < void (*ext_free)(); /* free routine if not the usual */ --- > void (*ext_free) /* free routine if not the usual */ > __P((caddr_t, u_int)); 388,389c389,390 < struct mbuf *m_devget __P((char *,int,int,struct ifnet*,void (*copy)())); < --- > struct mbuf *m_devget __P((char *, int, int, struct ifnet *, > void (*copy)(struct mbuf *, caddr_t, u_int))); 416c417 < #endif --- > #endif /* !_SYS_MBUF_H_ */