From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: Ross Lagerwall <ross.lagerwall@citrix.com>,
Daniel Kiper <daniel.kiper@oracle.com>,
Roger Pau Monne <roger.pau@citrix.com>,
xen-devel <xen-devel@lists.xenproject.org>,
Andrew Cooper <andrew.cooper3@citrix.com>
Subject: Re: [PATCH v3 2/3] xen/compiler: introduce a define for weak symbols
Date: Wed, 15 Aug 2018 14:33:32 -0400 [thread overview]
Message-ID: <20180815183331.GF10807@char.us.oracle.com> (raw)
In-Reply-To: <5B572CBD02000078001D742C@prv1-mh.provo.novell.com>
On Tue, Jul 24, 2018 at 07:42:21AM -0600, Jan Beulich wrote:
> >>> On 12.07.18 at 09:29, <roger.pau@citrix.com> wrote:
> > Forgot to Cc maintainers.
>
> Konrad, Ross: Ping?
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Thank you!
>
> Jan
>
> > On Wed, Jul 11, 2018 at 05:34:49PM +0200, Roger Pau Monne wrote:
> >> And replace the open-coded versions already in tree. No functional
> >> change.
> >>
> >> Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
> >> ---
> >> Cc: Jan Beulich <jbeulich@suse.com>
> >> Cc: Andrew Cooper <andrew.cooper3@citrix.com>
> >> Cc: Daniel Kiper <daniel.kiper@oracle.com>
> >> ---
> >> xen/include/xen/compiler.h | 2 ++
> >> xen/include/xen/livepatch_payload.h | 4 ++--
> >> 2 files changed, 4 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/xen/include/xen/compiler.h b/xen/include/xen/compiler.h
> >> index a7e05681c9..001f589655 100644
> >> --- a/xen/include/xen/compiler.h
> >> +++ b/xen/include/xen/compiler.h
> >> @@ -18,6 +18,8 @@
> >>
> >> #define __packed __attribute__((__packed__))
> >>
> >> +#define __weak __attribute__((weak))
> >> +
> >> #if (!defined(__clang__) && (__GNUC__ == 4) && (__GNUC_MINOR__ < 5))
> >> #define unreachable() do {} while (1)
> >> #else
> >> diff --git a/xen/include/xen/livepatch_payload.h
> > b/xen/include/xen/livepatch_payload.h
> >> index 8f38cc2c60..4a1a96d054 100644
> >> --- a/xen/include/xen/livepatch_payload.h
> >> +++ b/xen/include/xen/livepatch_payload.h
> >> @@ -24,7 +24,7 @@ typedef void livepatch_unloadcall_t(void);
> >> * executed in series by the livepatch infrastructure at patch load time.
> >> */
> >> #define LIVEPATCH_LOAD_HOOK(_fn) \
> >> - livepatch_loadcall_t *__attribute__((weak)) \
> >> + livepatch_loadcall_t *__weak \
> >> const livepatch_load_data_##_fn __section(".livepatch.hooks.load")
> > = _fn;
> >>
> >> /*
> >> @@ -33,7 +33,7 @@ typedef void livepatch_unloadcall_t(void);
> >> * Same as LOAD hook with s/load/unload/
> >> */
> >> #define LIVEPATCH_UNLOAD_HOOK(_fn) \
> >> - livepatch_unloadcall_t *__attribute__((weak)) \
> >> + livepatch_unloadcall_t *__weak \
> >> const livepatch_unload_data_##_fn
> > __section(".livepatch.hooks.unload") = _fn;
> >>
> >> #endif /* __XEN_LIVEPATCH_PAYLOAD_H__ */
> >> --
> >> 2.17.1
> >>
>
>
>
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2018-08-15 18:33 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-07-11 15:34 [PATCH v3 0/3] Fixes to build with lld 6.0.0 Roger Pau Monne
2018-07-11 15:34 ` [PATCH v3 1/3] xen/x86: replace '||' usage in the linker script Roger Pau Monne
2018-07-12 11:38 ` Daniel Kiper
2018-07-12 15:26 ` Roger Pau Monné
2018-07-13 10:17 ` Daniel Kiper
2018-07-11 15:34 ` [PATCH v3 2/3] xen/compiler: introduce a define for weak symbols Roger Pau Monne
2018-07-12 7:29 ` Roger Pau Monné
2018-07-24 13:42 ` Jan Beulich
2018-07-24 13:51 ` Daniel Kiper
2018-07-24 13:59 ` Jan Beulich
2018-07-24 14:07 ` Roger Pau Monné
2018-07-24 14:36 ` Ross Lagerwall
2018-08-15 18:33 ` Konrad Rzeszutek Wilk [this message]
2018-07-12 11:37 ` Andrew Cooper
2018-07-12 11:54 ` Jan Beulich
2018-07-11 15:34 ` [PATCH v3 3/3] xen/x86: declare the efi symbol as weak Roger Pau Monne
2018-07-12 11:35 ` Daniel Kiper
2018-07-12 11:53 ` Jan Beulich
2018-07-12 16:37 ` Roger Pau Monné
2018-07-13 10:20 ` Daniel Kiper
2018-07-11 16:15 ` [PATCH v3 0/3] Fixes to build with lld 6.0.0 Jan Beulich
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=20180815183331.GF10807@char.us.oracle.com \
--to=konrad.wilk@oracle.com \
--cc=JBeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=daniel.kiper@oracle.com \
--cc=roger.pau@citrix.com \
--cc=ross.lagerwall@citrix.com \
--cc=xen-devel@lists.xenproject.org \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).