* Re: [RFC 0/9] osdfs [not found] <4909C41A.7000406@panasas.com> @ 2008-11-03 21:07 ` Jeff Garzik 2008-11-04 8:04 ` [osd-dev] " Benny Halevy 0 siblings, 1 reply; 4+ messages in thread From: Jeff Garzik @ 2008-11-03 21:07 UTC (permalink / raw) To: Boaz Harrosh; +Cc: Avishay Traeger, linux-scsi, linux-fsdevel, open-osd, LKML Boaz Harrosh wrote: > Please review an OSD based file system. > > Given that our OSD initiator library is accepted into Kernel, we would > like to also submit an osdfs. This is the first iteration of this file system. > > The next stage is to make it exportable by the pNFS-over-objects Server. > osdfs is one of the building blocks for a full, end-to-end open source > reference implementation of a Server/Client pNFS-over-objects we > want to have available in Linux. Other parts are the Generic pNFS > client project with the objects-layout-driver, and the generic pNFS > server plus osdfs once it is adapted to be exportable. > (See all about pNFS in Linux at: > http://wiki.linux-nfs.org/wiki/index.php/PNFS_prototype_design) > > osdfs was originally developed by Avishay Traeger <avishay@gmail.com> > from IBM. A very old version of it is hosted on sourceforge as the osdfs > project. It was originally developed for the 2.6.10 Kernel over the old > IBM's osd-initiator Linux driver. > > Since then it was picked by us, open-osd, and was both forward ported to > current Kernel, as well as converted to run over our osd Kernel Library. > The conversion effort, if anyone is interested, is also available as a > patchset here: > git-clone git://git-open-osd.org/open-osd.git osdfs-devel > or on the web at: > http://git.open-osd.org/gitweb.cgi?p=open-osd.git;a=shortlog;h=refs/heads/osdfs-devel > > The Original code is based on ext2 code from the Kernel at the time. > Further reading is available at the last patch in the osdfs.txt file. > > I have mechanically divided the code in parts, each introducing a > group of vfs function vectors, all tied at the end into a full filesystem. > Each patch can be compiled but it will only run at the very end. > This was done for the hope of easier reviewing. > > Here is the list of patches > [RFC 1/9] osdfs: osd Swiss army knife > [RFC 2/9] osdfs: file and file_inode operations > [RFC 3/9] osdfs: symlink_inode and fast_symlink_inode operations > [RFC 4/9] osdfs: address_space_operations > [RFC 5/9] osdfs: dir_inode and directory operations > [RFC 6/9] osdfs: super_operations and file_system_type > [RFC 7/9] osdfs: mkosdfs > [RFC 8/9] osdfs: Documentation Pretty cool stuff. I've been wondering when we would start seeing OSD filesystems make their appearance. Random, unordered comments: * This is important stuff. Should have been posted to LKML. Please CC LKML in the future. * As discussed at the filesystem summit, OSD use implies a need for an MD-like layer for OSD objects. Has anyone even started the design work for this? * I tend to think there is room for more than one OSD filesystem in the Linux kernel. Assuming all OSDs will use the same Linux filesystem driver will lead to bloat, and you potentially "code yourself into a corner." Let's not rule out multiple filesystems. As such, "osdfs" seems like too-generic a name. How about boazfs? :) * Get this into the kernel ASAP! OSD stuff languishes outside the kernel for _far_ too long. OSD is a key storage technology that needs to be developed in the full light of the Linux community, not off in a dark corner somewhere, where few see progress or discussions. Object-based storage, and its SCSI incarnation OSD, is a MAJOR revision of the block storage API, moving away from LBA-addressed linear APIs. That's a big deal, and should be discussed on LKML, IMO... Jeff ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [osd-dev] [RFC 0/9] osdfs 2008-11-03 21:07 ` [RFC 0/9] osdfs Jeff Garzik @ 2008-11-04 8:04 ` Benny Halevy 2008-11-04 10:11 ` Boaz Harrosh 0 siblings, 1 reply; 4+ messages in thread From: Benny Halevy @ 2008-11-04 8:04 UTC (permalink / raw) Cc: open-osd development, Boaz Harrosh, linux-fsdevel, Avishay Traeger, linux-scsi, LKML, Jeff Garzik On Nov. 03, 2008, 23:07 +0200, Jeff Garzik <jeff@garzik.org> wrote: > Boaz Harrosh wrote: >> Please review an OSD based file system. >> >> Given that our OSD initiator library is accepted into Kernel, we would >> like to also submit an osdfs. This is the first iteration of this file system. >> >> The next stage is to make it exportable by the pNFS-over-objects Server. >> osdfs is one of the building blocks for a full, end-to-end open source >> reference implementation of a Server/Client pNFS-over-objects we >> want to have available in Linux. Other parts are the Generic pNFS >> client project with the objects-layout-driver, and the generic pNFS >> server plus osdfs once it is adapted to be exportable. >> (See all about pNFS in Linux at: >> http://wiki.linux-nfs.org/wiki/index.php/PNFS_prototype_design) >> >> osdfs was originally developed by Avishay Traeger <avishay@gmail.com> >> from IBM. A very old version of it is hosted on sourceforge as the osdfs >> project. It was originally developed for the 2.6.10 Kernel over the old >> IBM's osd-initiator Linux driver. >> >> Since then it was picked by us, open-osd, and was both forward ported to >> current Kernel, as well as converted to run over our osd Kernel Library. >> The conversion effort, if anyone is interested, is also available as a >> patchset here: >> git-clone git://git-open-osd.org/open-osd.git osdfs-devel >> or on the web at: >> http://git.open-osd.org/gitweb.cgi?p=open-osd.git;a=shortlog;h=refs/heads/osdfs-devel >> >> The Original code is based on ext2 code from the Kernel at the time. >> Further reading is available at the last patch in the osdfs.txt file. >> >> I have mechanically divided the code in parts, each introducing a >> group of vfs function vectors, all tied at the end into a full filesystem. >> Each patch can be compiled but it will only run at the very end. >> This was done for the hope of easier reviewing. >> >> Here is the list of patches >> [RFC 1/9] osdfs: osd Swiss army knife >> [RFC 2/9] osdfs: file and file_inode operations >> [RFC 3/9] osdfs: symlink_inode and fast_symlink_inode operations >> [RFC 4/9] osdfs: address_space_operations >> [RFC 5/9] osdfs: dir_inode and directory operations >> [RFC 6/9] osdfs: super_operations and file_system_type >> [RFC 7/9] osdfs: mkosdfs >> [RFC 8/9] osdfs: Documentation > > Pretty cool stuff. > > I've been wondering when we would start seeing OSD filesystems make > their appearance. > > Random, unordered comments: > > * This is important stuff. Should have been posted to LKML. Please CC > LKML in the future. > > * As discussed at the filesystem summit, OSD use implies a need for an > MD-like layer for OSD objects. Has anyone even started the design work > for this? Yes. I have. I'm coding a prototype to be used by both this file system and by the pnfs objects layout driver. Initially it will do striping and mirroring, and RAID-5 parity as a stretched goal for the initial release. > > * I tend to think there is room for more than one OSD filesystem in the > Linux kernel. Assuming all OSDs will use the same Linux filesystem > driver will lead to bloat, and you potentially "code yourself into a > corner." Let's not rule out multiple filesystems. > > As such, "osdfs" seems like too-generic a name. How about boazfs? :) I agree. osdfs is the name given by Avishay and IBM and we just adopted it. I think that obfs (Object-based File System) would better represent what it is (although it's still generic compared to boazfs :-) > > * Get this into the kernel ASAP! OSD stuff languishes outside the > kernel for _far_ too long. OSD is a key storage technology that needs > to be developed in the full light of the Linux community, not off in a > dark corner somewhere, where few see progress or discussions. I completely agree. We've missed the merge window for 2.6.28 but if we can get it into 2.6.29 that would be great! > > Object-based storage, and its SCSI incarnation OSD, is a MAJOR revision > of the block storage API, moving away from LBA-addressed linear APIs. > That's a big deal, and should be discussed on LKML, IMO... Absolutely. Thanks for your comments! Benny > > Jeff > ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [osd-dev] [RFC 0/9] osdfs 2008-11-04 8:04 ` [osd-dev] " Benny Halevy @ 2008-11-04 10:11 ` Boaz Harrosh 2008-11-04 10:28 ` Avishay Traeger 0 siblings, 1 reply; 4+ messages in thread From: Boaz Harrosh @ 2008-11-04 10:11 UTC (permalink / raw) To: Benny Halevy, Jeff Garzik Cc: open-osd development, linux-fsdevel, Avishay Traeger, linux-scsi, LKML, Sami.Iren Benny Halevy wrote: > On Nov. 03, 2008, 23:07 +0200, Jeff Garzik <jeff@garzik.org> wrote: >> Boaz Harrosh wrote: >>> Please review an OSD based file system. >>> >>> Given that our OSD initiator library is accepted into Kernel, we would >>> like to also submit an osdfs. This is the first iteration of this file system. >>> >>> The next stage is to make it exportable by the pNFS-over-objects Server. >>> osdfs is one of the building blocks for a full, end-to-end open source >>> reference implementation of a Server/Client pNFS-over-objects we >>> want to have available in Linux. Other parts are the Generic pNFS >>> client project with the objects-layout-driver, and the generic pNFS >>> server plus osdfs once it is adapted to be exportable. >>> (See all about pNFS in Linux at: >>> http://wiki.linux-nfs.org/wiki/index.php/PNFS_prototype_design) >>> >>> osdfs was originally developed by Avishay Traeger <avishay@gmail.com> >>> from IBM. A very old version of it is hosted on sourceforge as the osdfs >>> project. It was originally developed for the 2.6.10 Kernel over the old >>> IBM's osd-initiator Linux driver. >>> >>> Since then it was picked by us, open-osd, and was both forward ported to >>> current Kernel, as well as converted to run over our osd Kernel Library. >>> The conversion effort, if anyone is interested, is also available as a >>> patchset here: >>> git-clone git://git-open-osd.org/open-osd.git osdfs-devel >>> or on the web at: >>> http://git.open-osd.org/gitweb.cgi?p=open-osd.git;a=shortlog;h=refs/heads/osdfs-devel >>> >>> The Original code is based on ext2 code from the Kernel at the time. >>> Further reading is available at the last patch in the osdfs.txt file. >>> >>> I have mechanically divided the code in parts, each introducing a >>> group of vfs function vectors, all tied at the end into a full filesystem. >>> Each patch can be compiled but it will only run at the very end. >>> This was done for the hope of easier reviewing. >>> >>> Here is the list of patches >>> [RFC 1/9] osdfs: osd Swiss army knife >>> [RFC 2/9] osdfs: file and file_inode operations >>> [RFC 3/9] osdfs: symlink_inode and fast_symlink_inode operations >>> [RFC 4/9] osdfs: address_space_operations >>> [RFC 5/9] osdfs: dir_inode and directory operations >>> [RFC 6/9] osdfs: super_operations and file_system_type >>> [RFC 7/9] osdfs: mkosdfs >>> [RFC 8/9] osdfs: Documentation >> Pretty cool stuff. >> >> I've been wondering when we would start seeing OSD filesystems make >> their appearance. >> >> Random, unordered comments: >> >> * This is important stuff. Should have been posted to LKML. Please CC >> LKML in the future. >> >> * As discussed at the filesystem summit, OSD use implies a need for an >> MD-like layer for OSD objects. Has anyone even started the design work >> for this? > > Yes. I have. > I'm coding a prototype to be used by both this file system and by > the pnfs objects layout driver. > Initially it will do striping and mirroring, and RAID-5 parity as a > stretched goal for the initial release. > Thanks Benny, it would be nice to connect all these thing together. >> * I tend to think there is room for more than one OSD filesystem in the >> Linux kernel. Assuming all OSDs will use the same Linux filesystem >> driver will lead to bloat, and you potentially "code yourself into a >> corner." Let's not rule out multiple filesystems. >> >> As such, "osdfs" seems like too-generic a name. How about boazfs? :) > > I agree. osdfs is the name given by Avishay and IBM and we just adopted it. > I think that obfs (Object-based File System) would better represent > what it is (although it's still generic compared to boazfs :-) > If at all then it's avishayfs, but unless I write this filesystem from scratch I don't think I can do anything about the name. The code is copyrighted to Avishay Traeger, and that is the name he chose. Also he has a sourceforge.net project of that name for a long time. Avishay would you be willing to change the name? See above, people think it is too generic a name. Like if someone would do a scsifs or blocksfs. Personally for me it's just a name, I don't mind either way. >> * Get this into the kernel ASAP! OSD stuff languishes outside the >> kernel for _far_ too long. OSD is a key storage technology that needs >> to be developed in the full light of the Linux community, not off in a >> dark corner somewhere, where few see progress or discussions. > > I completely agree. We've missed the merge window for 2.6.28 but > if we can get it into 2.6.29 that would be great! > >> Object-based storage, and its SCSI incarnation OSD, is a MAJOR revision >> of the block storage API, moving away from LBA-addressed linear APIs. >> That's a big deal, and should be discussed on LKML, IMO... > > Absolutely. > Thanks for your comments! > I've been working on this OSD stuff for a while now, and I'm very excited about it, it feels very powerful yet simple. I was able to reach stable results (hopefully) in relatively short time. and the code size of both the Initiator and the osdfs is pretty small. I forgot to mention in my introduction that I was able to clone a git tree over an osdfs mount, compile a kernel, which actually runs. Make changes git-diff and commit the changes. Unmount/mount and diff with original tree with success. So it is functional. With Benny's stuff it might even get fast with the right setup. > Benny > >> Jeff >> Boaz ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [osd-dev] [RFC 0/9] osdfs 2008-11-04 10:11 ` Boaz Harrosh @ 2008-11-04 10:28 ` Avishay Traeger 0 siblings, 0 replies; 4+ messages in thread From: Avishay Traeger @ 2008-11-04 10:28 UTC (permalink / raw) To: Boaz Harrosh; +Cc: linux-fsdevel, linux-scsi, LKML On Tue, Nov 4, 2008 at 12:11 PM, Boaz Harrosh <bharrosh@panasas.com> wrote: <snip> >>> As such, "osdfs" seems like too-generic a name. How about boazfs? :) >> >> I agree. osdfs is the name given by Avishay and IBM and we just adopted it. >> I think that obfs (Object-based File System) would better represent >> what it is (although it's still generic compared to boazfs :-) >> > > If at all then it's avishayfs, but unless I write this filesystem from > scratch I don't think I can do anything about the name. The code is > copyrighted to Avishay Traeger, and that is the name he chose. Also > he has a sourceforge.net project of that name for a long time. > > Avishay would you be willing to change the name? See above, people > think it is too generic a name. Like if someone would do a scsifs > or blocksfs. > > Personally for me it's just a name, I don't mind either way. I don't care if we change the name. I suppose we can discuss alternatives outside of the mailing lists, but I'd rather not do boazfs or avishayfs :-) By the way, just to clarify: I wrote this file system at IBM, but they were nice enough to give me full ownership of the code. I then proceeded to put the code up on sourceforge. Thanks to Boaz and Benny for reviving the code and submitting it for inclusion in the kernel. Avishay ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2008-11-04 10:29 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <4909C41A.7000406@panasas.com>
2008-11-03 21:07 ` [RFC 0/9] osdfs Jeff Garzik
2008-11-04 8:04 ` [osd-dev] " Benny Halevy
2008-11-04 10:11 ` Boaz Harrosh
2008-11-04 10:28 ` Avishay Traeger
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox