From owner-freebsd-stable@FreeBSD.ORG Sat Aug 4 12:03:17 2007 Return-Path: Delivered-To: freebsd-stable@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 04F8116A4CF for ; Sat, 4 Aug 2007 12:03:17 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from rv-out-0910.google.com (rv-out-0910.google.com [209.85.198.189]) by mx1.freebsd.org (Postfix) with ESMTP id E9BA413C467 for ; Sat, 4 Aug 2007 12:03:16 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by rv-out-0910.google.com with SMTP id f1so712946rvb for ; Sat, 04 Aug 2007 05:03:16 -0700 (PDT) DKIM-Signature: a=rsa-sha1; c=relaxed/relaxed; d=gmail.com; s=beta; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=En0jRpj26yl9gLYYDfVdDRoRimrGNSc3jXRy5Kgk3WH4TfZo47JsRJzepBMJSZ81vJjOzedbdpnLwyqHbo/HR2LOVDoxcaB1NX/zXM0Sb8QoinAl/7O1tckMnnDZxqrjn6DSxJ9r2M7+szSNdpvCVl4eJgu4miHilY+I6zTCHQA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=beta; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=BaomyjNoZcAraK5EkZ/vLljxotvAruqVOL4SUKZBkO+Il6dKIVn1UZ7Fjx27KAGO1yTlkQg9562Piw7/ra04tR7BK3Y7+4zGtlPqAgVhlHVkVp9vFImf3u45J7v8TuqNRuKArXQ20kdnrBTiA8nEHZMly0Pfj81TkO9BZt7efz4= Received: by 10.141.15.19 with SMTP id s19mr1412094rvi.1186228996368; Sat, 04 Aug 2007 05:03:16 -0700 (PDT) Received: by 10.141.86.8 with HTTP; Sat, 4 Aug 2007 05:03:16 -0700 (PDT) Message-ID: Date: Sat, 4 Aug 2007 16:03:16 +0400 From: pluknet To: kramer@centtech.com In-Reply-To: <46B398B6.4040705@centtech.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <46B0A7D5.6040308@centtech.com> <46B398B6.4040705@centtech.com> Cc: freebsd-stable@freebsd.org Subject: Re: buildkernel failure X-BeenThere: freebsd-stable@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Production branch of FreeBSD source code List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Aug 2007 12:03:17 -0000 On 04/08/07, Kevin Kramer wrote: > > ok, thanks. I have made that change and now I've gotten this > > /usr/src/sys/ufs/ffs/ffs_vfsops.c: In function > `ffs_mountfs': > /usr/src/sys/ufs/ffs/ffs_vfsops.c:675: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:677: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:678: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:678: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:687: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:688: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:696: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:865: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:866: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:867: error: structure has > no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c: In function > `ffs_unmount': > /usr/src/sys/ufs/ffs/ffs_vfsops.c:1028: error: structure > has no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:1029: error: structure > has no member named `mnt_gjprovider' > /usr/src/sys/ufs/ffs/ffs_vfsops.c:1030: error: structure > has no member named `mnt_gjprovider' > *** Error code 1 > > I've searched the threads and found nothing so far relevant. > Things are changed also a bit in src/sys/sys/mount.h with v1.197.2.7 since that patch was prepared, so it fails to apply against releng_6 cleanly. You can apply this manually to fix the build: @@ -178,6 +178,7 @@ int mnt_secondary_accwrites;/* (i) secondary wr. starts */ int mnt_ref; /* (i) Reference count */ int mnt_gen; /* struct mount generation */ + char *mnt_gjprovider; /* gjournal provider name */ }; struct vnode *__mnt_vnode_next(struct vnode **mvp, struct mount *mp); wbr, pluknet