]> git.apps.os.sepia.ceph.com Git - ceph.git/log
ceph.git
9 years agoRevert "makefiles: remove bz2-dev from dependencies" 6948/head
Samuel Just [Tue, 15 Dec 2015 23:12:19 +0000 (15:12 -0800)]
Revert "makefiles: remove bz2-dev from dependencies"

9 years agoMerge pull request #6939 from branch-predictor/bp-remove-bz2dev
Kefu Chai [Tue, 15 Dec 2015 14:43:27 +0000 (22:43 +0800)]
Merge pull request #6939 from branch-predictor/bp-remove-bz2dev

makefiles: remove bz2-dev from dependencies

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6943 from smithfarm/wip-doc-dev-typo
Loic Dachary [Tue, 15 Dec 2015 14:33:21 +0000 (15:33 +0100)]
Merge pull request #6943 from smithfarm/wip-doc-dev-typo

doc: fix typo in developer guide

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agodoc: fix typo in developer guide 6943/head
Nathan Cutler [Tue, 15 Dec 2015 14:25:45 +0000 (15:25 +0100)]
doc: fix typo in developer guide

Signed-off-by: Nathan Cutler <ncutler@suse.com>
9 years agoMerge pull request #6821 from H3C/wip-cephfs-f11322
John Spray [Tue, 15 Dec 2015 13:15:43 +0000 (13:15 +0000)]
Merge pull request #6821 from H3C/wip-cephfs-f11322

ceph-fuse: add process to ceph-fuse --help

Reviewed-by: John Spray <john.spray@redhat.com>
9 years agomakefiles: remove bz2-dev from dependencies 6939/head
Piotr Dałek [Tue, 15 Dec 2015 13:01:51 +0000 (14:01 +0100)]
makefiles: remove bz2-dev from dependencies

The only thing that uses bzip2-devel is RocksDB, and it's optional, not
requirement. Drop the bzip2-devel/libbz2-dev dependency entirely, and
let RocksDB use it only if it is already present.

Fixes: #13981
Signed-off-by: Piotr Dałek <piotr.dalek@ts.fujitsu.com>
9 years agoceph-fuse: add process to ceph-fuse --help 6821/head
Wei Feng [Wed, 9 Dec 2015 08:58:32 +0000 (03:58 -0500)]
ceph-fuse: add process to ceph-fuse --help

Signed-off-by: Wei Feng <feng.wei@h3c.com>
9 years agoMerge pull request #6934 from smithfarm/wip-14070
Loic Dachary [Tue, 15 Dec 2015 12:24:47 +0000 (13:24 +0100)]
Merge pull request #6934 from smithfarm/wip-14070

doc: Update list of admin/build-doc dependencies

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agodoc: Update list of admin/build-doc dependencies 6934/head
Nathan Cutler [Tue, 15 Dec 2015 11:41:29 +0000 (12:41 +0100)]
doc: Update list of admin/build-doc dependencies

http://tracker.ceph.com/issues/14070 Fixes: #14070

Signed-off-by: Nathan Cutler <ncutler@suse.com>
9 years agoMerge pull request #6910 from dachary/wip-dev-guide-ceph-qa-suite
Loic Dachary [Tue, 15 Dec 2015 10:21:51 +0000 (11:21 +0100)]
Merge pull request #6910 from dachary/wip-dev-guide-ceph-qa-suite

doc: dev: introduction to tests

Reviewed-by: Nathan Cutler <ncutler@suse.com>
9 years agoMerge pull request #6927 from tchaikov/wip-fix-ftbfs
Loic Dachary [Tue, 15 Dec 2015 07:52:51 +0000 (08:52 +0100)]
Merge pull request #6927 from tchaikov/wip-fix-ftbfs

rgw: fix the build failure

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agorgw: remove unused variable 6927/head
Kefu Chai [Tue, 15 Dec 2015 06:46:14 +0000 (14:46 +0800)]
rgw: remove unused variable

to fix the compiler warning of

 rgw/rgw_formats.cc: In member function 'virtual void
 RGWFormatter_Plain::dump_format_va(const char*, const char*, bool, const
 char*, __va_list_tag*)':
 rgw/rgw_formats.cc:143:15: warning: unused variable 'format'
 [-Wunused-variable]
    const char *format;

