Hi,

Try to control the NIC output, instead of dropping the packet, I would
like to do context switch on current sending process.  tsleep() seems not
to be a right mechanism for this purpose because it will panic in the kernel
wherever between the network and link layers the tsleep() is put -- e.g.

ether_output()
{
        ...
        if (IF_QFULL)   {
                tsleep(m, PSOCK, "pause NIC", 1);
                if (IF_QFULL)
                        DROP_Q;
        }
        ...
}

Is there other context switch mechanism for this purpose? or
is it impossible to do the context switch at network and link layers?

        -Jin


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message

Reply via email to