> I inserted a self made module called 'tt_mod' into rtlinux and when I > tried to remove it, I got a segmentation fault. I did an lsmod and got > this: > > Module Size Used by > rtl_fifo 9792 0 (unused) > tt_mod 0 0 (deleted)
this means that rmmod called your cleanup_module function and this function returned with an error -> kernel/module.c in free_module() as your cleanup_module failed the module not removed from the kernels module list - as this module list includes references to the modules that reference this module aswell as those that are used by this module the other modules also can't be removed as they are still "in use" . the only way out is a reboot and check your cleanu_module function. hofrat -- [rtl] --- To unsubscribe: echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR echo "unsubscribe rtl <Your_email>" | mail [EMAIL PROTECTED] -- For more information on Real-Time Linux see: http://www.rtlinux.org/