Signed-off-by: Kefu Chai <kchai@redhat.com>
9 years agorgw: fix the build failure
Kefu Chai [Tue, 15 Dec 2015 04:28:13 +0000 (12:28 +0800)]
rgw: fix the build failure

* s/bucket_name_str/bucket_name/
* the member variable name of `req_state` was changed to `bucket_name`
  in f7ca00a. but some commits was still using the old name before the
  commit got merged.
* fixes for the tenant related change
* also fixes a typo

Signed-off-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6859 from dillaman/wip-librbd-async-refresh
Josh Durgin [Tue, 15 Dec 2015 04:14:13 +0000 (20:14 -0800)]
Merge pull request #6859 from dillaman/wip-librbd-async-refresh

librbd: image refresh code paths converted to async state machines

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
9 years agolibrbd: refresh object map after rollback 6859/head
Jason Dillaman [Mon, 14 Dec 2015 15:31:54 +0000 (10:31 -0500)]
librbd: refresh object map after rollback

An image refresh will no longer trigger an automatic object map
reload, therefore explicitly reload the object map after rollback.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: refresh image asynchronously from watch/notify path
Jason Dillaman [Mon, 14 Dec 2015 14:50:26 +0000 (09:50 -0500)]
librbd: refresh image asynchronously from watch/notify path

The AIO path already ensures asynchronous image refreshes, but the
watch/notify path for maintenance ops was still using the sync refresh
path.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: the journal state machine is now asynchronous
Jason Dillaman [Fri, 11 Dec 2015 20:09:38 +0000 (15:09 -0500)]
librbd: the journal state machine is now asynchronous

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agotests: adjust test cases to refactored librbd
Jason Dillaman [Wed, 9 Dec 2015 04:14:49 +0000 (23:14 -0500)]
tests: adjust test cases to refactored librbd

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: all object map methods are now async
Jason Dillaman [Fri, 11 Dec 2015 04:57:37 +0000 (23:57 -0500)]
librbd: all object map methods are now async

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: IO ops will now asynchronously refresh the image if needed
Jason Dillaman [Thu, 10 Dec 2015 23:39:28 +0000 (18:39 -0500)]
librbd: IO ops will now asynchronously refresh the image if needed

This avoids blocking the AIO path with the previous synchronous
refresh path.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agoWorkQueue: PointerWQ now supports out-of-band processing
Jason Dillaman [Thu, 10 Dec 2015 23:38:34 +0000 (18:38 -0500)]
WorkQueue: PointerWQ now supports out-of-band processing

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: flush all in-flight IO on block write and shut down
Jason Dillaman [Thu, 10 Dec 2015 20:59:43 +0000 (15:59 -0500)]
librbd: flush all in-flight IO on block write and shut down

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: add shut down support to the AIO work queue
Jason Dillaman [Wed, 9 Dec 2015 19:51:18 +0000 (14:51 -0500)]
librbd: add shut down support to the AIO work queue

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: integrate new async image state machines
Jason Dillaman [Wed, 9 Dec 2015 04:15:35 +0000 (23:15 -0500)]
librbd: integrate new async image state machines

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: ImageWatcher should release lock upon request
Jason Dillaman [Wed, 9 Dec 2015 04:07:52 +0000 (23:07 -0500)]
librbd: ImageWatcher should release lock upon request

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: implement image state tracker for open/close/refresh/etc
Jason Dillaman [Wed, 9 Dec 2015 04:07:02 +0000 (23:07 -0500)]
librbd: implement image state tracker for open/close/refresh/etc

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: rename ImageRefresh to ImageState
Jason Dillaman [Tue, 8 Dec 2015 21:25:54 +0000 (16:25 -0500)]
librbd: rename ImageRefresh to ImageState

This class handles more than just refreshing the image from
disk.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: object map lifespan now controlled by state machines
Jason Dillaman [Tue, 8 Dec 2015 19:37:09 +0000 (14:37 -0500)]
librbd: object map lifespan now controlled by state machines

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: decouple ImageWatcher from exclusive lock management
Jason Dillaman [Tue, 8 Dec 2015 18:48:27 +0000 (13:48 -0500)]
librbd: decouple ImageWatcher from exclusive lock management

