From owner-freebsd-sparc64@FreeBSD.ORG Sat Jul 21 06:40:07 2007 Return-Path: Delivered-To: freebsd-sparc64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 99D4C16A41A for ; Sat, 21 Jul 2007 06:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5A39513C494 for ; Sat, 21 Jul 2007 06:40:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.1/8.14.1) with ESMTP id l6L6e74M050183 for ; Sat, 21 Jul 2007 06:40:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.1/8.14.1/Submit) id l6L6e6RC050177; Sat, 21 Jul 2007 06:40:07 GMT (envelope-from gnats) Date: Sat, 21 Jul 2007 06:40:07 GMT Message-Id: <200707210640.l6L6e6RC050177@freefall.freebsd.org> To: freebsd-sparc64@FreeBSD.org From: js Cc: Subject: Re: sparc64/105157: No reply to ping on Sparc64 X-BeenThere: freebsd-sparc64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: js List-Id: Porting FreeBSD to the Sparc List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Jul 2007 06:40:07 -0000 The following reply was made to PR sparc64/105157; it has been noted by GNATS. From: js To: bug-followup@FreeBSD.org, andrew@grillet.co.uk Cc: Subject: Re: sparc64/105157: No reply to ping on Sparc64 Date: Sat, 21 Jul 2007 00:56:32 -0500 (CDT) Andrew, I run 6.2-RELEASE on an Ultra60 (2-way SMP), with nfsd running although not actively serving any NFS clients. I am also not running Apache, as you are. I am able to ping this machine (I receive an ICMP_ECHOREPLY [id=0] packet back corresponding to each ICMP_ECHO [id=8] packet I send to the machine.) Are you familiar with ddb and kernel debugging at all? If so, find out exactly what the kernel is doing with those ICMP_ECHO packets. They would be stored in mbufs by the kernel after the NIC DMAs them into main memory. Watch those mbufs during breakpoints on various network functions. If I were you, I would start by setting breakpoints on ip_input() and icmp_input(). Regards, Jon