1
0
mirror of https://github.com/ceph/ceph synced 2025-01-10 21:20:46 +00:00
Ceph is a distributed object, block, and file storage platform
Go to file
Colin Patrick McCabe f69fcc7076 C_GatherBuilder: add C_GatherBuilder::activate()
Add an activate() function that must be called before we call the
onfinish callback. This is especially important in multi-threaded
contexts, since otherwise if completions come in in the wrong order, we
may delete the C_Gather object right before calling new_sub on it!

Also delete rm_subs because it is redundant with sub_finish.

Finally, num_subs_created, num_subs_remaining are now methods on
C_GatherBuilder rather than C_Gather.

Signed-off-by: Colin McCabe <colin.mccabe@dreamhost.com>
2011-06-30 10:24:04 -07:00
debian v0.30 2011-06-27 22:23:56 -07:00
fusetrace
man crbdnamer: man page 2011-06-13 22:22:25 -07:00
qa qa: add clone_range tool 2011-06-29 12:58:49 -07:00
src C_GatherBuilder: add C_GatherBuilder::activate() 2011-06-30 10:24:04 -07:00
udev
wireshark
.gitignore .gitignore man/Makefile 2011-06-14 13:58:05 -07:00
AUTHORS
autogen.sh
ceph.spec.in Remove libcrush from packaging 2011-05-19 11:33:17 -07:00
ChangeLog
configure.ac v0.30 2011-06-27 22:23:56 -07:00
COPYING
do_autogen.sh
INSTALL
Makefile.am qa: do not use automake for workunit makefiles 2011-06-14 12:53:33 -07:00
NEWS
README
RELEASE_CHECKLIST
SubmittingPatches

Ceph - a scalable distributed file system
-----------------------------------------

Please see http://ceph.newdream.net/ for current info.

----

To build the server daemons, and FUSE client,

$ ./autogen.sh
$ ./configure

$ make
 or
$ cd src
$ make

(Note that the FUSE client will only be built if libfuse is present.)

----

A quick summary of binaries that will be built in src/

daemons:
 cmon -- monitor daemon.  handles cluster state and configuration
         information.
 cosd -- storage daemon.  stores objects on a given block device.
 cmds -- metadata daemon.  handles file system namespace.
 ceph -- send management commands to the monitor cluster.

userland clients:
 cfuse -- fuse client.
 csyn -- synthetic workload generator client.

tools:
 monmaptool -- create/edit mon map
 osdmaptool -- create/edit osd map 
 crushtool -- create/edit crush map

scripts:
 mkcephfs -- cluster mkfs tool
 init-ceph -- init.d start/stop script