From: Eric DeVolder <eric.devolder@oracle.com>
To: kexec@lists.infradead.org, horms@verge.net.au, andrew.cooper3@citrix.com
Cc: daniel.kiper@oracle.com, eric.devolder@oracle.com,
konrad.wilk@oracle.com
Subject: [PATCH v2 2/2] kexec-tools: Make xc_dlhandle static
Date: Tue, 23 Jan 2018 13:12:51 -0600 [thread overview]
Message-ID: <1516734771-14795-3-git-send-email-eric.devolder@oracle.com> (raw)
In-Reply-To: <1516734771-14795-1-git-send-email-eric.devolder@oracle.com>
This patch is a follow-on to commit 43d3932e "kexec-tools: Perform
run-time linking of libxenctrl.so". This patch addresses feedback
from Daniel Kiper.
This patch implements Daniel's suggestion to make the
xc_dlhandle variable static.
Signed-off-by: Eric DeVolder <eric.devolder@oracle.com>
---
v1: 23jan2018
- Implemented feedback from Daniel Kiper
v2: 23jan2018
- Implemented feedback from Daniel Kiper
- Broke patch into two
---
kexec/kexec-xen.c | 9 ++++++++-
kexec/kexec-xen.h | 9 ++++-----
2 files changed, 12 insertions(+), 6 deletions(-)
diff --git a/kexec/kexec-xen.c b/kexec/kexec-xen.c
index 75f8758..960fa16 100644
--- a/kexec/kexec-xen.c
+++ b/kexec/kexec-xen.c
@@ -15,8 +15,15 @@
#include "crashdump.h"
#ifdef CONFIG_LIBXENCTRL_DL
-void *xc_dlhandle;
+/* The handle from dlopen(), needed by dlsym(), dlclose() */
+static void *xc_dlhandle;
xc_hypercall_buffer_t XC__HYPERCALL_BUFFER_NAME(HYPERCALL_BUFFER_NULL);
+
+void *__xc_dlsym(const char *symbol)
+{
+ return dlsym(xc_dlhandle, symbol);
+}
+
xc_interface *__xc_interface_open(xentoollog_logger *logger,
xentoollog_logger *dombuild_logger,
unsigned open_flags)
diff --git a/kexec/kexec-xen.h b/kexec/kexec-xen.h
index ffb8743..8955334 100644
--- a/kexec/kexec-xen.h
+++ b/kexec/kexec-xen.h
@@ -6,9 +6,8 @@
#ifdef CONFIG_LIBXENCTRL_DL
#include <dlfcn.h>
-
-/* The handle from dlopen(), needed by dlsym(), dlclose() */
-extern void *xc_dlhandle;
+/* Lookup symbols in libxenctrl.so */
+void *__xc_dlsym(const char *symbol);
/* Wrappers around xc_interface_open/close() to insert dlopen/dlclose() */
xc_interface *__xc_interface_open(xentoollog_logger *logger,
@@ -21,13 +20,13 @@ int __xc_interface_close(xc_interface *xch);
( \
{ dtype value; \
typedef dtype (*func_t)(xc_interface *, ...); \
- func_t func = dlsym(xc_dlhandle, #name); \
+ func_t func = __xc_dlsym(#name); \
value = func(args); \
value; } \
)
#define __xc_data(dtype, name) \
( \
- { dtype *value = (dtype *)dlsym(xc_dlhandle, #name); value; } \
+ { dtype *value = (dtype *)__xc_dlsym(#name); value; } \
)
/* The wrappers around utilized xenctrl.h functions */
--
2.7.4
_______________________________________________
kexec mailing list
kexec@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/kexec
next prev parent reply other threads:[~2018-01-23 19:12 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-23 19:12 [PATCH v2 0/2] kexec-tools: Tweak run-time handling of libxenctrl.so Eric DeVolder
2018-01-23 19:12 ` [PATCH v2 1/2] kexec-tools: Call dlclose() from within __xc_interface_close() Eric DeVolder
2018-01-23 20:34 ` Daniel Kiper
2018-01-24 8:35 ` Simon Horman
2018-01-23 19:12 ` Eric DeVolder [this message]
2018-01-23 20:59 ` [PATCH v2 2/2] kexec-tools: Make xc_dlhandle static Daniel Kiper
2018-01-24 8:36 ` Simon Horman
2018-01-24 18:08 ` Eric DeVolder
2018-01-24 18:07 ` Eric DeVolder
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=1516734771-14795-3-git-send-email-eric.devolder@oracle.com \
--to=eric.devolder@oracle.com \
--cc=andrew.cooper3@citrix.com \
--cc=daniel.kiper@oracle.com \
--cc=horms@verge.net.au \
--cc=kexec@lists.infradead.org \
--cc=konrad.wilk@oracle.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 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).