From: Benjamin Marzinski <bmarzins@redhat.com>
To: Martin Wilck <martin.wilck@suse.com>
Cc: Christophe Varoqui <christophe.varoqui@opensvc.com>,
dm-devel@lists.linux.dev, Martin Wilck <mwilck@suse.com>
Subject: Re: [PATCH 1/2] libmpathcmd: reinstate ABI 1.0.0
Date: Wed, 14 Aug 2024 17:45:15 -0400 [thread overview]
Message-ID: <Zr0laySsCt7dfdjt@redhat.com> (raw)
In-Reply-To: <20240813094046.21644-1-mwilck@suse.com>
On Tue, Aug 13, 2024 at 11:40:45AM +0200, Martin Wilck wrote:
For the set:
Tested-by: Benjamin Marzinski <bmarzins@redhat.com>
Reviewed-by: Benjamin Marzinski <bmarzins@redhat.com>
> __mpath_connect() was part of our public ABI. Instead of removing
> it completely, define it as a weak alias of the new mpath_connect__().
> This way, programs linked against previous versions of libmpathcmd
> will continue to work.
>
> This shouldn't interfere with general symbol naming rules, as a weak
> symbol won't override a library symbol of the same name.
>
> Signed-off-by: Martin Wilck <mwilck@suse.com>
> ---
> libmpathcmd/libmpathcmd.version | 12 ++++++++----
> libmpathcmd/mpath_cmd.c | 3 +++
> 2 files changed, 11 insertions(+), 4 deletions(-)
>
> diff --git a/libmpathcmd/libmpathcmd.version b/libmpathcmd/libmpathcmd.version
> index a786c25..81bdb2b 100644
> --- a/libmpathcmd/libmpathcmd.version
> +++ b/libmpathcmd/libmpathcmd.version
> @@ -10,16 +10,20 @@
> *
> * See libmultipath.version for general policy about version numbers.
> */
> -LIBMPATHCMD_2.0.0 {
> +
> +LIBMPATHCMD_1.0.0 {
> global:
> mpath_connect;
> - mpath_connect__;
> + __mpath_connect;
> mpath_disconnect;
> mpath_process_cmd;
> mpath_recv_reply;
> mpath_recv_reply_len;
> mpath_recv_reply_data;
> mpath_send_cmd;
> -local:
> - *;
> };
> +
> +LIBMPATHCMD_1.1.0 {
> +global:
> + mpath_connect__;
> +} LIBMPATHCMD_1.0.0;
> diff --git a/libmpathcmd/mpath_cmd.c b/libmpathcmd/mpath_cmd.c
> index 1fa036c..a38e8b6 100644
> --- a/libmpathcmd/mpath_cmd.c
> +++ b/libmpathcmd/mpath_cmd.c
> @@ -133,6 +133,9 @@ int mpath_connect__(int nonblocking)
> return fd;
> }
>
> +extern int __mpath_connect(int)
> + __attribute__((weak, alias("mpath_connect__")));
> +
> /*
> * connect to a unix domain socket
> */
> --
> 2.46.0
prev parent reply other threads:[~2024-08-14 21:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-13 9:40 [PATCH 1/2] libmpathcmd: reinstate ABI 1.0.0 Martin Wilck
2024-08-13 9:40 ` [PATCH 2/2] libmpathpersist: reinstate ABI 2.1.0 Martin Wilck
2024-08-14 21:45 ` Benjamin Marzinski [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Zr0laySsCt7dfdjt@redhat.com \
--to=bmarzins@redhat.com \
--cc=christophe.varoqui@opensvc.com \
--cc=dm-devel@lists.linux.dev \
--cc=martin.wilck@suse.com \
--cc=mwilck@suse.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.