Current-Users archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

Re: i386 5.99.48 Update ffs module load fails?



On Sun, Mar 13, 2011 at 09:20:18AM -0700, John Nemeth wrote:
>      Sounds like somebody neglected to do a version bump after changing
> a bunch of kernel APIs.  The module is installed, but it failed to link
> which means it doesn't match the kernel.

The last version bump was for quota2, so it should be OK.
It looks more like some functions are missing from the kernel
and from the module. 

Can you try the attached patch ?

-- 
Manuel Bouyer <bouyer%antioche.eu.org@localhost>
     NetBSD: 26 ans d'experience feront toujours la difference
--
Index: modules/ffs/Makefile
===================================================================
RCS file: /cvsroot/src/sys/modules/ffs/Makefile,v
retrieving revision 1.5
diff -u -r1.5 Makefile
--- modules/ffs/Makefile        6 Mar 2011 17:08:36 -0000       1.5
+++ modules/ffs/Makefile        13 Mar 2011 17:32:30 -0000
@@ -10,11 +10,11 @@
 .PATH: ${S}/ufs/ufs
 SRCS=  ufs_bmap.c ufs_dirhash.c ufs_extattr.c ufs_ihash.c ufs_inode.c \
        ufs_lookup.c ufs_quota.c ufs_quota1.c ufs_quota2.c ufs_vfsops.c \
-       ufs_vnops.c ufs_wapbl.c
+       ufs_vnops.c ufs_wapbl.c quota2_subr.c
 
 .PATH: ${S}/ufs/ffs
 SRCS+= ffs_alloc.c ffs_balloc.c ffs_inode.c ffs_subr.c ffs_tables.c \
        ffs_vfsops.c ffs_vnops.c ffs_snapshot.c \
-       ffs_bswap.c ffs_wapbl.c ffs_appleufs.c
+       ffs_bswap.c ffs_wapbl.c ffs_appleufs.c ffs_quota2.c
 
 .include <bsd.kmodule.mk>


Home | Main Index | Thread Index | Old Index