Re: [LAD] [PATCH] kfusd against 2.6.29 kernel

2009-05-19 Thread James Warden
"Cannot mmap anonymous pages. Be sure to allocate your shared buffer with MAP_SHARED | MAP_ANONYMOUS"); + return VM_FAULT_SIGBUS; + } + + if(result > 0) + { + get_page(page); + vmf->page = page; + if (type) + *type = VM_FAULT_MINOR; + } +out: + return 0; } +#endif + + /* ----- PATC

Re: [LAD] [PATCH] kfusd against 2.6.29 kernel

2009-05-15 Thread Lennart Poettering
On Fri, 15.05.09 05:35, James Warden (warj...@yahoo.com) wrote: > cool :) > Is it already in the kernel code baseline ? No. It is on its way, as I said. Lennart -- Lennart PoetteringRed Hat, Inc. lennart [at] poettering [dot] net http://0pointer.net/lennart/ G

Re: [LAD] [PATCH] kfusd against 2.6.29 kernel

2009-05-15 Thread James Warden
cool :) Is it already in the kernel code baseline ? J. --- On Fri, 5/15/09, Lennart Poettering wrote: > From: Lennart Poettering > Subject: Re: [LAD] [PATCH] kfusd against 2.6.29 kernel > To: linux-audio-dev@lists.linuxaudio.org > Date: Friday, May 15, 2009, 8:29 AM > On Fri,

Re: [LAD] [PATCH] kfusd against 2.6.29 kernel

2009-05-15 Thread Lennart Poettering
On Fri, 15.05.09 05:21, James Warden (warj...@yahoo.com) wrote: > Hi, > > I created a patch for kfusd (fusd-kor kernel module) because I > needed oss2jack to work again against kernel 2.6.29.x > > I need to clean up the patch as it bulldozes the old kernel API. If > anyone is interested, I can p

[LAD] [PATCH] kfusd against 2.6.29 kernel

2009-05-15 Thread James Warden
Hi, I created a patch for kfusd (fusd-kor kernel module) because I needed oss2jack to work again against kernel 2.6.29.x I need to clean up the patch as it bulldozes the old kernel API. If anyone is interested, I can post it here when I clean it up (some time tonight or tomorrow). I already c