From: Bruno Alvisio <bruno.alvisio@gmail.com>
To: minios-devel@lists.xenproject.org, xen-devel@lists.xenproject.org
Cc: jgross@suse.com, samuel.thibault@ens-lyon.org,
wei.liu2@citrix.com, Bruno Alvisio <bruno.alvisio@gmail.com>
Subject: [PATCH RFC 11/16] Save/Restore Support: Add suspend/restore support for console
Date: Tue, 19 Dec 2017 15:42:06 -0800 [thread overview]
Message-ID: <1513726931-7516-12-git-send-email-bruno.alvisio@gmail.com> (raw)
In-Reply-To: <1513726931-7516-1-git-send-email-bruno.alvisio@gmail.com>
Signed-off-by: Bruno Alvisio <bruno.alvisio@gmail.com>
---
console/console.c | 15 ++++++++++++++-
console/xenbus.c | 3 +--
console/xencons_ring.c | 41 +++++++++++++++++++++++++++++++----------
include/console.h | 6 +++++-
kernel.c | 4 ++++
lib/sys.c | 2 +-
6 files changed, 56 insertions(+), 15 deletions(-)
diff --git a/console/console.c b/console/console.c
index 2e04552..9814506 100644
--- a/console/console.c
+++ b/console/console.c
@@ -52,6 +52,7 @@
/* If console not initialised the printk will be sent to xen serial line
NOTE: you need to enable verbose in xen/Rules.mk for it to work. */
+static struct consfront_dev* xen_console = NULL;
static int console_initialised = 0;
__attribute__((weak)) void console_input(char * buf, unsigned len)
@@ -162,8 +163,20 @@ void xprintk(const char *fmt, ...)
void init_console(void)
{
printk("Initialising console ... ");
- xencons_ring_init();
+ xen_console = xencons_ring_init();
console_initialised = 1;
/* This is also required to notify the daemon */
printk("done.\n");
}
+
+void suspend_console(void)
+{
+ console_initialised = 0;
+ xencons_ring_fini(xen_console);
+}
+
+void resume_console(void)
+{
+ xencons_ring_resume(xen_console);
+ console_initialised = 1;
+}
\ No newline at end of file
diff --git a/console/xenbus.c b/console/xenbus.c
index 1c9a590..654b469 100644
--- a/console/xenbus.c
+++ b/console/xenbus.c
@@ -188,8 +188,7 @@ error:
return NULL;
}
-void fini_console(struct consfront_dev *dev)
+void fini_consfront(struct consfront_dev *dev)
{
if (dev) free_consfront(dev);
}
-
diff --git a/console/xencons_ring.c b/console/xencons_ring.c
index dd64a41..1df8304 100644
--- a/console/xencons_ring.c
+++ b/console/xencons_ring.c
@@ -19,6 +19,8 @@ DECLARE_WAIT_QUEUE_HEAD(console_queue);
static struct xencons_interface *console_ring;
uint32_t console_evtchn;
+static struct consfront_dev* resume_xen_console(struct consfront_dev* dev);
+
#ifdef CONFIG_PARAVIRT
void get_console(void *p)
{
@@ -32,10 +34,12 @@ void get_console(void *p)
{
uint64_t v = -1;
- hvm_get_parameter(HVM_PARAM_CONSOLE_EVTCHN, &v);
+ if (hvm_get_parameter(HVM_PARAM_CONSOLE_EVTCHN, &v))
+ BUG();
console_evtchn = v;
- hvm_get_parameter(HVM_PARAM_CONSOLE_PFN, &v);
+ if (hvm_get_parameter(HVM_PARAM_CONSOLE_PFN, &v))
+ BUG();
console_ring = (struct xencons_interface *)map_frame_virt(v);
}
#endif
@@ -89,9 +93,7 @@ int xencons_ring_send(struct consfront_dev *dev, const char *data, unsigned len)
notify_daemon(dev);
return sent;
-}
-
-
+}
void console_handle_input(evtchn_port_t port, struct pt_regs *regs, void *data)
{
@@ -177,7 +179,6 @@ int xencons_ring_recv(struct consfront_dev *dev, char *data, unsigned len)
struct consfront_dev *xencons_ring_init(void)
{
- int err;
struct consfront_dev *dev;
if (!console_evtchn)
@@ -193,16 +194,24 @@ struct consfront_dev *xencons_ring_init(void)
#ifdef HAVE_LIBC
dev->fd = -1;
#endif
+
+ return resume_xen_console(dev);
+}
+
+static struct consfront_dev* resume_xen_console(struct consfront_dev* dev)
+{
+ int err;
+
dev->evtchn = console_evtchn;
dev->ring = xencons_interface();
err = bind_evtchn(dev->evtchn, console_handle_input, dev);
if (err <= 0) {
printk("XEN console request chn bind failed %i\n", err);
- free(dev);
+ free(dev);
return NULL;
}
- unmask_evtchn(dev->evtchn);
+ unmask_evtchn(dev->evtchn);
/* In case we have in-flight data after save/restore... */
notify_daemon(dev);
@@ -210,8 +219,20 @@ struct consfront_dev *xencons_ring_init(void)
return dev;
}
-void xencons_resume(void)
+void xencons_ring_fini(struct consfront_dev* dev)
{
- (void)xencons_ring_init();
+ if (dev)
+ mask_evtchn(dev->evtchn);
}
+void xencons_ring_resume(struct consfront_dev* dev)
+{
+ if (dev) {
+#if CONFIG_PARAVIRT
+ get_console(&start_info);
+#else
+ get_console(0);
+#endif
+ resume_xen_console(dev);
+ }
+}
diff --git a/include/console.h b/include/console.h
index 539cccd..0d7bf07 100644
--- a/include/console.h
+++ b/include/console.h
@@ -78,11 +78,15 @@ void xencons_tx(void);
void get_console(void *p);
void init_console(void);
void console_print(struct consfront_dev *dev, char *data, int length);
-void fini_console(struct consfront_dev *dev);
+void fini_consfront(struct consfront_dev *dev);
+void suspend_console(void);
+void resume_console(void);
/* Low level functions defined in xencons_ring.c */
extern struct wait_queue_head console_queue;
struct consfront_dev *xencons_ring_init(void);
+void xencons_ring_fini(struct consfront_dev* dev);
+void xencons_ring_resume(struct consfront_dev* dev);
struct consfront_dev *init_consfront(char *_nodename);
int xencons_ring_send(struct consfront_dev *dev, const char *data, unsigned len);
int xencons_ring_send_no_notify(struct consfront_dev *dev, const char *data, unsigned len);
diff --git a/kernel.c b/kernel.c
index a16b1ba..fd1c4c5 100644
--- a/kernel.c
+++ b/kernel.c
@@ -122,10 +122,14 @@ void pre_suspend(void)
local_irq_disable();
suspend_time();
+
+ suspend_console();
}
void post_suspend(int canceled)
{
+ resume_console();
+
resume_time();
local_irq_enable();
diff --git a/lib/sys.c b/lib/sys.c
index 23dc2a5..da434fc 100644
--- a/lib/sys.c
+++ b/lib/sys.c
@@ -487,7 +487,7 @@ int close(int fd)
#ifdef CONFIG_CONSFRONT
case FTYPE_SAVEFILE:
case FTYPE_CONSOLE:
- fini_console(files[fd].cons.dev);
+ fini_consfront(files[fd].cons.dev);
files[fd].type = FTYPE_NONE;
return 0;
#endif
--
2.3.2 (Apple Git-55)
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2017-12-19 23:44 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-12-19 23:41 [PATCH RFC 00/16] Save/Restore Support for mini-OS PVH Bruno Alvisio
2017-12-19 23:41 ` [PATCH RFC 01/16] Save/Restore Support: Refactor HYPERVISOR_suspend hypercall Bruno Alvisio
2017-12-19 23:51 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:41 ` [PATCH RFC 02/16] Save/Restore Support: Refactor trap_init() and setup vector callbacks Bruno Alvisio
2017-12-19 23:51 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:41 ` [PATCH RFC 03/16] Save/Restore Support: Declare kernel and arch pre/post suspend functions Bruno Alvisio
2017-12-19 23:52 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:41 ` [PATCH RFC 04/16] Save/Restore Support: Add xenbus_release_wait_for_watch Bruno Alvisio
2017-12-20 0:14 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 05/16] Save/Restore Support: Add kernel shutdown logic to shutdown.c Bruno Alvisio
2017-12-20 0:16 ` [Minios-devel] " Samuel Thibault
2017-12-21 22:49 ` Konrad Rzeszutek Wilk
2017-12-19 23:42 ` [PATCH RFC 06/16] Save/Restore Support: Moved shutdown thread " Bruno Alvisio
2017-12-19 23:42 ` [PATCH RFC 07/16] Save/Restore Support: Add unmap_shared_info Bruno Alvisio
2017-12-20 0:23 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 08/16] Save/Restore Support: Add arch_mm_pre|post_suspend Bruno Alvisio
2017-12-20 0:24 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 09/16] Save/Restore Support: Disable/enable IRQs during suspend/restore Bruno Alvisio
2017-12-20 0:25 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 10/16] Save/Restore Support: Add suspend/resume support for timers Bruno Alvisio
2017-12-20 0:26 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` Bruno Alvisio [this message]
2017-12-19 23:42 ` [PATCH RFC 12/16] Save/Restore Support: Add support for suspend/restore events Bruno Alvisio
2017-12-20 0:37 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 13/16] Save/Restore Support: Add suspend/restore support for Grant Tables Bruno Alvisio
2017-12-20 0:40 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 14/16] Save/Restore Support: Add suspend/restore support for xenbus Bruno Alvisio
2017-12-20 0:43 ` [Minios-devel] " Samuel Thibault
2017-12-19 23:42 ` [PATCH RFC 15/16] Save/Restore Support: Add suspend/restore support for netfront Bruno Alvisio
2017-12-19 23:42 ` [PATCH RFC 16/16] Save/Restore Support: Implement code for arch suspend/resume Bruno Alvisio
2017-12-20 0:19 ` [Minios-devel] [PATCH RFC 00/16] Save/Restore Support for mini-OS PVH Samuel Thibault
2017-12-20 0:37 ` Samuel Thibault
2017-12-20 0:57 ` Samuel Thibault
2017-12-20 1:01 ` Samuel Thibault
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=1513726931-7516-12-git-send-email-bruno.alvisio@gmail.com \
--to=bruno.alvisio@gmail.com \
--cc=jgross@suse.com \
--cc=minios-devel@lists.xenproject.org \
--cc=samuel.thibault@ens-lyon.org \
--cc=wei.liu2@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).