Use new ExclusiveLock state machine to handle all the proper
transitions between lock states.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: separate image refresh into async state machines
Jason Dillaman [Thu, 12 Nov 2015 21:38:35 +0000 (16:38 -0500)]
librbd: separate image refresh into async state machines

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agotests: exclusive lock state machines test cases
Jason Dillaman [Thu, 3 Dec 2015 17:16:10 +0000 (12:16 -0500)]
tests: exclusive lock state machines test cases

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: separate exclusive lock handling into async state machines
Jason Dillaman [Wed, 2 Dec 2015 20:21:58 +0000 (15:21 -0500)]
librbd: separate exclusive lock handling into async state machines

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrados_test_stub: additional definitions and mock functions
Jason Dillaman [Mon, 7 Dec 2015 21:11:27 +0000 (16:11 -0500)]
librados_test_stub: additional definitions and mock functions

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agotests: mock test cases for new async object map lock/unlock/refresh ops
Jason Dillaman [Sat, 5 Dec 2015 02:45:24 +0000 (21:45 -0500)]
tests: mock test cases for new async object map lock/unlock/refresh ops

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: async object map lock/unlock/refresh state machines
Jason Dillaman [Fri, 4 Dec 2015 03:14:42 +0000 (22:14 -0500)]
librbd: async object map lock/unlock/refresh state machines

Creating async versions to support an async image refresh

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrados_test_stub: additional mocked IoCtx methods
Jason Dillaman [Sat, 5 Dec 2015 02:44:55 +0000 (21:44 -0500)]
librados_test_stub: additional mocked IoCtx methods

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: convert object_map::InvalidateRequest to template
Jason Dillaman [Fri, 4 Dec 2015 02:52:41 +0000 (21:52 -0500)]
librbd: convert object_map::InvalidateRequest to template

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: support updated async cls_rbd API
Jason Dillaman [Fri, 4 Dec 2015 20:23:32 +0000 (15:23 -0500)]
librbd: support updated async cls_rbd API

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agocls_rbd: async version of class helpers added
Jason Dillaman [Thu, 12 Nov 2015 21:36:42 +0000 (16:36 -0500)]
cls_rbd: async version of class helpers added

New async versions of get_id, get_immutable_metadata,
get_mutable_metadata, get_flags, get_stripe_unit_count,
snapshot_list, and old_snapshot_list.  These are needed
by the new librbd async ImageCtx op state machines.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: fix missing header dependencies for parent_types.h
Jason Dillaman [Tue, 17 Nov 2015 15:31:31 +0000 (10:31 -0500)]
librbd: fix missing header dependencies for parent_types.h

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrados_test_stub: implemented ObjectReadOperation::stat
Jason Dillaman [Tue, 17 Nov 2015 00:00:16 +0000 (19:00 -0500)]
librados_test_stub: implemented ObjectReadOperation::stat

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agotests: restrict rebuild object map test case
Jason Dillaman [Thu, 12 Nov 2015 21:24:15 +0000 (16:24 -0500)]
tests: restrict rebuild object map test case

It should only run when the object map is enabled for the image.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: moved object name helpers to librbd::util namespace
Jason Dillaman [Tue, 17 Nov 2015 15:42:34 +0000 (10:42 -0500)]
librbd: moved object name helpers to librbd::util namespace

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agotests: integrate cleaned up librbd AIO callback adapter
Jason Dillaman [Thu, 12 Nov 2015 02:44:02 +0000 (21:44 -0500)]
tests: integrate cleaned up librbd AIO callback adapter

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: cleanup librbd AIO completion callbacks
Jason Dillaman [Thu, 12 Nov 2015 02:34:24 +0000 (21:34 -0500)]
librbd: cleanup librbd AIO completion callbacks

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: cleanup Context and librados AIO completion callbacks
Jason Dillaman [Thu, 12 Nov 2015 01:45:37 +0000 (20:45 -0500)]
librbd: cleanup Context and librados AIO completion callbacks

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agoMerge pull request #6643 from rzarzynski/wip-rgw-slo-rzarzynski
Yehuda Sadeh [Tue, 15 Dec 2015 01:00:36 +0000 (17:00 -0800)]
Merge pull request #6643 from rzarzynski/wip-rgw-slo-rzarzynski

