Re: 2.6.26-pre build errors

From: Rafael J. Wysocki
Date: Fri Apr 25 2008 - 18:42:23 EST


On Saturday, 26 of April 2008, Steve French wrote:
> From today's current 2.6. kernel git tree - build included compile
> errors in joystick support. After disabling joystick support, I still
> get at least one link error:
>
> ERROR: "__locks_copy_lock" [fs/lockd/lockd.ko] undefined!

Please try this:

__locks_copy_lock has to be exported, because it's used in lockd,
which may be built as a module.

Signed-off-by: Rafael J. Wysocki <rjw@xxxxxxx>
---
fs/locks.c | 2 ++
1 file changed, 2 insertions(+)

Index: linux-2.6/fs/locks.c
===================================================================
--- linux-2.6.orig/fs/locks.c
+++ linux-2.6/fs/locks.c
@@ -237,6 +237,8 @@ void __locks_copy_lock(struct file_lock
new->fl_lmops = NULL;
}

+EXPORT_SYMBOL(__locks_copy_lock);
+
void locks_copy_lock(struct file_lock *new, struct file_lock *fl)
{
locks_release_private(new);

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/