]>
git.apps.os.sepia.ceph.com Git - ceph.git/log
Gary Lowell [Thu, 17 Oct 2013 22:40:12 +0000 (15:40 -0700)]
ceph.spec.in: Need to cread radosgw log directory.
Signed-off-by: Gary Lowell <gary.lowell@inktank.com>
Sage Weil [Tue, 15 Oct 2013 21:27:35 +0000 (14:27 -0700)]
radosgw: create /var/log/radosgw in package, not init script
Fixes: #6475
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Wed, 16 Oct 2013 21:13:03 +0000 (14:13 -0700)]
Merge remote-tracking branch 'gh/next'
Sage Weil [Wed, 16 Oct 2013 20:59:00 +0000 (13:59 -0700)]
debian, specfile: fix ceph-kvstore-tool packaging
See
da69fa09c8274585225471c68c1acc788a3881f4
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Wed, 16 Oct 2013 20:35:07 +0000 (13:35 -0700)]
Merge pull request #732 from ceph/wip-kvstore-tool
tools: ceph-kvstore-tool: Access & manipulate leveldb store using the KeyValueDB interface
Reviewed-by: Sage Weil <sage@inktank.com>
Joao Eduardo Luis [Sun, 13 Oct 2013 12:45:43 +0000 (13:45 +0100)]
ceph-kvstore-tool: copy one leveldb store to some other place
Iterates over the provided source store's keys and copies them to the
provided destination store.
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Joao Eduardo Luis [Sun, 13 Oct 2013 12:44:29 +0000 (13:44 +0100)]
ceph-kvstore-tool: calc store crc
Reuse 'list()' function to traverse the store and calc not only version's
crcs, but also calc the store's crc.
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Sage Weil [Wed, 16 Oct 2013 19:54:41 +0000 (12:54 -0700)]
Merge pull request #655 from ceph/wip-cache-crc
buffer: cache crc values in buffer::raw
Reviewed-by: Yehuda Sadeh <yehuda@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Joao Eduardo Luis [Sun, 13 Oct 2013 12:40:57 +0000 (13:40 +0100)]
tools: move 'test_store_tool' to 'tools/ceph-kvstore-tool'
ceph-kvstore-tool allows for lower-level access to leveldb stores.
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Gregory Farnum [Wed, 16 Oct 2013 18:13:35 +0000 (11:13 -0700)]
Merge pull request #709 from ceph/wip-filerecover
This patch prevents us from inadvertently reducing sparse file sizes during recovery.
We also reduce some code duplication by using eval() directly in do_file_recover()
instead of reproducing the parts we care about.
Reviewed-by: Greg Farnum <greg@inktank.com>
Sage Weil [Wed, 16 Oct 2013 17:58:31 +0000 (10:58 -0700)]
common/buffer: behave when cached crc stats don't start at 0
In particular, this helps when we set CEPH_BUFFER_TRACK=true
Signed-off-by: Sage Weil <sage@inktank.com>
Josh Durgin [Wed, 16 Oct 2013 16:56:35 +0000 (09:56 -0700)]
Merge pull request #724 from ceph/wip-4047
cls_rbd: do not make noise in osd log on rbd removal
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Yehuda Sadeh [Fri, 4 Oct 2013 23:45:11 +0000 (16:45 -0700)]
crc32c: expand unit test
Verify crc on a buffer range, and on a NULL buffer (with various
sizes).
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 4 Oct 2013 23:43:38 +0000 (16:43 -0700)]
sctp_crc32c: fix crc calculation in the NULL buffer case
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 4 Oct 2013 21:19:24 +0000 (14:19 -0700)]
crc32c: add a special case crc32c NULL buffer handling
Adding a special case crc32c NULL buffer handling for the intel assembly
code.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Sage Weil [Sat, 28 Sep 2013 04:07:17 +0000 (21:07 -0700)]
common/buffer: pass NULL buffer instead of a zero-filled one
This is about 2x faster on my box using the sctp code.
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Sat, 28 Sep 2013 04:05:27 +0000 (21:05 -0700)]
common/crc32c: document interface
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Sat, 28 Sep 2013 04:03:28 +0000 (21:03 -0700)]
common/crc32c_intel_baseline: accept null data buffer
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Sat, 28 Sep 2013 04:03:06 +0000 (21:03 -0700)]
common/sctp_crc32: accept NULL buffer pointer
If we get NULL we behave as if it were a zero-filled buffer.
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Fri, 27 Sep 2013 22:29:18 +0000 (15:29 -0700)]
common/buffer: explicitly init zbuf to zeros
This might not be necessary?
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Fri, 27 Sep 2013 22:29:13 +0000 (15:29 -0700)]
common/buffer: add crc caching performance test
On my old box:
- matching cached values is a big win (free), obviously
- the adjustment is the same speed as redoing the calculation. this
is probably because the data is already in L1/L2 cache; we still
save memory bandwidth.
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Fri, 27 Sep 2013 22:29:06 +0000 (15:29 -0700)]
common/buffer: instrument utilization of cached crcs
This is similar to the alloc tracking, but I've added a method to let
you enable it easily (in this case, from the unit test).
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 10 Sep 2013 01:18:26 +0000 (18:18 -0700)]
common/buffer: cache crcs in buffer::raw
Signed-off-by: Samuel Just <sam.just@inktank.com>
Sage Weil [Thu, 12 Sep 2013 01:00:09 +0000 (18:00 -0700)]
include: add Spinlock
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Wed, 16 Oct 2013 00:55:32 +0000 (17:55 -0700)]
cls_rbd: do not make noise in osd log on rbd removal
ubuntu@burnupi06:~$ tail -f /var/log/ceph/ceph-osd.1.log
2013-02-07 17:00:30.565749
7fdb09e6b700 0 <cls> cls/rbd/cls_rbd.cc:1615: error reading id for name 'sds': -2
2013-02-07 17:00:30.566301
7fdb0a66c700 0 <cls> cls/rbd/cls_rbd.cc:1521: error reading name to id mapping: -2
2013-02-07 17:03:54.085700
7fdb0a66c700 0 <cls> cls/rbd/cls_rbd.cc:1615: error reading id for name 'sdfsd': -2
2013-02-07 17:03:54.086143
7fdb09e6b700 0 <cls> cls/rbd/cls_rbd.cc:1521: error reading name to id mapping: -2
Fixes: #4047
Signed-off-by: Sage Weil <sage@inktank.com>
athanatos [Wed, 16 Oct 2013 00:15:16 +0000 (17:15 -0700)]
Merge pull request #728 from ceph/wip-6059
Reviewed-by: Sage Weil <sage@inktank.com>
Reviewed-by: Greg Farnum <greg@inktank.com>
Reviewed-by: David Zafman <david.zafman@inktank.com>
Josh Durgin [Wed, 16 Oct 2013 00:09:10 +0000 (17:09 -0700)]
Merge pull request #729 from ceph/wip-5716
rgw: gracefully handle bad root pool names
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Sage Weil [Tue, 15 Oct 2013 23:50:05 +0000 (16:50 -0700)]
test_ceph_argparse: fix typo
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 23:48:53 +0000 (16:48 -0700)]
test_ceph_argparse: fix mds {add,remove}_data_pool tests
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 23:32:32 +0000 (16:32 -0700)]
common: fix non-daemon init
In commit
4f403c26dc0048ad63e20d20369fa86bfb31c50e we broke the general
non-daemon case.
Also make a note in the release notes.
Signed-off-by: Sage Weil <sage@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Sage Weil [Tue, 15 Oct 2013 23:00:26 +0000 (16:00 -0700)]
test/filestore/run_seed_to.sh: avoid obsolete --filestore-xattr-use-omap
This option no longer exists.
Signed-off-by: Sage Weil <sage@inktank.com>
Greg Farnum [Tue, 15 Oct 2013 22:45:05 +0000 (15:45 -0700)]
MonCommands: note that pg dump options don't work in plaintext
Signed-off-by: Greg Farnum <greg@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Yehuda Sadeh [Tue, 15 Oct 2013 23:05:14 +0000 (16:05 -0700)]
rgw: gracefully handle bad root pool names
Fixes: #5716
When invalid root pools specified (don't start with a period) we return
with an error instead of asserting.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:50:16 +0000 (15:50 -0700)]
ceph_test_rados: fix snap remove vs rollback fix
In commit
55d279b98553ba4542219b126fc7159b20b18b1f we tried to fix a race
between rollback and snap removal, but got the logic wrong: we need to
prevent *snap removal* on in-use snaps, not prevent multiple rollbacks on
the same snap.
Fixes: #6254 (again)
Signed-off-by: Sage Weil <sage@inktank.com>
Reviewed-by: Samuel Just <sam.just@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:39:04 +0000 (15:39 -0700)]
os/LevelDBStore: handle deletion race when checking store size
This fixes the fix in
64774e5792f136df2bc78db686440fc2f3a7643f which mixed
up the return value and errno.
Fixes: #6550
Signed-off-by: Sage Weil <sage@inktank.com>
Reviewed-by: Joao Eduardo Luis <joao.luis@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:27:19 +0000 (15:27 -0700)]
test/librados/cmd: fix compile error
From commit
f0805cb61fccf9ffaa905b8477a131b4d46379fa .
Signed-off-by: Sage Weil <sage@inktank.com>
Samuel Just [Fri, 4 Oct 2013 05:00:46 +0000 (22:00 -0700)]
ReplicatedPG: remove the other backfill related flushes
Signed-off-by: Samuel Just <sam.just@inktank.com>
Samuel Just [Tue, 8 Oct 2013 02:03:23 +0000 (19:03 -0700)]
RadosModel: send racing read on write
Signed-off-by: Samuel Just <sam.just@inktank.com>
Samuel Just [Fri, 4 Oct 2013 06:20:07 +0000 (23:20 -0700)]
ReplicatedPG: block reads on an object until the write is committed
Signed-off-by: Samuel Just <sam.just@inktank.com>
Samuel Just [Tue, 15 Oct 2013 20:11:29 +0000 (13:11 -0700)]
OSD: ping tphandle during pg removal
Fixes: #6528
Signed-off-by: Samuel Just <sam.just@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:09:09 +0000 (15:09 -0700)]
Merge pull request #687 from ceph/wip-pool
mon: make 'mon {add,remove}_data_pool ...' take pool name or id
Reviewed-by: Joao Eduardo Luis <joao.luis@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:04:41 +0000 (15:04 -0700)]
Merge pull request #718 from ceph/wip-6553
rgw: fix authenticated users acl group check
Reviewed-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 22:03:50 +0000 (15:03 -0700)]
Merge pull request #723 from ceph/wip-6334
common: don't do special things for unprivileged daemons
Reviewed-by: Greg Farnum <greg@inktank.com>
Sage Weil [Tue, 15 Oct 2013 21:35:20 +0000 (14:35 -0700)]
common: don't do special things for unprivileged daemons
We generally do want an admin socket and log, and people usually run these
as root. This is more confusing than useful.
Fixes: #6334
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 21:04:24 +0000 (14:04 -0700)]
mon, osd: send leveldb log to /dev/null by default
Fixes: #5175
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 20:46:25 +0000 (13:46 -0700)]
Merge pull request #542 from ceph/wip-6122
test/librados/cmd.cc: tolerate thrashing on pg_command tests
John Wilkins [Tue, 15 Oct 2013 20:38:48 +0000 (13:38 -0700)]
doc: Update from user feedback. Needed to enable S3/Keystone.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
Alan Somers [Tue, 15 Oct 2013 20:26:13 +0000 (13:26 -0700)]
os/FileStore: fix fiemap double-free(s)
If GenericFileStoreBackend::do_fiemap returns anything other than 0, then
fiemap will not be allocated. However,
GenericFileStoreBackend::detect_features will free fiemap regardless,
triggering an assertion in tcmalloc. The attached patch will fix the bug
by only freeing fiemap when necessary.
In my case, do_fiemap returns -ENOSYS because fiemap is not implemented
on FreeBSD. However, this bug could also happen on Linux when do_fiemap
returns -ENOMEM.
Fixes: #6504
Signed-off-by: Alan Somers <asomers@gmail.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Alan Somers [Tue, 15 Oct 2013 20:06:06 +0000 (13:06 -0700)]
ceph-dencoder: select_generated() should properly validate its input
If m_list.size() == 0, then calling select_generated(0) will result in
uninitialized data being assigned to m_object, which will cause a segfault
down the road. This patch fixes that.
To Reproduce:
$ ceph-dencoder type MWatchNotify select_test 0 encode decode
Segmentation fault (core dumped)
After the patch:
$ ./ceph-dencoder type MWatchNotify select_test 0 encode decode
error: invalid id for generated object
$ echo $?
1
Fixes: #6510
Signed-off-by: Alan Somers <asomers@gmail.com>
Sage Weil [Tue, 15 Oct 2013 19:52:57 +0000 (12:52 -0700)]
vstart.sh: create dev/ automatically
Otherwise you have to explicitly create it on a new checkout.
Also mkdir -p for consistency, tho it's not needed if dev/ is already
there.
Signed-off-by: Sage Weil <sage@inktank.com>
Yehuda Sadeh [Tue, 15 Oct 2013 17:55:07 +0000 (10:55 -0700)]
rgw: change default log level
Fixes: #6554
Backport: cuttlefish, dumpling
Default log level was just too high, bring it down a bit.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Reviewed-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 19:16:26 +0000 (12:16 -0700)]
Merge pull request #720 from liewegas/wip-6521
mon/PGMonitor: set floor below which we do not warn about objects/pg
Reviewed-by: Greg Farnum <greg@inktank.com>
Sage Weil [Tue, 15 Oct 2013 18:22:16 +0000 (11:22 -0700)]
mon/PGMonitor: set floor below which we do not warn about objects/pg
If a cluster has very few objects, do not generate warnings when the
objects/pg for a pool diverges from the cluster average. This avoids
spurious errors when you have a relatively empty cluster and a lone pool
with a modest number of objects is too far off the (mostly meaningless)
cluster-wide average.
Also include a per-pool min so we ignore mostly-empty pools.
Fixes: #6521
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 17:27:56 +0000 (10:27 -0700)]
Merge pull request #706 from ceph/wip-6059
Wip 6059
Partly-reviewed-by: Greg Farnum <greg@inktank.com>
Partly-reviewed-by: Sage Weil <sage@inktank.com>
Yehuda Sadeh [Tue, 15 Oct 2013 17:20:48 +0000 (10:20 -0700)]
rgw: fix authenticated users acl group check
Fixes: #6553
Backport: bobtail, cuttlefish, dumpling
Authenticated users group acl bit was not working correctly. Check to
test whether user is anonymous was wrong.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Sage Weil [Tue, 15 Oct 2013 17:12:07 +0000 (10:12 -0700)]
Merge pull request #717 from dachary/master
mon: osd pool set syntax relaxed, modify unit tests
Reviewed-by: Sage Weil <sage@inktank.com>
Loic Dachary [Tue, 15 Oct 2013 17:03:25 +0000 (19:03 +0200)]
mon: osd pool set syntax relaxed, modify unit tests
The argument is no longer restricted to a numerical value. Another
variable was added ( hashpspool ) check that it is a valid variable.
Signed-off-by: Loic Dachary <loic@dachary.org>
Sage Weil [Tue, 15 Oct 2013 00:06:48 +0000 (17:06 -0700)]
Merge pull request #596 from ceph/wip-6147
mon: keep track of per-pool stats
Reviewed-by: Sage Weil <sage@inktank.com>
Sage Weil [Tue, 15 Oct 2013 00:06:13 +0000 (17:06 -0700)]
Merge remote-tracking branch 'gh/next'
huangjun [Tue, 15 Oct 2013 00:02:23 +0000 (17:02 -0700)]
ceph.spec.in: do not list ceph-rest-api twice; add missing cls_hello files
Reported-by: hjwsm1989@gmail.com
Signed-off-by: Sage Weil <sage@inktank.com>
Sage Weil [Mon, 14 Oct 2013 23:56:41 +0000 (16:56 -0700)]
Merge pull request #712 from ceph/wip-mon-pool-set
rework ceph osd pool set <pool> <field> <val>
Reviewed-by: Sage Weil <sage@inktank.com>
Sage Weil [Mon, 14 Oct 2013 23:54:07 +0000 (16:54 -0700)]
osd/osd_types: generalize pg_pool_t::get_flags_string()
This way the method doesn't have to be modified when new flags are added.
Signed-off-by: Sage Weil <sage@inktank.com>
Joao Eduardo Luis [Wed, 2 Oct 2013 01:06:42 +0000 (02:06 +0100)]
mon: OSDMonitor: add 'osd pool stats' command
Fixes: #6147
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Joao Eduardo Luis [Thu, 3 Oct 2013 00:09:16 +0000 (01:09 +0100)]
mon: PGMap: rework client IO rate calc and output
Create a function so we can use the same format when outputting per-pool
stats
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Joao Eduardo Luis [Thu, 3 Oct 2013 00:08:07 +0000 (01:08 +0100)]
mon: PGMap: reuse existing summary functions to output pool stats
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Joao Eduardo Luis [Mon, 14 Oct 2013 23:51:30 +0000 (00:51 +0100)]
mon: PGMap: keep track of per-pool stats deltas
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Sage Weil [Mon, 14 Oct 2013 23:48:17 +0000 (16:48 -0700)]
Merge pull request #694 from grosskur/fix-rpm-junit4
ceph.spec.in: Always depend on junit4 (fixes bug #6216)
Reviewed-by: Loic Dachary <loic@dachary.org>
Sage Weil [Mon, 14 Oct 2013 23:46:58 +0000 (16:46 -0700)]
mon: make 'mon {add,remove}_data_pool ...' take pool name or id
Take either a pool name or an id. Fix up the tests accordingly.
Signed-off-by: Sage Weil <sage@inktank.com>
Yehuda Sadeh [Mon, 14 Oct 2013 21:14:17 +0000 (14:14 -0700)]
Merge branch 'wip-rgw-quota'
Conflicts:
src/test/cli/radosgw-admin/help.t
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 4 Oct 2013 20:00:26 +0000 (13:00 -0700)]
rgw: swift update obj metadata also add generic attrs
Fixes: #6462
We were missing the generic attributes when we updated the object
metadata (operation that only exists in the swift api).
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Gregory Farnum [Mon, 14 Oct 2013 18:22:53 +0000 (11:22 -0700)]
Merge pull request #711 from ceph/wip-objecter-errors
These two patches fix several completion Contexts which are inappropriately setting the Op rval to zero.
Reviewed-by: Greg Farnum <greg@inktank.com>
Alan Somers [Tue, 8 Oct 2013 22:24:00 +0000 (15:24 -0700)]
SignalHandler: fix infinite loop on BSD systems
SignalHandler::entry shouldn't poll for POLLOUT, because it never actually
writes to the pipes in question. Polling for POLLOUT causes poll(2) to
immediately return, so the function spins the CPU and never blocks. Remove
the POLLOUT flag, unnecessarily introduced in commit
8e4a78f169eda716c7d6811cb6db5c757dc67207 when switching from select() to poll().
This fixes the problem on FreeBSD and doesn't break anything (AFAICT) on
Linux. Tested on FreeBSD 9.1 amd64 and Ubuntu Server 13.04 amd64.
Fixes: #6492
Signed-off-by: Alan Somers <asomers@gmail.com>
Reviewed-by: Greg Farnum <greg@inktank.com>
John Wilkins [Mon, 14 Oct 2013 17:31:51 +0000 (10:31 -0700)]
doc: Removed underscore for consistency.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Mon, 14 Oct 2013 17:27:52 +0000 (10:27 -0700)]
Merge pull request #713 from dachary/master
doc: disable cephx requires auth_supported = none
Yehuda Sadeh [Mon, 14 Oct 2013 17:26:49 +0000 (10:26 -0700)]
radosgw-admin: add --quota-scope param to usage
and also look at it when setting quota on a bucket.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Gregory Farnum [Mon, 14 Oct 2013 16:32:53 +0000 (09:32 -0700)]
Merge pull request #708 from ceph/wip-truncate2
Reviewed-by: Greg Farnum <greg@inktank.com>
Gregory Farnum [Mon, 14 Oct 2013 16:28:52 +0000 (09:28 -0700)]
Merge pull request #715 from ceph/wip-5025
Reviewed-by: Greg Farnum <greg@inktank.com>
Yan, Zheng [Mon, 14 Oct 2013 08:34:26 +0000 (16:34 +0800)]
mds: flock: fix F_GETLK
fixes #5025
Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
Samuel Just [Sun, 13 Oct 2013 16:47:58 +0000 (09:47 -0700)]
ReplicatedPG.h: while there cannot be a read in progress, there may be a read blocked
Signed-off-by: Samuel Just <sam.just@inktank.com>
Loic Dachary [Sun, 13 Oct 2013 09:14:14 +0000 (11:14 +0200)]
doc: disable cephx requires auth_supported = none
auth cluster required = none
auth service required = none
auth client required = none
is not enough to disable cephx if there is a
auth_supported = cephx
line in the [global] section. It will produce the following error
# ceph --id myself auth list
2013-10-13 11:05:00.368638
7f812aea3700 0 librados: client.myself authentication error (1) Operation not permitted
Error connecting to cluster: PermissionError
Changing the line to
auth_supported = none
fixes the problem.
Signed-off-by: Loic Dachary <loic@dachary.org>
Yehuda Sadeh [Sat, 12 Oct 2013 00:21:21 +0000 (17:21 -0700)]
rgw: switch out param to a pointer instead of reference
following code review
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Sat, 12 Oct 2013 00:08:06 +0000 (17:08 -0700)]
test: update cli test for radosgw-admin
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Sat, 12 Oct 2013 00:07:38 +0000 (17:07 -0700)]
radosgw-admin: clarify --max-size param
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 11 Oct 2013 23:56:46 +0000 (16:56 -0700)]
formatter: dump_bool dumps unquoted strings
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 11 Oct 2013 23:43:00 +0000 (16:43 -0700)]
rgw_quoa.{h,cc}: add copyright notice
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Fri, 11 Oct 2013 22:44:00 +0000 (15:44 -0700)]
Merge branch 'wip-6444' into next
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:08:22 +0000 (15:08 -0700)]
doc: Created new index to incorporate side-by-side deb/rpm installs.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:07:40 +0000 (15:07 -0700)]
doc: Created installation doc for Yum priorities. Ceph-specific packages need it.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:07:08 +0000 (15:07 -0700)]
doc: Created new QEMU install for RPMs with provision for Ceph-specific packages.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:06:30 +0000 (15:06 -0700)]
doc: Created new QEMU install for debian.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:06:02 +0000 (15:06 -0700)]
doc: Added new libvirt install for RPM.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:05:36 +0000 (15:05 -0700)]
doc: Created new libvirt install for debian/ubuntu.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:05:08 +0000 (15:05 -0700)]
doc: Removed Gatway from Ceph Object Storage. Added Yum repo information.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:03:34 +0000 (15:03 -0700)]
doc: Moved installation portion to the installation section.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
John Wilkins [Fri, 11 Oct 2013 22:02:38 +0000 (15:02 -0700)]
doc: Moved installation portion to the installation section.
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
Yehuda Sadeh [Fri, 11 Oct 2013 21:52:13 +0000 (14:52 -0700)]
librados: add some clarifying comments
about async pool operation handle
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Yehuda Sadeh [Thu, 3 Oct 2013 18:49:33 +0000 (11:49 -0700)]
librados: drop reference to completion in container destructor
Move the PoolAsyncCompletionImpl reference drop from
C_PoolAsync_Safe::finish() to ~C_PoolAsyncSafe(), as finish() is only
called when the async request is actually sent.
Signed-off-by: Yehuda Sadeh <yehuda@inktank.com>
Reviewed-by: Josh Durgin <josh.durgin@inktank.com>
John Wilkins [Fri, 11 Oct 2013 21:04:36 +0000 (14:04 -0700)]
doc: Fixed hyperlinks. Cleanup of old references to Chef.
fixes: #6493
Signed-off-by: John Wilkins <john.wilkins@inktank.com>
Joao Eduardo Luis [Fri, 11 Oct 2013 16:50:16 +0000 (17:50 +0100)]
osd: osd_types: Output pool's flag names during dump
Signed-off-by: Joao Eduardo Luis <joao.luis@inktank.com>
Sage Weil [Thu, 10 Oct 2013 14:10:16 +0000 (07:10 -0700)]
osdc/Objecter: clean up completion handlers that set *prval=0
If the OSD operations returns 0, these are unnecessary. If it does not,
then these are misleading. In both cases here, the OSD sets the result to
zero, so this has no client-visible change.r
Signed-off-by: Sage Weil <sage@inktank.com>