cache: Misaligned operation at range

2020-10-08 Thread Shlomi Vaknin
ulk IN ep1in-bulk STATUS ep3in-int MAC f8:dc:7a:00:00:02 HOST MAC f8:dc:7a:00:00:01 RNDIS ready high speed config #2: 2 mA, Ethernet Gadget, using RNDIS USB RNDIS network up! CACHE: Misaligned operation at range [ddcfbcc4, ddcfbd04] Using usb_ether device CACHE: Misaligned operation at range [dbc3c

[U-Boot] am335x: EFI: tftp: CACHE: Misaligned operation at range [9ce7e470, 9ce7e4b0]

2019-01-18 Thread Matwey V. Kornilov
moment and the console is constantly flooding be the following messages with very high rate (dozens of lines per second): CACHE: Misaligned operation at range [9ce7e470, 9ce7e4b0] At the same time I see in tcpdump that there is ongoing exchange between tftp server and the board. After some time

Re: [U-Boot] [U-Boot, v2, 1/2] fs/fat: Fix 'CACHE: Misaligned operation at range' warnings

2017-10-09 Thread Tom Rini
On Sun, Oct 01, 2017 at 02:25:21AM +0300, Tuomas Tynkkynen wrote: > The 'block' field of fat_itr needs to be properly aligned for DMA and > while it does have '__aligned(ARCH_DMA_MINALIGN)', the fat_itr structure > itself needs to be properly aligned as well. > > While at it use malloc_cache_alig

Re: [U-Boot] [PATCH v2 1/2] fs/fat: Fix 'CACHE: Misaligned operation at range' warnings

2017-09-30 Thread Tom Rini
On Sun, Oct 01, 2017 at 02:25:21AM +0300, Tuomas Tynkkynen wrote: > The 'block' field of fat_itr needs to be properly aligned for DMA and > while it does have '__aligned(ARCH_DMA_MINALIGN)', the fat_itr structure > itself needs to be properly aligned as well. > > While at it use malloc_cache_alig

[U-Boot] [PATCH v2 1/2] fs/fat: Fix 'CACHE: Misaligned operation at range' warnings

2017-09-30 Thread Tuomas Tynkkynen
The 'block' field of fat_itr needs to be properly aligned for DMA and while it does have '__aligned(ARCH_DMA_MINALIGN)', the fat_itr structure itself needs to be properly aligned as well. While at it use malloc_cache_aligned() for the other aligned allocations in the file as well. Fixes: 2460098c

Re: [U-Boot] [PATCH] fs/fat: Fix 'CACHE: Misaligned operation at range' warnings

2017-09-26 Thread Tom Rini
On Tue, Sep 26, 2017 at 03:21:25PM +0300, Tuomas Tynkkynen wrote: > The 'block' field of fat_itr needs to be properly aligned for DMA and > while it does have '__aligned(ARCH_DMA_MINALIGN)', the fat_itr structure > itself needs to be properly aligned as well. > > While at it use malloc_cache_alig

[U-Boot] [PATCH] fs/fat: Fix 'CACHE: Misaligned operation at range' warnings

2017-09-26 Thread Tuomas Tynkkynen
The 'block' field of fat_itr needs to be properly aligned for DMA and while it does have '__aligned(ARCH_DMA_MINALIGN)', the fat_itr structure itself needs to be properly aligned as well. While at it use malloc_cache_aligned() for other aligned allocations in the file. Fixes: 2460098cffacd1 ("fs/