Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-11-02 Thread Sui Jingfeng
Hi, On 2024/10/1 20:17, Lucas Stach wrote: Hi Xiaolei, Am Dienstag, dem 03.09.2024 um 10:08 +0800 schrieb Xiaolei Wang: Remove __GFP_HIGHMEM when requesting a page from DMA32 zone, and since all vivante GPUs in the system will share the same DMA constraints, move the check of whether to get a

Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-11-02 Thread Sui Jingfeng
Hi, I forget to mention that the commit title should be "on addressing limited devices", the underscore between the last two words is not necessary. It's a typo when reply email. On 2024/10/1 20:32, xiaolei wang wrote: On 10/1/24 20:17, Lucas Stach wrote: CAUTION: This email comes from a

Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-10-01 Thread Lucas Stach
Hi Xiaolei, Am Dienstag, dem 03.09.2024 um 10:08 +0800 schrieb Xiaolei Wang: > Remove __GFP_HIGHMEM when requesting a page from DMA32 zone, > and since all vivante GPUs in the system will share the same > DMA constraints, move the check of whether to get a page from > DMA32 to etnaviv_bind(). > >

Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-10-01 Thread xiaolei wang
On 10/1/24 20:17, Lucas Stach wrote: CAUTION: This email comes from a non Wind River email account! Do not click links or open attachments unless you recognize the sender and know the content is safe. Hi Xiaolei, Am Dienstag, dem 03.09.2024 um 10:08 +0800 schrieb Xiaolei Wang: Remove __GFP_H

Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-09-11 Thread Christian Gmeiner
Am Di., 3. Sept. 2024 um 04:09 Uhr schrieb Xiaolei Wang : > > Remove __GFP_HIGHMEM when requesting a page from DMA32 zone, > and since all vivante GPUs in the system will share the same > DMA constraints, move the check of whether to get a page from > DMA32 to etnaviv_bind(). > > Fixes: b72af445cd3

Re: [PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-09-11 Thread Sui Jingfeng
Humble ping ? On 9/3/24 10:08, Xiaolei Wang wrote: Remove __GFP_HIGHMEM when requesting a page from DMA32 zone, and since all vivante GPUs in the system will share the same DMA constraints, move the check of whether to get a page from DMA32 to etnaviv_bind(). Fixes: b72af445cd38 ("drm/etnaviv:

[PATCH v3] drm/etnaviv: Request pages from DMA32 zone on addressing_limited

2024-09-02 Thread Xiaolei Wang
Remove __GFP_HIGHMEM when requesting a page from DMA32 zone, and since all vivante GPUs in the system will share the same DMA constraints, move the check of whether to get a page from DMA32 to etnaviv_bind(). Fixes: b72af445cd38 ("drm/etnaviv: request pages from DMA32 zone when needed") Suggested-