diff options
author | Alexey Brodkin <alexey.brodkin@gmail.com> | 2017-07-18 17:31:24 +0300 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2017-08-30 19:21:25 +0300 |
commit | 9f82e90a6668e522c7fd0e0322c52d86f29b624d (patch) | |
tree | ee99b67f71c167def288bb6cc3c8f3cf4fbd44de /drivers/hid | |
parent | 28923f6b74060b183207a373ddae4ce4948cabea (diff) | |
download | linux-9f82e90a6668e522c7fd0e0322c52d86f29b624d.tar.xz |
ARC: Hardcode ARCH_DMA_MINALIGN to max line length we may have
Current implementation relies on L1 line length which might easily
be smaller than L2 line (which is usually the case BTW).
Imagine this typical case: L2 line is 128 bytes while L1 line is
64-bytes. Now we want to allocate small buffer and later use it for DMA
(consider IOC is not available).
kmalloc() allocates small KMALLOC_MIN_SIZE-sized, KMALLOC_MIN_SIZE-aligned
That way if buffer happens to be aligned to L1 line and not L2 line we'll be
flushing and invalidating extra portions of data from L2 which will cause
cache coherency issues.
And since KMALLOC_MIN_SIZE is bound to ARCH_DMA_MINALIGN the fix could
be simple - set ARCH_DMA_MINALIGN to the largest cache line we may ever
get. As of today neither L1 of ARC700 and ARC HS38 nor SLC might not be
longer than 128 bytes.
Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'drivers/hid')
0 files changed, 0 insertions, 0 deletions