hush/modutils
Bernhard Reutner-Fischer 6075b2aee0 - add FIXME. Perhaps somebody is interrested in looking into this one.
We would try to be clever and compare the *data instead of the *elt.

Somethink like this might be of more general use:
/* Unlink arbitrary element from the list that contains data */
void llist_unlink_data(llist_t **head, void *data)
{
    llist_t *elt;

    for (elt = *head; elt; elt = elt->link) {
        if (elt->data == data) {
            llist_unlink(elt);
            return;
        }
    }
}
2008-06-02 19:23:47 +00:00
..
Config.in - add alias support 2008-06-02 18:59:16 +00:00
depmod.c - add FIXME. Perhaps somebody is interrested in looking into this one. 2008-06-02 19:23:47 +00:00
insmod.c Reinstate CONFIG_CROSS_COMPILE_PREFIX 2008-06-02 04:51:29 +00:00
Kbuild
lsmod.c
modprobe.c
rmmod.c