2004-06-02 08:33:11

by Ihar 'Philips' Filipau

[permalink] [raw]
Subject: e1000 question


[ If this is wrong ML, will appreciate pointer to correct one. ]
[ CC: me, please - I'm not sub'd. ]
[ Intel's driver as in 2.6.5 -
http://lxr.linux.no/source/drivers/net/e1000/e1000_main.c?v=2.6.5 ]

I'm looking into e1000 driver in irq handling and what I see,
puzzles me.

Functions e1000_clean_{t,r}x_irq are very similar: both of them are
checking descriptor flag updated by nic.
Host CPU, obviously, to perform this check, will cache descriptor.
If, say e1000_clean_rx_irq() will be called twice in short time
range, I expect that it can miss change of the flag, since old flag may
still sit in host CPU cache.

Am I missing something here?

--
Johnson's law:
Systems resemble the organizations that create them.
-- ___ ___
Ihar 'Philips' Filipau \ / Sr. Software Developer
Tel: +49 681 959 16 0 \ / GIGA STREAM
Fax: +49 681 959 16 100 \/ Konrad Zuse Strasse 7
Mobile: +49 173 39 462 49 /\ 66115 Saarbruecken
email: [email protected] / \ Germany
www: http://www.giga-stream.de ___/ \___ Switching for success


Attachments:
smime.p7s (3.36 kB)
S/MIME Cryptographic Signature

2004-06-02 10:28:20

by Mitchell Blank Jr

[permalink] [raw]
Subject: Re: e1000 question

Ihar 'Philips' Filipau wrote:
> Functions e1000_clean_{t,r}x_irq are very similar: both of them are
> checking descriptor flag updated by nic.
> Host CPU, obviously, to perform this check, will cache descriptor.
> If, say e1000_clean_rx_irq() will be called twice in short time
> range, I expect that it can miss change of the flag, since old flag may
> still sit in host CPU cache.

Please see Documentation/DMA-mapping.txt; especially the part starting
at "There are two types of DMA mappings..." Ring buffers are allocated
as "consistent" DMA memory.

For most architectures this will mean that the cache hardware snoops the
PCI bus and automatically invalidates cache lines as they are written to.
For architectures that can't do that then Linux will mark those memory
regions uncacheable.

-Mitch

2004-06-02 10:44:14

by Ihar 'Philips' Filipau

[permalink] [raw]
Subject: Re: e1000 question


Thanks, Mitch!
That explains everything.

Went reading pci_alloc_consistent()'s RTFM.
That is exactly what I was missing in couple of my drivers.

Mitchell Blank Jr wrote:
> Ihar 'Philips' Filipau wrote:
>
>> Functions e1000_clean_{t,r}x_irq are very similar: both of them are
>>checking descriptor flag updated by nic.
>> Host CPU, obviously, to perform this check, will cache descriptor.
>> If, say e1000_clean_rx_irq() will be called twice in short time
>>range, I expect that it can miss change of the flag, since old flag may
>>still sit in host CPU cache.
>
>
> Please see Documentation/DMA-mapping.txt; especially the part starting
> at "There are two types of DMA mappings..." Ring buffers are allocated
> as "consistent" DMA memory.
>
> For most architectures this will mean that the cache hardware snoops the
> PCI bus and automatically invalidates cache lines as they are written to.
> For architectures that can't do that then Linux will mark those memory
> regions uncacheable.
>

--
Johnson's law:
Systems resemble the organizations that create them.
-- ___ ___
Ihar 'Philips' Filipau \ / Sr. Software Developer
Tel: +49 681 959 16 0 \ / GIGA STREAM
Fax: +49 681 959 16 100 \/ Konrad Zuse Strasse 7
Mobile: +49 173 39 462 49 /\ 66115 Saarbruecken
email: [email protected] / \ Germany
www: http://www.giga-stream.de ___/ \___ Switching for success


Attachments:
smime.p7s (3.36 kB)
S/MIME Cryptographic Signature