Skip to content

Commit

Permalink
v0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
liewegas committed Jan 20, 2009
1 parent 584f831 commit a4c752d
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile.am
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
AUTOMAKE_OPTIONS = gnu
EXTRA_DIST = debian autogen.sh
EXTRA_DIST = debian autogen.sh ceph.spec.in
SUBDIRS = src
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ AC_CANONICAL_HOST
AC_CANONICAL_TARGET

# Automake
AM_INIT_AUTOMAKE(ceph, 0.4)
AM_INIT_AUTOMAKE(ceph, 0.6)
AM_PROG_CC_C_O

# Platform
Expand Down
13 changes: 13 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
ceph (0.6-1) unstable; urgency=low

* OSD scrub, fixes
* async metadata ops

ceph (0.5-1) unstable; urgency=low

* OSD bug fixes
* btrfs ioctl interface
* efficient snap recovery
* throttled osd recovery
* forced unmount

ceph (0.4-1) unstable; urgency=low

* Snapshots.
Expand Down
10 changes: 9 additions & 1 deletion src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ noinst_LIBRARIES = \
noinst_LIBRARIES += libcrush_so.a #libcephclient_so.a

# extra bits
EXTRA_DIST = mkcephfs.sh mkfs.sh restart.sh startnew.sh vstartnew.sh stop.sh crun
EXTRA_DIST = dstart.sh dstop.sh mkcephfs.sh montest.sh restart.sh stop.sh verify-mds-journal.sh vstart.sh crun

# cleaning
clean-local:
Expand Down Expand Up @@ -268,6 +268,8 @@ noinst_HEADERS = \
client/fuse.h\
client/fuse_ll.h\
client/hadoop/CephFSInterface.h\
cm.txt\
common/debug.h\
common/lockdep.h\
common/BackTrace.h\
common/Clock.h\
Expand Down Expand Up @@ -306,6 +308,7 @@ noinst_HEADERS = \
ebofs/types.h\
include/Context.h\
include/Distribution.h\
include/LogEntry.h\
include/assert.h\
include/atomic.h\
include/bitmapper.h\
Expand Down Expand Up @@ -370,6 +373,8 @@ noinst_HEADERS = \
kernel/super.c\
kernel/super.h\
kernel/types.h\
mds/locks.c\
mds/locks.h\
mds/Anchor.h\
mds/AnchorClient.h\
mds/AnchorServer.h\
Expand Down Expand Up @@ -449,6 +454,7 @@ noinst_HEADERS = \
messages/MHeartbeat.h\
messages/MInodeFileCaps.h\
messages/MLock.h\
messages/MLog.h\
messages/MMDSBeacon.h\
messages/MMDSBoot.h\
messages/MMDSCacheRejoin.h\
Expand Down Expand Up @@ -483,6 +489,7 @@ noinst_HEADERS = \
messages/MOSDPGQuery.h\
messages/MOSDPGRemove.h\
messages/MOSDPing.h\
messages/MOSDScrub.h\
messages/MOSDSubOp.h\
messages/MOSDSubOpReply.h\
messages/MPGStats.h\
Expand All @@ -494,6 +501,7 @@ noinst_HEADERS = \
mon/ClientMap.h\
mon/ClientMonitor.h\
mon/Elector.h\
mon/LogMonitor.h\
mon/MDSMonitor.h\
mon/MonClient.h\
mon/MonMap.h\
Expand Down
12 changes: 6 additions & 6 deletions src/include/ceph_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
* whenever the wire protocol changes. try to keep this string length
* constant.
*/
#define CEPH_BANNER "ceph 012\n"
#define CEPH_BANNER "ceph 013\n"
#define CEPH_BANNER_MAX_LEN 30

/*
Expand All @@ -40,12 +40,12 @@
* internal cluster protocols separately from the public,
* client-facing protocol.
*/
#define CEPH_OSD_PROTOCOL 3 /* cluster internal */
#define CEPH_MDS_PROTOCOL 4 /* cluster internal */
#define CEPH_OSD_PROTOCOL 4 /* cluster internal */
#define CEPH_MDS_PROTOCOL 5 /* cluster internal */
#define CEPH_MON_PROTOCOL 4 /* cluster internal */
#define CEPH_OSDC_PROTOCOL 3 /* public/client */
#define CEPH_MDSC_PROTOCOL 4 /* public/client */
#define CEPH_MONC_PROTOCOL 4 /* public/client */
#define CEPH_OSDC_PROTOCOL 4 /* public/client */
#define CEPH_MDSC_PROTOCOL 5 /* public/client */
#define CEPH_MONC_PROTOCOL 6 /* public/client */


/*
Expand Down

0 comments on commit a4c752d

Please sign in to comment.