- rgw: swift bulk delete (Radoslaw Zarzynski)
- rgw: static large objects (Radoslaw Zarzynski, Yehuda Sadeh)

Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
9 years agoMerge pull request #6925 from dillaman/wip-13633
Josh Durgin [Mon, 14 Dec 2015 23:47:57 +0000 (15:47 -0800)]
Merge pull request #6925 from dillaman/wip-13633

librbd: optionally validate new RBD pools for snapshot support

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
9 years agotests: new integration test for validating new RBD pools 6925/head
Jason Dillaman [Mon, 14 Dec 2015 22:49:55 +0000 (17:49 -0500)]
tests: new integration test for validating new RBD pools

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: optionally validate RBD pool configuration (snapshot support)
Jason Dillaman [Mon, 14 Dec 2015 22:41:49 +0000 (17:41 -0500)]
librbd: optionally validate RBD pool configuration (snapshot support)

Fixes: #13633
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agoMerge pull request #6917 from majianpeng/journal-iohint
Josh Durgin [Mon, 14 Dec 2015 22:16:19 +0000 (14:16 -0800)]
Merge pull request #6917 from majianpeng/journal-iohint

Journal iohint for librbd

Reviewed-by: Jason Dillaman <dillaman@redhat.com>
Reviewed-by: Josh Durgin <jdurgin@redhat.com>
9 years agoMerge pull request #6923 from dillaman/wip-14060
Josh Durgin [Mon, 14 Dec 2015 21:41:40 +0000 (13:41 -0800)]
Merge pull request #6923 from dillaman/wip-14060

librbd: correct race conditions discovered during unit testing

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
9 years agojournal: avoid race between flush request and in-flight flushes 6923/head
Jason Dillaman [Mon, 14 Dec 2015 20:28:38 +0000 (15:28 -0500)]
journal: avoid race between flush request and in-flight flushes

Previously, if the journal object was empty, a flush request could
complete instantly even if there is an in-flight 'record safe'
callback.

Fixes: #14060
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agolibrbd: fix test case race condition for maintenance requests
Jason Dillaman [Mon, 14 Dec 2015 20:27:54 +0000 (15:27 -0500)]
librbd: fix test case race condition for maintenance requests

Fixes: #14060
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
9 years agoMerge pull request #6922 from liewegas/wip-cephfs-posix
Sage Weil [Mon, 14 Dec 2015 18:12:58 +0000 (13:12 -0500)]
Merge pull request #6922 from liewegas/wip-cephfs-posix

doc/cephfs/posix: update

9 years agoMerge pull request #6899 from branch-predictor/bp-fix-no-rbd-build
Josh Durgin [Mon, 14 Dec 2015 17:49:49 +0000 (09:49 -0800)]
Merge pull request #6899 from branch-predictor/bp-fix-no-rbd-build

rbd: fix build with "--without-rbd"

Reviewed-by: Josh Durgin <jdurgin@redhat.com>
9 years agorbd: fix build with "--without-rbd" 6899/head
Piotr Dałek [Fri, 11 Dec 2015 15:42:51 +0000 (16:42 +0100)]
rbd: fix build with "--without-rbd"

It's not possible to build Ceph configured with "--without-rbd", as
tests and FileStore depends on components provided by RBD. This changeset
fixes this.

Fixes: #14058
Signed-off-by: Piotr Dałek <piotr.dalek@ts.fujitsu.com>
9 years agodoc/cephfs/posix: update 6922/head
Sage Weil [Mon, 14 Dec 2015 15:45:30 +0000 (10:45 -0500)]
doc/cephfs/posix: update

Signed-off-by: Sage Weil <sage@redhat.com>
9 years agoMerge pull request #6873 from javacruft/wip/debian-infernalis-patches
Loic Dachary [Mon, 14 Dec 2015 11:52:28 +0000 (12:52 +0100)]
Merge pull request #6873 from javacruft/wip/debian-infernalis-patches

