Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Feb 1996 17:14:22 -0800 (PST)
From:      Bill Fenner <fenner>
To:        stable@freebsd.org, wscott@ichips.intel.com
Subject:   Re: "arpresolve: can't allocate llinfo"
Message-ID:  <199602160114.RAA09932@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);
  	}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199602160114.RAA09932>