Re: [patch] TCP/IP delacks disabled with MPI

kuznet@ms2.inr.ac.ru
Wed, 2 Jun 1999 16:04:50 +0400 (MSK DST)


Hello!

> Don will make the ethernet drivers set IFF_RUNNING when there is a link
> and drop that when there isnt

dev->flags cannot be changed by interrupts,
it contains only static and administratively set flags.
Othewise we will have to spinlock or atomize all the accesses
to them.

Link state flag must be separate. dev->link_state or a bit
in atomic flag bitset. It may be translated to IFF_RUNNING
by ioctl frontend though.

BTW teql is insensitive to link state, it does NUD.

Alexey

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.rutgers.edu
Please read the FAQ at http://www.tux.org/lkml/