]>
git.apps.os.sepia.ceph.com Git - ceph.git/log
Xinze Chi [Fri, 6 Nov 2015 13:45:18 +0000 (21:45 +0800)]
tests: fix test case using new api
Signed-off-by: Xinze Chi <xinze@xsky.com>
Xinze Chi [Fri, 6 Nov 2015 13:44:38 +0000 (21:44 +0800)]
os: write file journal optimezation
Currently, there is single write thread for file journal, so it would be bottleneck.
It is important to keep logic of the journal write thread simple. According to the
implementation of transaction encoding, it is almost impossible that the write
bufferlist would be align. So write journal would call rebuild_aligned almost every time.
Because of the memory fragmentation, the bufferlist crc and rebuild would be bottleneck.
My implementation would move the complex logic out of journal write thread.
Signed-off-by: Xinze Chi <xinze@xsky.com>
Reviewed-by: Haomai Wang <haomai@xsky.com>
Kefu Chai [Thu, 29 Oct 2015 08:31:51 +0000 (16:31 +0800)]
Merge pull request #6358 from dx9/wip-12406-cmake-arch-detection
cmake: Use uname instead of arch.
Reviewed-by: Kefu Chai <kchai@redhat.com>
Gregory Farnum [Thu, 29 Oct 2015 06:12:01 +0000 (23:12 -0700)]
Merge pull request #6310 from dx9/wip-12406-test-libcephfs-flock
test/libcephfs/flock: add sys/file.h include for flock operations
Reviewed-by: Greg Farnum <gfarnum@redhat.com>
Kefu Chai [Thu, 29 Oct 2015 05:40:38 +0000 (13:40 +0800)]
Merge pull request #6377 from xiexingguo/wip-xxg-13597
FileStore: potential memory leak if _fgetattrs fails
Reviewed-by: Kefu Chai <kchai@redhat.com>
Sage Weil [Thu, 29 Oct 2015 05:00:54 +0000 (01:00 -0400)]
Merge pull request #6414 from dzafman/wip-13625
messages/MOSDOp: Cast in assert to eliminate warnings
Reviewed-by: Sage Weil <sage@redhat.com>
Loic Dachary [Thu, 29 Oct 2015 04:38:29 +0000 (13:38 +0900)]
Merge pull request #6418 from tchaikov/wip-fix-ceph-monstore-update-crush
tools: ceph-monstore-update-crush: add "--test" when testing crushmap
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Kefu Chai [Tue, 27 Oct 2015 02:54:30 +0000 (10:54 +0800)]
tools: ceph-monstore-update-crush: add "--test" to crushtool
in addition to testing the references to unknown name/type, we should
perform necessary test the crushmap when looking for a good crushmap
Signed-off-by: Kefu Chai <kchai@redhat.com>
Orit Wasserman [Wed, 28 Oct 2015 16:13:41 +0000 (17:13 +0100)]
Merge pull request #5875 from Aran85/parsemetadatakey
rgw:modify the conditional statement in parse_metadata_key method.
Loic Dachary [Wed, 28 Oct 2015 16:04:43 +0000 (01:04 +0900)]
Merge pull request #6409 from dachary/wip-mailmap
mailmap: Xie Xingguo affiliation
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Yehuda Sadeh [Wed, 28 Oct 2015 15:33:43 +0000 (08:33 -0700)]
Merge pull request #5879 from H3C/wip-rgw-bugfix1
rgw/rgw_admin: Checking the legality of the parameters
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
David Zafman [Wed, 28 Oct 2015 04:17:15 +0000 (21:17 -0700)]
messages/MOSDOp: Cast in assert to eliminate warnings
Fixes: #13625
Caused by
0bf2a79e
Signed-off-by: David Zafman <dzafman@redhat.com>
Yehuda Sadeh [Wed, 28 Oct 2015 14:32:20 +0000 (07:32 -0700)]
Merge pull request #5262 from jmunhoz/wip-12352
rgw: remove extra check in RGWGetObj::execute
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Loic Dachary [Wed, 28 Oct 2015 09:06:08 +0000 (18:06 +0900)]
mailmap: Xie Xingguo affiliation
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Wed, 28 Oct 2015 06:51:12 +0000 (15:51 +0900)]
Merge pull request #6320 from JiYou/mything
Fix examples/librados/Makefile error.
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Wed, 28 Oct 2015 06:16:56 +0000 (15:16 +0900)]
Merge pull request #6381 from xiexingguo/xxg-wip-fs-cleanup
FileStore: remove unused local variable 'handle'
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Wed, 28 Oct 2015 06:14:18 +0000 (15:14 +0900)]
Merge pull request #6384 from ktdreyer/wip-doc-download-gpg-key
doc: download GPG key from download.ceph.com
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Sage Weil [Wed, 28 Oct 2015 00:57:01 +0000 (20:57 -0400)]
Merge pull request #6246 from liewegas/wip-13477
crush: validate bucket id before indexing buckets array
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Sage Weil [Tue, 13 Oct 2015 13:55:01 +0000 (09:55 -0400)]
crush/mapper: ensure take bucket value is valid
Ensure that the take argument is a valid bucket ID before indexing the
buckets array.
Signed-off-by: Sage Weil <sage@redhat.com>
Sage Weil [Wed, 28 Oct 2015 00:55:26 +0000 (20:55 -0400)]
crush/mapper: ensure bucket id is valid before indexing buckets array
We were indexing the buckets array without verifying the index was within
the [0,max_buckets) range. This could happen because a multistep rule
does not have enough buckets and has CRUSH_ITEM_NONE
for an intermediate result, which would feed in CRUSH_ITEM_NONE and
make us crash.
Fixes: #13477
Signed-off-by: Sage Weil <sage@redhat.com>
Yehuda Sadeh [Tue, 27 Oct 2015 20:35:28 +0000 (13:35 -0700)]
Merge pull request #6239 from zhouyuan/swift_testing_access
vstart.sh: grant full access to Swift testing account
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Yehuda Sadeh [Tue, 27 Oct 2015 20:33:08 +0000 (13:33 -0700)]
Merge pull request #6303 from dx9/wip-12406-use-freopen
test_rgw_admin: Use freopen for output redirection.
Reviewed-by: Yehuda Sadeh <yehuda@redhat.com>
Loic Dachary [Tue, 27 Oct 2015 08:40:29 +0000 (17:40 +0900)]
Merge pull request #6387 from dachary/wip-test-ports
tests: port uniqueness reminder
Reviewed-by: Vicente Cheng <freeze.bilsted@gmail.com>
Reviewed-by: Kefu Chai <kchai@redhat.com>
Loic Dachary [Tue, 27 Oct 2015 03:48:23 +0000 (12:48 +0900)]
tests: port uniqueness reminder
When copy/pasting a tests, it is easy to forget (or not know) that the
port used must be unique to allow for multiple tests to run in
parallel (make -j8). Add a reminder next to each port.
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Tue, 27 Oct 2015 02:52:25 +0000 (11:52 +0900)]
Merge pull request #6379 from tchaikov/wip-13554
rocksdb: remove rdb source files from dist tarball
Reviewed-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Tue, 27 Oct 2015 02:09:47 +0000 (11:09 +0900)]
Merge pull request #6258 from swamireddy/wip-v910-mailmap
mailmap updates
Reviewed-by: Loic Dachary <ldachary@redhat.com>
xiexingguo [Mon, 26 Oct 2015 13:45:15 +0000 (21:45 +0800)]
FileStore: remove unused local variable 'handle'
Remove unused local variable 'handle' in FileStore::collection_empty
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
xiexingguo [Mon, 26 Oct 2015 10:38:01 +0000 (18:38 +0800)]
FileStore: potential memory leak if _fgetattrs fails
Memory leak happens if _fgetattrs encounters some error and simply returns.
Fixes: #13597
Signed-off-by: xie xingguo <xie.xingguo@zte.com.cn>
Ken Dreyer [Mon, 26 Oct 2015 19:18:19 +0000 (13:18 -0600)]
doc: download GPG key from download.ceph.com
Fixes: #13603
Signed-off-by: Ken Dreyer <kdreyer@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:31:46 +0000 (08:31 -0400)]
doc/release-notes: v0.94.5
Signed-off-by: Sage Weil <sage@redhat.com>
Loic Dachary [Fri, 23 Oct 2015 18:52:22 +0000 (20:52 +0200)]
release-notes: draft v0.94.5 release notes
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Kefu Chai [Mon, 26 Oct 2015 11:44:03 +0000 (04:44 -0700)]
rocksdb: remove rdb source files from dist tarball
rdb is based on NodeJS, and we don't build rdb to use rocksdb as
a keyvaluestore backend.
Fixes: #13554
Signed-off-by: Kefu Chai <kchai@redhat.com>
Yuan Zhou [Tue, 13 Oct 2015 02:58:40 +0000 (10:58 +0800)]
vstart.sh: grant full access to Swift testing account
This makes Swift testing more convinent.
Signed-off-by: Yuan Zhou <yuan.zhou@intel.com>
Kefu Chai [Mon, 26 Oct 2015 07:15:24 +0000 (15:15 +0800)]
Merge pull request #6375 from david-z/wip-fix-kv-stripe-size-conf
KeyValueStore: fix the name's typo of keyvaluestore_default_strip_size
Reviewed-by: Kefu Chai <kchai@redhat.com>
Zhi Zhang [Mon, 26 Oct 2015 07:04:55 +0000 (15:04 +0800)]
KeyValueStore: fix the name's typo of keyvaluestore_default_strip_size
Signed-off-by: Zhi Zhang <zhangz.david@outlook.com>
Sage Weil [Sun, 25 Oct 2015 20:09:26 +0000 (16:09 -0400)]
Merge pull request #6224 from vmcloud/wip-13443
ceph-fuse: fix log restart timing after fork
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sun, 25 Oct 2015 16:09:05 +0000 (12:09 -0400)]
Merge pull request #6305 from majianpeng/optimize-get-object-context
osd: optimize ReplicatedPG::get_object_context() SnapContext setup
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sun, 25 Oct 2015 16:06:43 +0000 (12:06 -0400)]
Merge pull request #6244 from majianpeng/filestore-xattr
os/FileStore: avoid removexattr call on chain_setxattr when value is known to be small
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sun, 25 Oct 2015 16:04:17 +0000 (12:04 -0400)]
Merge pull request #6299 from H3C/wip-yrf-malloc
osd/tools: avoid unnecessary new and delete ObjectStore::Transaction calls
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sun, 25 Oct 2015 16:01:28 +0000 (12:01 -0400)]
Merge pull request #6306 from H3C/wip-mon-auth
mon: should not set isvalid = true when cephx_verify_authorizer return false
Reviewed-by: Kefu Chai <kchai@redhat.com>
Sage Weil [Sun, 25 Oct 2015 15:50:20 +0000 (11:50 -0400)]
Revert "Speed optimizations. Merged 3 writes into 1."
This reverts commit
91497e46331b4755b9ff23b7ba11e631d64413ac .
Oops, this is injecting \0 in the log output.
Signed-off-by: Sage Weil <sage@redhat.com>
Sage Weil [Sun, 25 Oct 2015 15:38:55 +0000 (11:38 -0400)]
Merge pull request #6307 from aclamk/wip-faster-log
log/Log.cc: speed optimizations. Merged 3 writes into 1.
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:31:16 +0000 (08:31 -0400)]
Merge pull request #6326 from liewegas/wip-cache-pin-unpin
osd: add pin/unpin support to cache tier
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:30:47 +0000 (08:30 -0400)]
Merge pull request #6240 from xiexingguo/xxg-wip-13471
osd: primary and up_primary when building a new past_interval
Reviewed-by: Kefu Chai <kchai@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:30:12 +0000 (08:30 -0400)]
Merge pull request #5954 from rohanmars/wip-rhel59-fixes
rhel 5.9 librados compile fix, moved blkid to RBD check/compilation
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:29:58 +0000 (08:29 -0400)]
Merge pull request #6210 from dx9/wip-12406-alpine-string-macro
assert: __STRING macro is not defined by musl libc.
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:29:48 +0000 (08:29 -0400)]
Merge pull request #6243 from free-luowei/master
Init crush_location in Objecter from config file.
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:29:16 +0000 (08:29 -0400)]
Merge pull request #6252 from dx9/wip-12406-mallinfo
common/MemoryModel: Added explicit feature check for mallinfo().
Reviewed-by: Sage Weil <sage@redhat.com>
Sage Weil [Sat, 24 Oct 2015 12:28:51 +0000 (08:28 -0400)]
Merge pull request #6277 from branch-predictor/bp-pgload-rm-interim-set
osd: drop the interim set from load_pgs()
Reviewed-by: Sage Weil <sage@redhat.com>
Xiaoxi Chen [Fri, 23 Oct 2015 15:30:58 +0000 (23:30 +0800)]
Merge pull request #6333 from xiexingguo/xxg-wip-13552
LFNIndex: remove redundant local variable 'obj'.
Kefu Chai [Fri, 23 Oct 2015 15:05:58 +0000 (23:05 +0800)]
Merge pull request #6360 from xiexingguo/xxg-wip-13575
ReplicatedPG: remove unused local variables
Reviewed-by: Kefu Chai <kchai@redhat.com>
Loic Dachary [Fri, 23 Oct 2015 11:56:43 +0000 (13:56 +0200)]
Merge pull request #6342 from dachary/wip-ceph-disk
tests: ceph-disk workunit uses configobj
xiexingguo [Fri, 23 Oct 2015 07:54:27 +0000 (15:54 +0800)]
ReplicatedPG: remove unused local variables
remove some unused local variables.
Fixes: #13575
Signed-off-by: xie.xingguo@zte.com.cn
Loic Dachary [Wed, 21 Oct 2015 22:21:49 +0000 (00:21 +0200)]
tests: ceph-disk workunit uses configobj
Instead of using augtool to modify the configuration file, use
configobj. It is also used by the install teuthology task. The .ini
lens (puppet lens really) is unable to read ini files created by
configobj.
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Loic Dachary [Wed, 21 Oct 2015 23:48:31 +0000 (01:48 +0200)]
tests: ceph-disk workunit uses the ceph task
The ceph-disk workunit deploy keys that are not deployed by default by
the ceph teuthology task.
The OSD created by the ceph task are removed from the default
bucket (via osd rm) so they do not interfere with the tests.
Signed-off-by: Loic Dachary <ldachary@redhat.com>
Sage Weil [Thu, 22 Oct 2015 20:18:15 +0000 (16:18 -0400)]
Merge pull request #6355 from ritz303/wip-doc-12784
doc: Updated the OS recommendations for newer Ceph releases
Reviewed-by: Sage Weil <sage@redhat.com>
John Coyle [Thu, 22 Oct 2015 20:16:15 +0000 (16:16 -0400)]
cmake: Use uname instead of arch. arch is deprecated in linux-utils and coreutils does not install it by default.
Signed-off-by: John Coyle <dx9err@gmail.com>
ritz303 [Thu, 22 Oct 2015 20:10:19 +0000 (15:10 -0500)]
doc: Removed the NOTE section about non-LTS supported distributions
Fixes: 12784
Signed-off-by: ritz303 <ritz_303@yahoo.com>
Sage Weil [Thu, 22 Oct 2015 17:51:55 +0000 (13:51 -0400)]
Merge pull request #6346 from guangyy/rgw-core
rgw: support core file limit for radosgw daemon
Reviewed-by: Sage Weil <sage@redhat.com>
ritz303 [Thu, 22 Oct 2015 16:20:49 +0000 (11:20 -0500)]
doc: Updated the OS recommendations for newer Ceph releases
Fixes: 12784
Signed-off-by: ritz303 <ritz_303@yahoo.com>
Kefu Chai [Thu, 22 Oct 2015 10:04:29 +0000 (18:04 +0800)]
Merge pull request #6343 from dx9/wip-12406-xattr
os/chain_xattr: On linux use linux/limits.h for XATTR_NAME_MAX.
Reviewed-by: Kefu Chai <kchai@redhat.com>
Guang Yang [Thu, 22 Oct 2015 05:33:08 +0000 (05:33 +0000)]
rgw: support core file limit for radosgw daemon
When calling daemon function, the default is to disable the core dump
by setting the core file limit as 0, we provide a configuration in
ceph.conf to explicity configure the core file size.
Signed-off-by: Guang Yang <yguang@yahoo-inc.com>
Swami Reddy [Wed, 21 Oct 2015 12:45:14 +0000 (18:15 +0530)]
mailmap: Jason Dillaman name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Wed, 21 Oct 2015 12:43:22 +0000 (18:13 +0530)]
mailmap: Joao Eduardo Luis name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Wed, 21 Oct 2015 10:59:19 +0000 (16:29 +0530)]
mailmap: Min Chen name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Wed, 21 Oct 2015 10:55:31 +0000 (16:25 +0530)]
mailmap: James Page name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Wed, 21 Oct 2015 10:46:26 +0000 (16:16 +0530)]
mailmap: Ken Dreyer name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:33:33 +0000 (15:03 +0530)]
mailmap: tobe affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:32:23 +0000 (15:02 +0530)]
mailmap: Ruben Kerkhof affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:31:10 +0000 (15:01 +0530)]
mailmap: Brian Andrus affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:29:44 +0000 (14:59 +0530)]
mailmap: Kadu Ribeiro affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:28:16 +0000 (14:58 +0530)]
mailmap: Jeff Epstein affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:27:05 +0000 (14:57 +0530)]
mailmap: Jeff Weber affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:24:29 +0000 (14:54 +0530)]
mailmap: ritz303 affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:22:26 +0000 (14:52 +0530)]
mailmap: chenji affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:20:51 +0000 (14:50 +0530)]
mailmap: Burkhard Linke affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:13:24 +0000 (14:43 +0530)]
mailmap: Sylvain Baubeau affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:12:08 +0000 (14:42 +0530)]
mailmap: Siddharth Sharma affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:10:32 +0000 (14:40 +0530)]
mailmap: Milan Broz affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:09:00 +0000 (14:39 +0530)]
mailmap: Matt Benjamin affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Reviewed-by: Matt Benjamin <mbenjamin@redhat.com>
Swami Reddy [Thu, 15 Oct 2015 09:05:56 +0000 (14:35 +0530)]
mailmap: Casey Bodley affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:04:10 +0000 (14:34 +0530)]
mailmap: Ali Maredia affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:02:52 +0000 (14:32 +0530)]
mailmap: Brad Hubbard affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 09:00:43 +0000 (14:30 +0530)]
mailmap: Juan A. Suarez Romero affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:57:22 +0000 (14:27 +0530)]
mailmap: Xiaowei Chen name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:40:51 +0000 (14:10 +0530)]
mailmap: Wei Qian affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:39:11 +0000 (14:09 +0530)]
mailmap: Li Peng affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:37:29 +0000 (14:07 +0530)]
mailmap: Robin H. Johnson affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Reviewed-by: Robin Johnson <robin.johnson@dreamhost.com>
Swami Reddy [Thu, 15 Oct 2015 08:35:24 +0000 (14:05 +0530)]
mailmap: Ren Huanwen affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:32:36 +0000 (14:02 +0530)]
mailmap: Yehua Chen name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>:
Swami Reddy [Thu, 15 Oct 2015 08:21:57 +0000 (13:51 +0530)]
mailmap: Xinze Chi name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:19:10 +0000 (13:49 +0530)]
mailmap: Xie Xiexingguo affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 08:12:39 +0000 (13:42 +0530)]
mailmap: Xie Rui name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 07:23:33 +0000 (12:53 +0530)]
mailmap: Sangdi Xu name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Reviewed-by: Xusangdi <xu.sangdi@h3c.com>
Swami Reddy [Thu, 15 Oct 2015 07:20:45 +0000 (12:50 +0530)]
mailmap: Radoslaw Zarzynski name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Swami Reddy [Thu, 15 Oct 2015 07:18:10 +0000 (12:48 +0530)]
mailmap: Haomai Wang name normalization
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>
Reviewed-by: Haomai Wang <haomaiwang@gmail.com>
John Coyle [Thu, 22 Oct 2015 00:08:43 +0000 (20:08 -0400)]
os/chain_xattr: On linux use linux/limits.h for XATTR_NAME_MAX.
Signed-off-by: John Coyle <dx9err@gmail.com>
xiexingguo [Wed, 21 Oct 2015 06:08:04 +0000 (14:08 +0800)]
LFNIndex: remove redundant local variable 'obj'.
local variable 'obj' in LFNIndex::list_subdirs() never used and shall be removed.
Fixes: #13552
Signed-off-by: xie.xingguo@zte.com.cn
Javier M. Mellid [Wed, 21 Oct 2015 14:04:14 +0000 (16:04 +0200)]
rgw: add explicit success/error paths in RGWGetObj::execute()
Fixes: #12352
Signed-off-by: Javier M. Mellid <jmunhoz@igalia.com>
Swami Reddy [Thu, 15 Oct 2015 07:15:27 +0000 (12:45 +0530)]
mailmap: Dennis Schafroth affiliation
Signed-off-by: M Ranga Swami Reddy <swamireddy@gmail.com>