Re: vfb module

2007-04-05 Thread trimarchi
Hi, I changed a little bit the vfb module to be used as a frame buffer in memory. I would like to use the mmap over the virtual framebuffer. I added a few line: I allocated the buffer using videomemory=(void *)__get_free_pages(GFP_KERNEL, get_order(PAGE_ALIGN(videomemorysize))); and fixed the

Re: vfb module

2007-04-05 Thread Antonino A. Daplas
On Thu, 2007-04-05 at 10:30 +0200, Michael Trimarchi wrote: > Hi, > I changed a little bit the vfb module to be used as a frame buffer in > memory. I would like to use the mmap over the virtual framebuffer. I > added a few line: > I allocated the buffer using >

vfb module

2007-04-05 Thread Michael Trimarchi
Hi, I changed a little bit the vfb module to be used as a frame buffer in memory. I would like to use the mmap over the virtual framebuffer. I added a few line: I allocated the buffer using videomemory=(void *)__get_free_pages(GFP_KERNEL, get_order(PAGE_ALIGN(videomemorysize))); and fixed