linux-fsdevel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sage Weil <sage@newdream.net>
To: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: Sage Weil <sage@newdream.net>
Subject: [PATCH 00/20] ceph distributed file system client
Date: Tue,  8 Sep 2009 15:56:21 -0700	[thread overview]
Message-ID: <1252450601-17610-1-git-send-email-sage@newdream.net> (raw)

Hi,

This is v0.14 of the Ceph distributed file system client.  Changes since
v0.12 (the last release posted) include:

 - refactored, simplified network message library
   - now strictly client/server
   - simplified callback vector
   - fewer memory allocations
 - improved client/monitor protocol
 - fixed EOF vs (short) read behavior with multi-client sharing
 - cleanup, refactoring in osd reply code
 - bug fixes

The biggest change is in the message library.  A whole class of
potential memory allocations have been removed, the groundwork has
been laid to reserve memory for incoming messages, and lots of code
got removed in the process.

This is mainly motivated by the desire to eliminate any memory
allocations during writeback; we're pretty close to having that
resolved.  If there are other areas of concern (general or specific)
with this patchset, please speak up.

We would like to see this merged soon.  What is the next step here?

Thanks,
sage


Kernel client git tree:
        git://ceph.newdream.net/linux-ceph-client.git

System:
	git://ceph.newdream.net/ceph.git

---
 Documentation/filesystems/ceph.txt |  140 ++
 fs/Kconfig                         |    1 +
 fs/Makefile                        |    1 +
 fs/ceph/Kconfig                    |   26 +
 fs/ceph/Makefile                   |   35 +
 fs/ceph/addr.c                     | 1170 +++++++++++++++
 fs/ceph/buffer.h                   |   93 ++
 fs/ceph/caps.c                     | 2768 ++++++++++++++++++++++++++++++++++
 fs/ceph/ceph_debug.h               |   34 +
 fs/ceph/ceph_fs.h                  |  935 ++++++++++++
 fs/ceph/ceph_ver.h                 |    6 +
 fs/ceph/crush/crush.c              |  140 ++
 fs/ceph/crush/crush.h              |  188 +++
 fs/ceph/crush/hash.h               |   90 ++
 fs/ceph/crush/mapper.c             |  588 ++++++++
 fs/ceph/crush/mapper.h             |   20 +
 fs/ceph/debugfs.c                  |  455 ++++++
 fs/ceph/decode.h                   |  136 ++
 fs/ceph/dir.c                      | 1175 +++++++++++++++
 fs/ceph/export.c                   |  235 +++
 fs/ceph/file.c                     |  916 +++++++++++
 fs/ceph/inode.c                    | 2398 +++++++++++++++++++++++++++++
 fs/ceph/ioctl.c                    |   98 ++
 fs/ceph/ioctl.h                    |   20 +
 fs/ceph/mds_client.c               | 2913 ++++++++++++++++++++++++++++++++++++
 fs/ceph/mds_client.h               |  320 ++++
 fs/ceph/mdsmap.c                   |  139 ++
 fs/ceph/mdsmap.h                   |   47 +
 fs/ceph/messenger.c                | 1815 ++++++++++++++++++++++
 fs/ceph/messenger.h                |  263 ++++
 fs/ceph/mon_client.c               |  651 ++++++++
 fs/ceph/mon_client.h               |  102 ++
 fs/ceph/msgr.h                     |  158 ++
 fs/ceph/osd_client.c               | 1278 ++++++++++++++++
 fs/ceph/osd_client.h               |  142 ++
 fs/ceph/osdmap.c                   |  871 +++++++++++
 fs/ceph/osdmap.h                   |   94 ++
 fs/ceph/rados.h                    |  427 ++++++
 fs/ceph/snap.c                     |  896 +++++++++++
 fs/ceph/super.c                    | 1035 +++++++++++++
 fs/ceph/super.h                    |  961 ++++++++++++
 fs/ceph/types.h                    |   27 +
 42 files changed, 23807 insertions(+), 0 deletions(-)

             reply	other threads:[~2009-09-08 22:56 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-08 22:56 Sage Weil [this message]
2009-09-08 22:56 ` [PATCH 01/20] ceph: documentation Sage Weil
2009-09-08 22:56   ` [PATCH 02/20] ceph: on-wire types Sage Weil
2009-09-08 22:56     ` [PATCH 03/20] ceph: client types Sage Weil
2009-09-08 22:56       ` [PATCH 04/20] ceph: ref counted buffer Sage Weil
2009-09-08 22:56         ` [PATCH 05/20] ceph: super.c Sage Weil
2009-09-08 22:56           ` [PATCH 06/20] ceph: inode operations Sage Weil
2009-09-08 22:56             ` [PATCH 07/20] ceph: directory operations Sage Weil
2009-09-08 22:56               ` [PATCH 08/20] ceph: file operations Sage Weil
2009-09-08 22:56                 ` [PATCH 09/20] ceph: address space operations Sage Weil
2009-09-08 22:56                   ` [PATCH 10/20] ceph: MDS client Sage Weil
2009-09-08 22:56                     ` [PATCH 11/20] ceph: OSD client Sage Weil
2009-09-08 22:56                       ` [PATCH 12/20] ceph: CRUSH mapping algorithm Sage Weil
2009-09-08 22:56                         ` [PATCH 13/20] ceph: monitor client Sage Weil
2009-09-08 22:56                           ` [PATCH 14/20] ceph: capability management Sage Weil
2009-09-08 22:56                             ` [PATCH 15/20] ceph: snapshot management Sage Weil
2009-09-08 22:56                               ` [PATCH 16/20] ceph: messenger library Sage Weil
2009-09-08 22:56                                 ` [PATCH 17/20] ceph: nfs re-export support Sage Weil
2009-09-08 22:56                                   ` [PATCH 18/20] ceph: ioctls Sage Weil
2009-09-08 22:56                                     ` [PATCH 19/20] ceph: debugfs Sage Weil
2009-09-08 22:56                                       ` [PATCH 20/20] ceph: Kconfig, Makefile Sage Weil
2009-09-08 23:05                                     ` [PATCH 18/20] ceph: ioctls Randy Dunlap
2009-09-08 23:45                                       ` Sage Weil
2009-09-08 23:10 ` [PATCH 00/20] ceph distributed file system client Daniel Walker
2009-09-08 23:47   ` Sage Weil

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=1252450601-17610-1-git-send-email-sage@newdream.net \
    --to=sage@newdream.net \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.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 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).