On Apr. 16, 2009, 6:07 +0300, Paul Mundt <lethal@xxxxxxxxxxxx> wrote: > Caught with the sh allmodconfig: > > ERROR: "find_last_bit" [fs/nfs/nfs.ko] undefined! > make[2]: *** [__modpost] Error 1 > make[1]: *** [modules] Error 2 > make: *** [sub-make] Error 2 > > find_last_bit.o is currently built with lib-y, which ends up breaking > the nfs module build after the ("nfs41: free slot") commit. Move it > to obj-y so the EXPORT_SYMBOL() actually has some effect. > > Signed-off-by: Paul Mundt <lethal@xxxxxxxxxxxx> > Cc: Benny Halevy <bhalevy@xxxxxxxxxxx> ACK. and thanks! FYI, Fred's original patch can be found here: http://patchwork.kernel.org/patch/14572/ It is also queued in the linux-pnfs tree: http://git.linux-nfs.org/?p=bhalevy/linux-pnfs.git;a=commitdiff;h=1e3a7552d9de2ba101b76deed99605f0145fc4d5 but I haven't submitted it to Trond since I expected it to get upstream (and to -next) via linux-kbuild. Trond, would you like to pull this change to your nfsv41 branch? (should appear before "nfs41: free slot" as Paul noticed) Benny > Cc: Andy Adamson <andros@xxxxxxxxxx> > Cc: Trond Myklebust <Trond.Myklebust@xxxxxxxxxx> > > --- > > diff --git a/lib/Makefile b/lib/Makefile > index d6edd67..33a40e4 100644 > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -38,7 +38,7 @@ lib-$(CONFIG_RWSEM_GENERIC_SPINLOCK) += rwsem-spinlock.o > lib-$(CONFIG_RWSEM_XCHGADD_ALGORITHM) += rwsem.o > lib-$(CONFIG_GENERIC_FIND_FIRST_BIT) += find_next_bit.o > lib-$(CONFIG_GENERIC_FIND_NEXT_BIT) += find_next_bit.o > -lib-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o > +obj-$(CONFIG_GENERIC_FIND_LAST_BIT) += find_last_bit.o > obj-$(CONFIG_GENERIC_HWEIGHT) += hweight.o > obj-$(CONFIG_LOCK_KERNEL) += kernel_lock.o > obj-$(CONFIG_DEBUG_PREEMPT) += smp_processor_id.o -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html