From owner-freebsd-bugs@FreeBSD.ORG Tue Aug 19 06:30:05 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E16631065677 for ; Tue, 19 Aug 2008 06:30:05 +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 DA3F28FC16 for ; Tue, 19 Aug 2008 06:30:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m7J6U5e8001384 for ; Tue, 19 Aug 2008 06:30:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m7J6U5p0001381; Tue, 19 Aug 2008 06:30:05 GMT (envelope-from gnats) Date: Tue, 19 Aug 2008 06:30:05 GMT Message-Id: <200808190630.m7J6U5p0001381@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: Joseph Koshy Cc: Subject: Re: bin/124353: cvsup(1): CVSup coredumps with Bus Error since installworld of 6.3-STABLE on 28/5/08 [regression] X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Joseph Koshy List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Aug 2008 06:30:06 -0000 The following reply was made to PR bin/124353; it has been noted by GNATS. From: Joseph Koshy To: pav@FreeBSD.org Cc: Joseph Koshy , bug-followup@FreeBSD.org, srp@zzap.org Subject: Re: bin/124353: cvsup(1): CVSup coredumps with Bus Error since installworld of 6.3-STABLE on 28/5/08 [regression] Date: Tue, 19 Aug 2008 06:18:16 -0000 > Thanks, this fixes the crashes for me. I will update the port today. We probably need to extend other MD interfaces too, to catch up with new definition for 'struct flock'. +++ libs/m3core/src/unix/freebsd-4.i386/Unix.i3 2008-08-19 11:22:26.000000000 +0530 @@ -149,6 +149,7 @@ l_pid: pid_t := 0; l_type: short; (* see below *) l_whence: short; + l_sysid: int := 0; END; (* ok *) --- libs/m3core/src/unix/freebsd-4.sparc64/Unix.i3.orig 2008-08-19 11:19:28.000000000 +0530 +++ libs/m3core/src/unix/freebsd-4.sparc64/Unix.i3 2008-08-19 11:19:31.000000000 +0530 @@ -147,6 +147,7 @@ l_pid: pid_t := 0; l_type: short; (* see below *) l_whence: short; + l_sysid: int := 0; END; (* ok *) --- libs/m3core/src/unix/freebsd-4.alpha/Unix.i3.orig 2008-08-19 11:17:50.000000000 +0530 +++ libs/m3core/src/unix/freebsd-4.alpha/Unix.i3 2008-08-19 11:18:43.000000000 +0530 @@ -147,6 +147,7 @@ l_pid: pid_t := 0; l_type: short; (* see below *) l_whence: short; + l_sysid: int := 0; END; (* ok *) Koshy