ceph-detect-init: Ubuntu >= 15.04 uses systemd

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agoMerge pull request #6787 from oritwas/wip-run-cmake-check
Loic Dachary [Mon, 14 Dec 2015 11:49:37 +0000 (12:49 +0100)]
Merge pull request #6787 from oritwas/wip-run-cmake-check

Wip run cmake check

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agojournal: add iohint flags for journal replayer. 6917/head
Jianpeng Ma [Mon, 14 Dec 2015 05:23:04 +0000 (13:23 +0800)]
journal: add iohint flags for journal replayer.

Signed-off-by: Jianpeng Ma <jianpeng.ma@intel.com>
9 years agojournal: Add iohint flags for journal write ops.
Jianpeng Ma [Mon, 14 Dec 2015 05:32:02 +0000 (13:32 +0800)]
journal: Add iohint flags for journal write ops.

Signed-off-by: Jianpeng Ma <jianpeng.ma@intel.com>
9 years agoMerge pull request #6790 from kylinstorage/wip-subprocess
Kefu Chai [Mon, 14 Dec 2015 04:15:28 +0000 (12:15 +0800)]
Merge pull request #6790 from kylinstorage/wip-subprocess

SubProcess: fix multiple definition bug

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #5921 from caibo2014/add-tool-feature
Kefu Chai [Mon, 14 Dec 2015 04:13:40 +0000 (12:13 +0800)]
Merge pull request #5921 from caibo2014/add-tool-feature

tools:support printing part cluster map in readable fashion

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agodoc: dev: introduction to tests 6910/head
Loic Dachary [Sun, 13 Dec 2015 15:33:39 +0000 (16:33 +0100)]
doc: dev: introduction to tests

Signed-off-by: Loic Dachary <loic@dachary.org>
9 years agoMerge pull request #6906 from HeyoQiang/heyongqiang1212
Loic Dachary [Sun, 13 Dec 2015 20:57:36 +0000 (21:57 +0100)]
Merge pull request #6906 from HeyoQiang/heyongqiang1212

client: modify a word in log

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agoMerge pull request #6866 from xiaoxichen/umount_before_mount
Loic Dachary [Sun, 13 Dec 2015 12:47:30 +0000 (13:47 +0100)]
Merge pull request #6866 from xiaoxichen/umount_before_mount

init-ceph: do umount when the path exists.

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agoinit-ceph: do umount when the path exists. 6866/head
Xiaoxi Chen [Wed, 9 Dec 2015 07:16:59 +0000 (15:16 +0800)]
init-ceph: do umount when the path exists.

If the specified mount point is in use, umount it instead
of skipping mounting the fs.

In previous code , if we forgot that we already mount something unrelated to
*this ceph osd * to the particular mount point, we will skip the mount and
finally get an error complaining superblock not matching OSD ID.

umount & remount is better because
1. If the wrong FS not in use, we can get the right FS we want and make ceph boot smoothly.
2. If the wrong FS is in use, we will get EBUSY on umount, which seems explain the situation
more clearly than superblock mismatch.

Signed-off-by: Xiaoxi Chen <xiaoxi.chen@intel.com>
9 years agoMerge pull request #6905 from H3C/wip-bugfix-mount1
Kefu Chai [Sun, 13 Dec 2015 04:52:31 +0000 (12:52 +0800)]
Merge pull request #6905 from H3C/wip-bugfix-mount1

mount.ceph: memory leaks

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6908 from nilamdyuti/wip-doc-rbdsnapshot
Loic Dachary [Sun, 13 Dec 2015 01:10:12 +0000 (02:10 +0100)]
Merge pull request #6908 from nilamdyuti/wip-doc-rbdsnapshot

doc: Modified a note section in rbd-snapshot doc.

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agomount/mtab.cc: memory leaks 6905/head
qiankunzheng [Sun, 13 Dec 2015 01:03:22 +0000 (20:03 -0500)]
mount/mtab.cc: memory leaks
the free() should be called to free resources, in order to avoid memory leaks

Fixes:#14066
Signed-off-by: Qiankun Zheng <zheng.qiankun@h3c.com>
9 years agoclient: modify a word in log 6906/head
Yongqiang He [Sat, 12 Dec 2015 20:21:07 +0000 (15:21 -0500)]
client: modify a word in log

