Sungju's Slow Life

Personal journal


module taint

static char *module_flags(struct module *mod, char *buf)
{
        int bx = 0;

        if (mod->taints ||
            mod->state == MODULE_STATE_GOING ||
            mod->state == MODULE_STATE_COMING) {
                buf[bx++] = '(';
                if (mod->taints & (1 <taints & (1 <taints & (1 <state == MODULE_STATE_GOING)
                        buf[bx++] = '-';
                /* Show a + for module-is-being-loaded */
                if (mod->state == MODULE_STATE_COMING)
                        buf[bx++] = '+';
                buf[bx++] = ')';
        }
        buf[bx] = ' ';

        return buf;
}


Leave a Reply

Please log in using one of these methods to post your comment:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

This site uses Akismet to reduce spam. Learn how your comment data is processed.

%d bloggers like this: