Re: [PATCH v7 09/10] um: Add dummy implementation for IO memcpy/memset

2024-10-07 Thread Johannes Berg
On Mon, 2024-10-07 at 09:49 +0200, Julian Vetter wrote: > > > > The um arch is the only architecture that sets the config 'NO_IOMEM', (you did note this, for the comment below) > No, I think you're understanding the series correctly. It doesn't work. > I will revert this. OK. > > You're addin

Re: [PATCH v7 09/10] um: Add dummy implementation for IO memcpy/memset

2024-10-07 Thread Julian Vetter
On 10/1/24 14:53, Johannes Berg wrote: On Mon, 2024-09-30 at 15:23 +0200, Julian Vetter wrote: The um arch is the only architecture that sets the config 'NO_IOMEM', yet drivers that use IO memory can be selected. In order to make these drivers happy we add a dummy implementation for memcpy_{f

Re: [PATCH v7 09/10] um: Add dummy implementation for IO memcpy/memset

2024-10-01 Thread Johannes Berg
On Mon, 2024-09-30 at 15:23 +0200, Julian Vetter wrote: > The um arch is the only architecture that sets the config 'NO_IOMEM', > yet drivers that use IO memory can be selected. In order to make these > drivers happy we add a dummy implementation for memcpy_{from,to}io and > memset_io functions. M

[PATCH v7 09/10] um: Add dummy implementation for IO memcpy/memset

2024-09-30 Thread Julian Vetter
The um arch is the only architecture that sets the config 'NO_IOMEM', yet drivers that use IO memory can be selected. In order to make these drivers happy we add a dummy implementation for memcpy_{from,to}io and memset_io functions. Reviewed-by: Yann Sionneau Signed-off-by: Julian Vetter --- Cha