Darren Tucker wrote:

Index: netinet/if_ether.c
===================================================================
RCS file: /cvs/src/sys/netinet/if_ether.c,v
retrieving revision 1.65
diff -u -p -r1.65 if_ether.c
--- netinet/if_ether.c  21 Aug 2006 21:36:53 -0000      1.65
+++ netinet/if_ether.c  11 Feb 2007 10:43:51 -0000
@@ -392,7 +392,10 @@ arpresolve(ac, rt, m, dst, desten)
                        rt = la->la_rt;
        }
        if (la == 0 || rt == 0) {
-               log(LOG_DEBUG, "arpresolve: can't allocate llinfo\n");
+               log(LOG_DEBUG, "arpresolve: can't allocate llinfo for "
+                   "%s:%s%s\n", inet_ntoa(SIN(dst)->sin_addr),
+                   la == NULL ? " no link address" : "",
+                   rt == NULL ? " no route" : "");
                m_freem(m);
                return (0);
        }


Oh yes. Thumbs up for this patch.
Have a very similar one in my tree for months.

Reply via email to