[oe] [meta-oe] [PATCH] rocksdb: upgrade 6.5.2 -> 6.6.4

Khem Raj raj.khem at gmail.com
Wed Mar 18 07:50:32 UTC 2020


also x86/clang
https://errors.yoctoproject.org/Errors/Details/397161/

On Wed, Mar 18, 2020 at 12:48 AM Khem Raj <raj.khem at gmail.com> wrote:
>
> fails on mips https://errors.yoctoproject.org/Errors/Details/397160/
>
> On Tue, Mar 17, 2020 at 6:50 PM Wang Mingyu <wangmy at cn.fujitsu.com> wrote:
> >
> > 0001-Fix-build-breakage-from-lock_guard-error-6161.patch
> > removed since it is included in 6.6.4
> >
> > Signed-off-by: Wang Mingyu <wangmy at cn.fujitsu.com>
> > ---
> >  ...-breakage-from-lock_guard-error-6161.patch | 36 -------------------
> >  meta-oe/recipes-dbs/rocksdb/rocksdb_git.bb    |  7 ++--
> >  2 files changed, 3 insertions(+), 40 deletions(-)
> >  delete mode 100644 meta-oe/recipes-dbs/rocksdb/files/0001-Fix-build-breakage-from-lock_guard-error-6161.patch
> >
> > diff --git a/meta-oe/recipes-dbs/rocksdb/files/0001-Fix-build-breakage-from-lock_guard-error-6161.patch b/meta-oe/recipes-dbs/rocksdb/files/0001-Fix-build-breakage-from-lock_guard-error-6161.patch
> > deleted file mode 100644
> > index ac87d0c60..000000000
> > --- a/meta-oe/recipes-dbs/rocksdb/files/0001-Fix-build-breakage-from-lock_guard-error-6161.patch
> > +++ /dev/null
> > @@ -1,36 +0,0 @@
> > -From b626703de7ece507f360507e49d3ecb448b12e07 Mon Sep 17 00:00:00 2001
> > -From: Maysam Yabandeh <myabandeh at fb.com>
> > -Date: Thu, 12 Dec 2019 13:48:50 -0800
> > -Subject: [PATCH] Fix build breakage from lock_guard error (#6161)
> > -
> > -Summary:
> > -This change fixes a source issue that caused compile time error which breaks build for many fbcode services in that setup. The size() member function of channel is a const member, so member variables accessed within it are implicitly const as well. This caused error when clang fails to resolve to a constructor that takes std::mutex because the suitable constructor got rejected due to loss of constness for its argument. The fix is to add mutable modifier to the lock_ member of channel.
> > -Pull Request resolved: https://github.com/facebook/rocksdb/pull/6161
> > -
> > -Differential Revision: D18967685
> > -
> > -Pulled By: maysamyabandeh
> > -
> > -Upstream-Status: Backport
> > -
> > -fbshipit-source-id: 698b6a5153c3c92eeacb842c467aa28cc350d432
> > ----
> > - util/channel.h | 2 +-
> > - 1 file changed, 1 insertion(+), 1 deletion(-)
> > -
> > -diff --git a/util/channel.h b/util/channel.h
> > -index 0225482c0..a8a47680a 100644
> > ---- a/util/channel.h
> > -+++ b/util/channel.h
> > -@@ -60,7 +60,7 @@ class channel {
> > -
> > -  private:
> > -   std::condition_variable cv_;
> > --  std::mutex lock_;
> > -+  mutable std::mutex lock_;
> > -   std::queue<T> buffer_;
> > -   bool eof_;
> > - };
> > ---
> > -2.24.1
> > -
> > diff --git a/meta-oe/recipes-dbs/rocksdb/rocksdb_git.bb b/meta-oe/recipes-dbs/rocksdb/rocksdb_git.bb
> > index 713d5bb14..e82b77e14 100644
> > --- a/meta-oe/recipes-dbs/rocksdb/rocksdb_git.bb
> > +++ b/meta-oe/recipes-dbs/rocksdb/rocksdb_git.bb
> > @@ -6,12 +6,11 @@ LIC_FILES_CHKSUM = "file://LICENSE.Apache;md5=3b83ef96387f14655fc854ddc3c6bd57 \
> >                      file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> >                      file://LICENSE.leveldb;md5=fb04ff57a14f308f2eed4a9b87d45837"
> >
> > -SRCREV = "4cfbd87afd08a16df28436fb990ef6b154ee6114"
> > -SRCBRANCH = "6.5.fb"
> > -PV = "6.5.2"
> > +SRCREV = "551a110918493a19d11243f53408b97485de1411"
> > +SRCBRANCH = "6.6.fb"
> > +PV = "6.6.4"
> >
> >  SRC_URI = "git://github.com/facebook/${BPN}.git;branch=${SRCBRANCH} \
> > -           file://0001-Fix-build-breakage-from-lock_guard-error-6161.patch \
> >             file://0001-db-write_thread.cc-Initialize-state.patch \
> >            "
> >
> > --
> > 2.17.1
> >
> >
> >
> > --
> > _______________________________________________
> > Openembedded-devel mailing list
> > Openembedded-devel at lists.openembedded.org
> > http://lists.openembedded.org/mailman/listinfo/openembedded-devel


More information about the Openembedded-devel mailing list