Ceph is a distributed object, block, and file storage platform
Go to file
Jianpeng Ma c5740ea05f os/bluestore/BlueStore: Fix wrong usage of std::unique_lock for OpSequenecer
When set bluestore_sync_wal_apply = false, the osd must be crashed.
I add some debug message in WALWQ::_dequeue():
// preserve wal ordering for this sequencer by taking the lock
/ while still holding the queue lock
-      i->osr->wal_apply_lock.lock();
+      try {
+       i->osr->wal_apply_lock.lock();
+      } catch (const system_error& e) {
+       if (e.code() == std::errc::resource_deadlock_would_occur) {
+         assert(0 == "would deadlock");
+       } else
+         assert(0 == "other system_error");
+      }
       return i;
     }

2016-05-24 00:02:29.107165 7f0f32ea6700 -1 os/bluestore/BlueStore.h: In
function 'virtual BlueStore::TransContext* BlueStore::WALWQ::_dequeue()'
thread 7f0f32ea6700 time 2016-05-24 00:02:29.103360
os/bluestore/BlueStore.h: 489: FAILED assert(0 == "would deadlock")

 ceph version 10.2.0-1232-g21c7599 (21c759936d)
 1: (ceph::__ceph_assert_fail(char const*, char const*, int, char const*)+0x80) [0x560196215ac0]
 2: (ThreadPool::WorkQueue<BlueStore::TransContext>::_void_dequeue()+0x234)[0x560195e618b4]
 3: (ThreadPool::worker(ThreadPool::WorkThread*)+0x654) [0x560196207324]
 4: (ThreadPool::WorkThread::entry()+0x10) [0x560196208d70]
 5: (()+0x760a) [0x7f0f411d260a]
 6: (clone()+0x6d) [0x7f0f3f17a59d]
 NOTE: a copy of the executable, or `objdump -rdS <executable>` is
needed to interpret this.

This because the wron usage of std::unique_lock.

Signed-off-by: Jianpeng Ma <jianpeng.ma@intel.com>
2016-05-24 17:22:32 +08:00
admin doc: update the "building doc" part 2016-05-18 16:23:08 +02:00
bin
ceph-erasure-code-corpus@c332279082
ceph-object-corpus@47fbf8c6ae
cmake/modules
debian
doc doc: John Spray is now CephFS lead 2016-05-23 15:18:10 -06:00
etc
examples
fusetrace
keys
m4
man cmake: build man pages 2016-05-12 13:01:52 +08:00
mirroring
qa rbd-mirror: test: added image-deleter test case when mirroring is disabled 2016-05-22 16:13:21 -04:00
selinux cmake: enable selinux support 2016-05-16 23:09:06 +08:00
share
src os/bluestore/BlueStore: Fix wrong usage of std::unique_lock for OpSequenecer 2016-05-24 17:22:32 +08:00
systemd
udev
.gitignore
.gitmodule_mirrors
.gitmodules
.mailmap mailmap: Luo Runbing affiliation (was "runsisi", name normalization between Huazhong University of Science and Technology part & ZTE .) 2016-05-19 15:34:25 +03:00
.organizationmap mailmap: Luo Runbing affiliation (was "runsisi", name normalization between Huazhong University of Science and Technology part & ZTE .) 2016-05-19 15:34:25 +03:00
.peoplemap
AUTHORS
autogen_freebsd.sh
autogen.sh
ceph.spec.in ceph.spec.in: use %autosetup macro 2016-05-20 07:23:53 -06:00
ChangeLog
CMakeLists.txt cmake: enable selinux support 2016-05-16 23:09:06 +08:00
CodingStyle
configure.ac
CONTRIBUTING.rst
COPYING
COPYING-GPL2
COPYING-LGPL2.1
do_autogen.sh
do_freebsd.sh
doc_deps.deb.txt
Doxyfile
INSTALL
install-deps.sh
make_dist.sh
make-debs.sh
Makefile.am
NEWS
PendingReleaseNotes
pom.xml
README
README.aix
README.cmake
README.FreeBSD
README.md
README.solaris
README.xio
run-cmake-check.sh
run-make-check.sh tests: rm -fr /tmp/*virtualenv* 2016-05-20 15:06:45 +02:00
SubmittingPatches.rst

============================================ Ceph - a scalable distributed storage system

Please see http://ceph.com/ for current info.

Contributing Code

Most of Ceph is licensed under the LGPL version 2.1. Some miscellaneous code is under BSD-style license or is public domain. The documentation is licensed under Creative Commons Attribution-ShareAlike (CC BY-SA). There are a handful of headers included here that are licensed under the GPL. Please see the file COPYING for a full inventory of licenses by file.

Code contributions must include a valid "Signed-off-by" acknowledging the license for the modified or contributed file. Please see the file SubmittingPatches.rst for details on what that means and on how to generate and submit patches.

We do not require assignment of copyright to contribute code; code is contributed under the terms of the applicable license.

Build Prerequisites

The list of Debian or RPM packages dependencies can be installed with:

./install-deps.sh

Note: libsnappy-dev and libleveldb-dev are not available upstream for Debian Squeeze. Backports for Ceph can be found at ceph.com/debian-leveldb.

Building Ceph

Autotools

Developers, please refer to the Developer Guide for more information, otherwise, you can build the server daemons, and FUSE client, by executing the following:

./autogen.sh
./configure
make

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

CMake

Prerequisite: CMake 2.8.11

Build instructions:

mkdir build
cd build
cmake [options] /path/to/ceph/src/dir
make

(Note that /path/to/ceph/src/dir can be in the tree and out of the tree)

Dependencies

The configure script will complain about any missing dependencies as it goes. You can also refer to debian/control or ceph.spec.in for the package build dependencies on those platforms. In many cases, dependencies can be avoided with --with-foo or --without-bar switches. For example,

./configure --with-nss         # use libnss instead of libcrypto++
./configure --without-radosgw  # do not build radosgw
./configure --without-tcmalloc # avoid google-perftools dependency

Building packages

You can build packages for Debian or Debian-derived (e.g., Ubuntu) systems with

sudo apt-get install dpkg-dev
dpkg-checkbuilddeps        # make sure we have all dependencies
dpkg-buildpackage

For RPM-based systems (Red Hat, SUSE, etc.),

rpmbuild

Building the Documentation

Prerequisites

The list of package dependencies for building the documentation can be found in doc_deps.deb.txt:

sudo apt-get install `cat doc_deps.deb.txt`

Building the Documentation

To build the documentation, ensure that you are in the top-level `/ceph directory, and execute the build script. For example:

admin/build-doc