This modification changed the word "comit" in line 7704
/* ldout(cct, 10) << "sync_write_comit -- no more unsafe writes, unmount can proceed" << dendl; */
by the word "commit";

Signed-off-by: YongQiang He<he.yongqiang@h3c.com>
9 years agodoc: Modified a note section in rbd-snapshot doc. 6908/head
Nilamdyuti Goswami [Sat, 12 Dec 2015 19:53:30 +0000 (01:23 +0530)]
doc: Modified a note section in rbd-snapshot doc.

Elaborates the note section a bit more as to why stopping I/O before
taking a snapshot is recommended and how to do it.

Signed-off-by: Nilamdyuti Goswami <ngoswami@redhat.com>
9 years agoMerge pull request #6901 from yehudasa/wip-mstart
Sage Weil [Fri, 11 Dec 2015 21:46:50 +0000 (16:46 -0500)]
Merge pull request #6901 from yehudasa/wip-mstart

vstart.sh: add mstart, mstop, mrun wrappers for running multiple vstart-style test clusters out of src tree

Reviewed-by: Sage Weil <sage@redhat.com>
9 years agoMerge pull request #6698 from mathslinux/auth-crash-fix
Sage Weil [Fri, 11 Dec 2015 20:42:53 +0000 (15:42 -0500)]
Merge pull request #6698 from mathslinux/auth-crash-fix

auth: fix crash when bad keyring is passed

Reviewed-by: Sage Weil <sage@redhat.com>
9 years agoMerge pull request #6890 from dachary/wip-13986-test-pg-scrub
Loic Dachary [Fri, 11 Dec 2015 17:24:56 +0000 (18:24 +0100)]
Merge pull request #6890 from dachary/wip-13986-test-pg-scrub

tests: fix failure for osd-scrub-snap.sh

Reviewed-by: Xinze Chi <xinze@xsky.com>
Reviewed-by: Ning Yao <zay11022@gmail.com>
9 years agovstart.sh: mon osd reporter subtree level = osd
Sage Weil [Fri, 11 Dec 2015 16:30:08 +0000 (11:30 -0500)]
vstart.sh: mon osd reporter subtree level = osd

Since everything is on one host!

Signed-off-by: Sage Weil <sage@redhat.com>
9 years agoMerge pull request #6709 from xiaoxichen/failure_by_host
Sage Weil [Fri, 11 Dec 2015 16:32:17 +0000 (11:32 -0500)]
Merge pull request #6709 from xiaoxichen/failure_by_host

mon: support min_down_reporter by subtree level (default by host)

Reviewed-by: Kefu Chai <kchai@redhat.com>
Reviewed-by: Sage Weil <sage@redhat.com>
9 years agomstop.sh, mrgw.sh: more scripts to control daemons in dev env 6901/head
Yehuda Sadeh [Tue, 8 Dec 2015 21:41:07 +0000 (13:41 -0800)]
mstop.sh, mrgw.sh: more scripts to control daemons in dev env

Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
9 years agomrun: a tool to run commands against specific mstart cluster
Yehuda Sadeh [Tue, 8 Dec 2015 17:36:47 +0000 (09:36 -0800)]
mrun: a tool to run commands against specific mstart cluster

E.g.,

$ ./mstart.sh foo -n
$ ./mrun foo ceph -s

Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
9 years agomstart.sh: run multiple clusters in a single source tree
Yehuda Sadeh [Tue, 8 Dec 2015 01:06:03 +0000 (17:06 -0800)]
mstart.sh: run multiple clusters in a single source tree

Signed-off-by: Yehuda Sadeh <yehuda@redhat.com>
9 years agoMerge pull request #6823 from oritwas/wip-cmake-fix-authtool
Kefu Chai [Fri, 11 Dec 2015 15:32:40 +0000 (23:32 +0800)]
Merge pull request #6823 from oritwas/wip-cmake-fix-authtool

cmake: add TracepointProvider.cc to libcommon

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6827 from trociny/wip-scrub-debug
Kefu Chai [Fri, 11 Dec 2015 15:28:11 +0000 (23:28 +0800)]
Merge pull request #6827 from trociny/wip-scrub-debug

