From owner-freebsd-stable Thu Feb 15 17:14:23 1996 Return-Path: owner-stable Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA09938 for stable-outgoing; Thu, 15 Feb 1996 17:14:23 -0800 (PST) Received: (from fenner@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id RAA09932 Thu, 15 Feb 1996 17:14:22 -0800 (PST) Date: Thu, 15 Feb 1996 17:14:22 -0800 (PST) From: Bill Fenner Message-Id: <199602160114.RAA09932@freefall.freebsd.org> To: stable@freebsd.org, wscott@ichips.intel.com Subject: Re: "arpresolve: can't allocate llinfo" Sender: owner-stable@freebsd.org Precedence: bulk Could anyone having trouble with seeing "arpresolve: can't allocate llinfo" please apply the following patch, to make the message at least a little more useful? The next step is to do a "route get x.x.x.x" on the address that gets printed and see what it says. Thanks, Bill cvs diff: Diffing . Index: if_ether.c =================================================================== RCS file: /home/ncvs/src/sys/netinet/if_ether.c,v retrieving revision 1.17.4.1 diff -c -r1.17.4.1 if_ether.c *** if_ether.c 1995/07/23 05:26:13 1.17.4.1 --- if_ether.c 1996/02/10 20:35:57 *************** *** 314,320 **** rt = la->la_rt; } if (la == 0 || rt == 0) { ! log(LOG_DEBUG, "arpresolve: can't allocate llinfo\n"); m_freem(m); return (0); } --- 314,321 ---- rt = la->la_rt; } if (la == 0 || rt == 0) { ! log(LOG_DEBUG, "arpresolve: can't allocate llinfo for %s\n", ! inet_ntoa(SIN(dst)->sin_addr)); m_freem(m); return (0); }