Message ID | 0d489a2c917d6e8528fad099023eac3d5a516787.1539092111.git.christophe.leroy@c-s.fr (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ban the use of _PAGE_XXX flags outside platform specific code | expand |
On Tue, 2018-10-09 at 13:51 +0000, Christophe Leroy wrote: > _PAGE_WRITETHRU is a target specific flag. Prefer generic functions. > > Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> > Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> Hi Geert, All patches that have been applied to this driver since 2005 are API refactoring patches. I haven't found any patches in the history of this driver that seem to have been submitted by a user of this driver. Do you perhaps know whether anyone is using this driver? Thanks, Bart.
Hi Bart, CC debian-68k, linux-m68k On Tue, Oct 9, 2018 at 5:00 PM Bart Van Assche <bvanassche@acm.org> wrote: > On Tue, 2018-10-09 at 13:51 +0000, Christophe Leroy wrote: > > _PAGE_WRITETHRU is a target specific flag. Prefer generic functions. > > > > Acked-by: Geert Uytterhoeven <geert@linux-m68k.org> > > Signed-off-by: Christophe Leroy <christophe.leroy@c-s.fr> > > Hi Geert, > > All patches that have been applied to this driver since 2005 are API refactoring > patches. I haven't found any patches in the history of this driver that seem to > have been submitted by a user of this driver. Do you perhaps know whether anyone > is using this driver? The z2ram is a very simple driver, used to configure (slower) Zorro II RAM as a swap device. So I'm not so surprised no one submitted functional patches. I believe it's still being used. Probably it could be modified to use mtdram. Gr{oetje,eeting}s, Geert
diff --git a/drivers/block/z2ram.c b/drivers/block/z2ram.c index d0c5bc4e0703..cfbd70520eeb 100644 --- a/drivers/block/z2ram.c +++ b/drivers/block/z2ram.c @@ -190,8 +190,7 @@ static int z2_open(struct block_device *bdev, fmode_t mode) vfree(vmalloc (size)); } - vaddr = (unsigned long) __ioremap (paddr, size, - _PAGE_WRITETHRU); + vaddr = (unsigned long)ioremap_wt(paddr, size); #else vaddr = (unsigned long)z_remap_nocache_nonser(paddr, size);