* wrapfs sources @ 2012-04-04 4:32 V.Ravikumar 2012-04-05 10:59 ` Javier Martinez Canillas 0 siblings, 1 reply; 4+ messages in thread From: V.Ravikumar @ 2012-04-04 4:32 UTC (permalink / raw) To: kernelnewbies Hi all, Could some body let me know wrapfs sources which is compatible to Linux 2.6.18 kernel sources. I tried to get sources using google search , but all are compatible with latest kernel sources. Thanks & Regards, Ravi -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20120404/24d364b2/attachment.html ^ permalink raw reply [flat|nested] 4+ messages in thread
* wrapfs sources 2012-04-04 4:32 wrapfs sources V.Ravikumar @ 2012-04-05 10:59 ` Javier Martinez Canillas 0 siblings, 0 replies; 4+ messages in thread From: Javier Martinez Canillas @ 2012-04-05 10:59 UTC (permalink / raw) To: kernelnewbies On Wed, Apr 4, 2012 at 6:32 AM, V.Ravikumar <ravikumar.vallabhu@gmail.com> wrote: > Hi all, > > Could some body let me know wrapfs sources which is compatible to Linux > 2.6.18 kernel sources. > > I tried to get sources using google search , but all are compatible with > latest kernel sources. > > Thanks & Regards, > Ravi > Hi Ravi, If I were you I would clone from git://git.fsl.cs.sunysb.edu/wrapfs-latest.git and checkout from a commitid that is near to a release data of your kernel, that will minimize the merge problems. This one seems a good candidate: http://git.fsl.cs.sunysb.edu/?p=wrapfs-latest.git;a=commit;h=e478bec0ba0a83a48a0f6982934b6de079e7e6b3 But why are you force to use such and old kernel? Seriously, 2.6.18 is at least 5 years old. If you are forced to use this kernel by a vendor, then ask your vendor for support. Sorry, the community can't help you when using forked kernels. Hope it helps, -- Javier Mart?nez Canillas (+34) 682 39 81 69 Barcelona, Spain ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <CA+CftcGVR+Cq+C7iOf7HtTS-oDZ6x1SBkPLc-kVN0Mox-Fgtxw@mail.gmail.com>]
[parent not found: <AA4DF347-38D4-4C66-A5AD-8ED0892BB242@cs.stonybrook.edu>]
* wrapfs sources [not found] ` <AA4DF347-38D4-4C66-A5AD-8ED0892BB242@cs.stonybrook.edu> @ 2012-04-06 8:24 ` V.Ravikumar 2012-04-10 5:50 ` Jim Cromie 0 siblings, 1 reply; 4+ messages in thread From: V.Ravikumar @ 2012-04-06 8:24 UTC (permalink / raw) To: kernelnewbies Hi, I ported latest wrapfs code compile against 2.6.18 kernel. Now I'm able to build module ,but there my be bugs. insmod of the file system module that was built was successful. But when I do a mount (mount -t wrapfs /home/abc/lower /mnt/wrapfs) I'm getting unknown symbol file system wrapfs error. Here is file_system_type structure definition. static struct file_system_type wrapfs_fs_type = { .owner = THIS_MODULE, .name = "wrapfs", .get_sb = wrapfs_get_sb, .kill_sb = generic_shutdown_super, }; Also attached complete ported wrapfs sources which are compatible with 2.6.18 kernel. I'm immature in kernel development so I'm requesting to help in resolving unknown file system error. Thanks, Ravi. On Wed, Apr 4, 2012 at 8:35 PM, Erez Zadok <ezk@cs.stonybrook.edu> wrote: > Sorry, I don't have wrapfs sources going so far as 2.6.18. I don't have > enough manpower to support all the kernels people want, so I maintain only > the last few stable kernels. If someone were to backport wrapfs to an > older kernel, I'll be happy to test and maintain it going forward. > > Cheers, > Erez. > > On Apr 4, 2012, at 12:28 AM, V.Ravikumar wrote: > > > Hi ezk, > > > > I'm going through wrapfs documentation and feel that stackable file > system concept is the best suit for my need.(File/directory change > notification along with UID who modified it). > > > > I got sources but those are not in congruent to linux 2.6.18 sources. > > > > I sources that I got are compatible with latest kernel sources. > > > > So I'm requesting you to let me know compatible sources for Linux 2.6.18 > kernel > > > > Thanks & Regards, > > Ravi > > -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20120406/d4945cc0/attachment-0001.html -------------- next part -------------- A non-text attachment was scrubbed... Name: wrapfs.tgz Type: application/x-gzip Size: 12753 bytes Desc: not available Url : http://lists.kernelnewbies.org/pipermail/kernelnewbies/attachments/20120406/d4945cc0/attachment-0001.tgz ^ permalink raw reply [flat|nested] 4+ messages in thread
* wrapfs sources 2012-04-06 8:24 ` V.Ravikumar @ 2012-04-10 5:50 ` Jim Cromie 0 siblings, 0 replies; 4+ messages in thread From: Jim Cromie @ 2012-04-10 5:50 UTC (permalink / raw) To: kernelnewbies On Fri, Apr 6, 2012 at 2:24 AM, V.Ravikumar <ravikumar.vallabhu@gmail.com> wrote: > ?Hi, > I ported latest wrapfs code compile against 2.6.18 kernel. > Now I'm able to build module ,but there my be bugs. > insmod of the file system module that was built was successful. insmod ? that doesnt take care of module dependencies. try modprobe, maybe preceded by depmod. ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2012-04-10 5:50 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-04 4:32 wrapfs sources V.Ravikumar
2012-04-05 10:59 ` Javier Martinez Canillas
[not found] <CA+CftcGVR+Cq+C7iOf7HtTS-oDZ6x1SBkPLc-kVN0Mox-Fgtxw@mail.gmail.com>
[not found] ` <AA4DF347-38D4-4C66-A5AD-8ED0892BB242@cs.stonybrook.edu>
2012-04-06 8:24 ` V.Ravikumar
2012-04-10 5:50 ` Jim Cromie
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).