diff options
| author | Jia-Ju Bai <[email protected]> | 2020-08-02 21:29:49 +0800 |
|---|---|---|
| committer | Kalle Valo <[email protected]> | 2020-09-01 12:33:48 +0300 |
| commit | 478762855b5ae9f68fa6ead1edf7abada70fcd5f (patch) | |
| tree | cb20ae2a895e4f9c728450388ebf688977a26d6f /tools/perf/scripts/python/export-to-sqlite.py | |
| parent | e9cf68ff4eff35c1724f0f43309fa1d919292592 (diff) | |
p54: avoid accessing the data mapped to streaming DMA
In p54p_tx(), skb->data is mapped to streaming DMA on line 337:
mapping = pci_map_single(..., skb->data, ...);
Then skb->data is accessed on line 349:
desc->device_addr = ((struct p54_hdr *)skb->data)->req_id;
This access may cause data inconsistency between CPU cache and hardware.
To fix this problem, ((struct p54_hdr *)skb->data)->req_id is stored in
a local variable before DMA mapping, and then the driver accesses this
local variable instead of skb->data.
Cc: <[email protected]>
Signed-off-by: Jia-Ju Bai <[email protected]>
Acked-by: Christian Lamparter <[email protected]>
Signed-off-by: Kalle Valo <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Diffstat (limited to 'tools/perf/scripts/python/export-to-sqlite.py')
0 files changed, 0 insertions, 0 deletions