>> unresolved symbol __udivdi3
>> unresolved symbol __umoddi3
>
>       These are compiler generated functions that are used to evaluate
>certain types of expressions.  In particular, division and the modulo
>operatiors in this instance.  For user space applications the functions
>are defined in a standard library that ships with the compiler.   I am not
>sure what to suggest for kernel modules, however.

Those functions are only invoked for `long long' arithmetic.  One option is 
simply to avoid this in the kernel; the other option is to link the kernel 
with libgcc.a and export its symbols.  The latter already happens on some 
architectures.

p.



-
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to [EMAIL PROTECTED]

Reply via email to