Little improvements for troubleshooting scrub issues

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6732 from aalba6675/patch-custom-cluster-name
Sage Weil [Fri, 11 Dec 2015 15:24:45 +0000 (10:24 -0500)]
Merge pull request #6732 from aalba6675/patch-custom-cluster-name

sysvinit: allow custom cluster names

Reviewed-by: Sage Weil <sage@redhat.com>
9 years agoMerge pull request #6730 from kylinstorage/fix-refcounter-in-replica_scrub
Sage Weil [Fri, 11 Dec 2015 15:22:32 +0000 (10:22 -0500)]
Merge pull request #6730 from kylinstorage/fix-refcounter-in-replica_scrub

osd: fix MOSDRepScrub reference counter in replica_scrub

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6713 from zhanghuan/fix-wbthrottle
Sage Weil [Fri, 11 Dec 2015 15:21:53 +0000 (10:21 -0500)]
Merge pull request #6713 from zhanghuan/fix-wbthrottle

osd: fix incorrect throttle in WBThrottle

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6731 from kylinstorage/clean_up_objecter
Sage Weil [Fri, 11 Dec 2015 15:20:58 +0000 (10:20 -0500)]
Merge pull request #6731 from kylinstorage/clean_up_objecter

librados: clean up Objecter.h

Reviewed-by: Kefu Chai <kchai@redhat.com>
9 years agoMerge pull request #6863 from jdurgin/wip-buffer-header
Sage Weil [Fri, 11 Dec 2015 13:35:57 +0000 (08:35 -0500)]
Merge pull request #6863 from jdurgin/wip-buffer-header

buffer: make usable outside of ceph source again

Reviewed-by: Sage Weil <sage@redhat.com>
9 years agocmake: add run_cmake-check.sh 6787/head
Orit Wasserman [Thu, 3 Dec 2015 11:32:03 +0000 (12:32 +0100)]
cmake: add run_cmake-check.sh

currently only check to cmake build process

Signed-off-by: Orit Wasserman <owasserm@redhat.com>
9 years agoMerge pull request #6750 from theanalyst/doc/mailmap/jewel
Loic Dachary [Fri, 11 Dec 2015 09:47:01 +0000 (10:47 +0100)]
Merge pull request #6750 from theanalyst/doc/mailmap/jewel

mailmap: Jewel updates

Reviewed-by: Loic Dachary <ldachary@redhat.com>
9 years agoMerge pull request #6872 from dachary/wip-osd-typo
Loic Dachary [Fri, 11 Dec 2015 08:46:41 +0000 (09:46 +0100)]
Merge pull request #6872 from dachary/wip-osd-typo

doc: osd: s/schedued/scheduled/

Reviewed-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: YankunLi affiliation 6750/head
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:15:41 +0000 (18:45 +0530)]
mailmap: YankunLi affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: Nishtha Rai affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:15:13 +0000 (18:45 +0530)]
mailmap: Nishtha Rai affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: John Coyle affiliation
Abhishek Lekshmanan [Fri, 11 Dec 2015 07:41:28 +0000 (13:11 +0530)]
mailmap: John Coyle affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
Conflicts:
.organizationmap
Trivial merge conflict as upstream had an additional entry

9 years agomailmap: Jashan Kamboj affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:14:32 +0000 (18:44 +0530)]
mailmap: Jashan Kamboj affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: Adam Kupczyk affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:14:04 +0000 (18:44 +0530)]
mailmap: Adam Kupczyk affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: Jacek J. Lakis affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:13:37 +0000 (18:43 +0530)]
mailmap: Jacek J. Lakis affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: runsisi affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:13:09 +0000 (18:43 +0530)]
mailmap: runsisi affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: Zeqiang Zhuang affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:11:19 +0000 (18:41 +0530)]
mailmap: Zeqiang Zhuang affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>
9 years agomailmap: You Ji affiliation
Abhishek Lekshmanan [Tue, 1 Dec 2015 13:10:30 +0000 (18:40 +0530)]
mailmap: You Ji affiliation

Signed-off-by: Abhishek Lekshmanan <abhishek.lekshmanan@gmail.com>