1#include <linux/module.h> 2#include <asm/checksum.h> 3#include <asm/desc.h> 4 5EXPORT_SYMBOL(__down_failed); 6EXPORT_SYMBOL(__down_failed_interruptible); 7EXPORT_SYMBOL(__down_failed_trylock); 8EXPORT_SYMBOL(__up_wakeup); 9/* Networking helper routines. */ 10EXPORT_SYMBOL(csum_partial_copy_generic); 11 12EXPORT_SYMBOL(__get_user_1); 13EXPORT_SYMBOL(__get_user_2); 14EXPORT_SYMBOL(__get_user_4); 15 16EXPORT_SYMBOL(__put_user_1); 17EXPORT_SYMBOL(__put_user_2); 18EXPORT_SYMBOL(__put_user_4); 19EXPORT_SYMBOL(__put_user_8); 20 21EXPORT_SYMBOL(strstr); 22 23#ifdef CONFIG_SMP 24extern void FASTCALL( __write_lock_failed(rwlock_t *rw)); 25extern void FASTCALL( __read_lock_failed(rwlock_t *rw)); 26EXPORT_SYMBOL(__write_lock_failed); 27EXPORT_SYMBOL(__read_lock_failed); 28#endif 29 30EXPORT_SYMBOL(csum_partial); 31

