From: Benny Halevy <bhalevy@panasas.com>
Cc: open-osd development <osd-dev@open-osd.org>,
Boaz Harrosh <bharrosh@panasas.com>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
Avishay Traeger <avishay@gmail.com>,
linux-scsi <linux-scsi@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
Jeff Garzik <jeff@garzik.org>
Subject: Re: [osd-dev] [RFC 0/9] osdfs
Date: Tue, 04 Nov 2008 10:04:35 +0200 [thread overview]
Message-ID: <49100213.6040307@panasas.com> (raw)
In-Reply-To: <490F6829.3020104@garzik.org>
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
>
WARNING: multiple messages have this Message-ID (diff)
From: Benny Halevy <bhalevy@panasas.com>
To: unlisted-recipients:; (no To-header on input)
Cc: open-osd development <osd-dev@open-osd.org>,
Boaz Harrosh <bharrosh@panasas.com>,
linux-fsdevel <linux-fsdevel@vger.kernel.org>,
Avishay Traeger <avishay@gmail.com>,
linux-scsi <linux-scsi@vger.kernel.org>,
LKML <linux-kernel@vger.kernel.org>,
Jeff Garzik <jeff@garzik.org>
Subject: Re: [osd-dev] [RFC 0/9] osdfs
Date: Tue, 04 Nov 2008 10:04:35 +0200 [thread overview]
Message-ID: <49100213.6040307@panasas.com> (raw)
In-Reply-To: <490F6829.3020104@garzik.org>
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
>
next prev parent reply other threads:[~2008-11-04 8:04 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2008-10-30 14:26 [RFC 0/9] osdfs Boaz Harrosh
2008-10-30 14:30 ` [RFC 1/9] osdfs: osd Swiss army knife Boaz Harrosh
2008-10-30 14:31 ` [RFC 2/9] osdfs: file and file_inode operations Boaz Harrosh
2008-10-30 14:32 ` [RFC 3/9] osdfs: symlink_inode and fast_symlink_inode operations Boaz Harrosh
2008-10-30 14:33 ` [RFC 4/9] osdfs: address_space_operations Boaz Harrosh
2008-10-30 14:34 ` [RFC 5/9] osdfs: dir_inode and directory operations Boaz Harrosh
2008-10-30 14:35 ` [RFC 6/9] osdfs: super_operations and file_system_type Boaz Harrosh
2008-10-30 14:36 ` [RFC 7/9] osdfs: mkosdfs Boaz Harrosh
2008-10-30 15:03 ` [RFC 8/9] osdfs: Documentation Boaz Harrosh
2008-10-30 15:04 ` [RFC 9/9] [out-of-tree] open-osd: Global Makefile and do-osdfs test script Boaz Harrosh
2008-11-03 21:07 ` [RFC 0/9] osdfs Jeff Garzik
2008-11-04 8:04 ` Benny Halevy [this message]
2008-11-04 8:04 ` [osd-dev] " Benny Halevy
2008-11-04 10:11 ` Boaz Harrosh
2008-11-04 10:28 ` Avishay Traeger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=49100213.6040307@panasas.com \
--to=bhalevy@panasas.com \
--cc=avishay@gmail.com \
--cc=bharrosh@panasas.com \
--cc=jeff@garzik.org \
--cc=linux-fsdevel@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=osd-dev@open-osd.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.