Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mds: fix ceph-mds static build #57578

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

ascheglov
Copy link

@ascheglov ascheglov commented May 20, 2024

Fix ceph-mds build with -DENABLE_SHARED=NO

  • explicitly add Boost.Thread dependency for json_spirit
  • fix multiple definition errors for non-inline functions in mds/QuiesceDbEncoding.h

Contribution Guidelines

  • To sign and title your commits, please refer to Submitting Patches to Ceph.

  • If you are submitting a fix for a stable branch (e.g. "quincy"), please refer to Submitting Patches to Ceph - Backports for the proper workflow.

  • When filling out the below checklist, you may click boxes directly in the GitHub web UI. When entering or editing the entire PR message in the GitHub web UI editor, you may also select a checklist item by adding an x between the brackets: [x]. Spaces and capitalization matter when checking off items this way.

Checklist

  • Tracker (select at least one)
    • References tracker ticket
    • Very recent bug; references commit where it was introduced
    • New feature (ticket optional)
    • Doc update (no ticket needed)
    • Code cleanup (no ticket needed)
  • Component impact
    • Affects Dashboard, opened tracker ticket
    • Affects Orchestrator, opened tracker ticket
    • No impact that needs to be tracked
  • Documentation (select at least one)
    • Updates relevant documentation
    • No doc update is appropriate
  • Tests (select at least one)
Show available Jenkins commands
  • jenkins retest this please
  • jenkins test classic perf
  • jenkins test crimson perf
  • jenkins test signed
  • jenkins test make check
  • jenkins test make check arm64
  • jenkins test submodules
  • jenkins test dashboard
  • jenkins test dashboard cephadm
  • jenkins test api
  • jenkins test docs
  • jenkins render docs
  • jenkins test ceph-volume all
  • jenkins test ceph-volume tox
  • jenkins test windows
  • jenkins test rook e2e

Anatoly Scheglov added 2 commits May 20, 2024 23:10
BOOST_SPIRIT_THREADSAFE requires linking against Boost.Threads.
Due to complicated deps, everything links fine with ENABLE_SHARED.
However certain targets (ceph-mds) break with static linking enabled.

Signed-off-by: Anatoly Scheglov <finch@mts.ru>
src/mds/QuiesceDbEncoding.h is included in both
src/mds/MDSRankQuiesce.cc and src/msg/Message.cc
which works for .so but breaks static linking.

Signed-off-by: Anatoly Scheglov <finch@mts.ru>
@github-actions github-actions bot added build/ops cephfs Ceph File System labels May 20, 2024
@@ -15,81 +15,81 @@
#include "include/encoding.h"
#include <stdint.h>

void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)
inline void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not certain but I think conventionally it would be:

Suggested change
inline void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)
static inline void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

While static inline is possible, for the exact purpose of preventing ODR violations, inline is all that is needed here. Surely static would also fix the ODR issue, but by creating a copy of the function in every TU. After all, static is for preventing a name clash of different functions is different TUs.

Also please see this SO answer - https://stackoverflow.com/a/22103109

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Also, I think you'll want this squid as well because this QuiesceDbEncoding.h file was recently backported there. Let's create a tracker ticket?

@@ -15,81 +15,81 @@
#include "include/encoding.h"
#include <stdint.h>

void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)
inline void encode(QuiesceDbVersion const& v, bufferlist& bl, uint64_t features = 0)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
2 participants