[Jeff added to cc list - it's a network driver question]

On Thu, 7 Apr 2005, Paul E. McKenney wrote:

> > >
> > >   /* Give a racing hard_start_xmit a few cycles to complete. */
> > > - synchronize_kernel();
I haven't read the whole driver, but what about
        spin_unlock_wait(&dev->xmit_lock);
?
hard_start_xmit is called under dev->xmit_lock, waiting until the lock is
free would guarantee that all running instances of hard_start_xmit have
completed.

Jeff: Is that still correct?

--
        Manfred

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to