On 04/08/07, Kevin Kramer <[EMAIL PROTECTED]> 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 _______________________________________________ freebsd-stable@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-stable To unsubscribe, send any mail to "[EMAIL PROTECTED]"