From: Samuel Thibault <samuel.thibault@ens-lyon.org>
To: Juergen Gross <jgross@suse.com>
Cc: minios-devel@lists.xenproject.org,
xen-devel@lists.xenproject.org, wei.liu2@citrix.com
Subject: Re: [Minios-devel] [PATCH 17/22] mini-os: add get_cmdline() function
Date: Wed, 24 Aug 2016 01:03:14 +0200 [thread overview]
Message-ID: <20160823230314.GQ4401@var.home> (raw)
In-Reply-To: <1471965368-6159-18-git-send-email-jgross@suse.com>
Juergen Gross, on Tue 23 Aug 2016 17:16:03 +0200, wrote:
> The command line parameters are passed in start_info structure for pv,
> but via hvm_start_info for HVMlite. Add a generic function to fill a
> local cmdline variable with the command line string.
>
> Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
> ---
> arch/x86/setup.c | 20 ++++++++++++++++++--
> include/kernel.h | 3 +++
> kernel.c | 1 +
> main.c | 5 +++--
> 4 files changed, 25 insertions(+), 4 deletions(-)
>
> diff --git a/arch/x86/setup.c b/arch/x86/setup.c
> index 6645784..13633f0 100644
> --- a/arch/x86/setup.c
> +++ b/arch/x86/setup.c
> @@ -31,6 +31,7 @@
> #include <mini-os/kernel.h>
> #include <xen/xen.h>
> #include <xen/arch-x86/cpuid.h>
> +#include <xen/arch-x86/hvm/start_info.h>
>
> /*
> * Shared page for communicating with the hypervisor.
> @@ -88,6 +89,13 @@ static inline void sse_init(void) {
>
> #ifdef CONFIG_PARAVIRT
> #define hpc_init()
> +
> +static void get_cmdline(void *p)
> +{
> + start_info_t *si = p;
> +
> + strncpy(cmdline, (char *)si->cmd_line, MAX_CMDLINE_SIZE - 1);
> +}
> #else
> static void hpc_init(void)
> {
> @@ -109,6 +117,14 @@ static void hpc_init(void)
> wrmsrl(ebx, (unsigned long)&hypercall_page);
> barrier();
> }
> +
> +static void get_cmdline(void *p)
> +{
> + struct hvm_start_info *si = p;
> +
> + if ( si->cmdline_paddr )
> + strncpy(cmdline, to_virt(si->cmdline_paddr), MAX_CMDLINE_SIZE - 1);
> +}
> #endif
>
> /*
> @@ -139,6 +155,7 @@ arch_init(void *par)
> shared_info. Use xprintk instead. */
> get_console(par);
> get_xenbus(par);
> + get_cmdline(par);
> si = par;
> memcpy(&start_info, si, sizeof(*si));
>
> @@ -153,8 +170,7 @@ arch_init(void *par)
> printk(" mod_start: 0x%lx(VA)\n", si->mod_start);
> printk(" mod_len: %lu\n", si->mod_len);
> printk(" flags: 0x%x\n", (unsigned int)si->flags);
> - printk(" cmd_line: %s\n",
> - si->cmd_line ? (const char *)si->cmd_line : "NULL");
> + printk(" cmd_line: %s\n", cmdline);
> printk(" stack: %p-%p\n", stack, stack + sizeof(stack));
>
> /* Grab the shared_info pointer and put it in a safe place. */
> diff --git a/include/kernel.h b/include/kernel.h
> index 13e3274..d37ddda 100644
> --- a/include/kernel.h
> +++ b/include/kernel.h
> @@ -1,6 +1,9 @@
> #ifndef _KERNEL_H_
> #define _KERNEL_H_
>
> +#define MAX_CMDLINE_SIZE 1024
> +extern char cmdline[MAX_CMDLINE_SIZE];
> +
> void start_kernel(void);
> void do_exit(void) __attribute__((noreturn));
> void arch_do_exit(void);
> diff --git a/kernel.c b/kernel.c
> index 437e5b4..f22997e 100644
> --- a/kernel.c
> +++ b/kernel.c
> @@ -48,6 +48,7 @@
> #include <xen/version.h>
>
> uint8_t xen_features[XENFEAT_NR_SUBMAPS * 32];
> +char cmdline[MAX_CMDLINE_SIZE];
>
> void setup_xen_features(void)
> {
> diff --git a/main.c b/main.c
> index 4ec40b5..71e3be3 100644
> --- a/main.c
> +++ b/main.c
> @@ -6,6 +6,7 @@
>
> #ifdef HAVE_LIBC
> #include <os.h>
> +#include <kernel.h>
> #include <sched.h>
> #include <console.h>
> #include <netfront.h>
> @@ -134,7 +135,7 @@ static void call_main(void *p)
> #define PARSE_ARGS_COUNT(ARGS) PARSE_ARGS(ARGS, argc++, c++, )
> #define PARSE_ARGS_STORE(ARGS) PARSE_ARGS(ARGS, argv[argc++] = c, memmove(c, c + 1, strlen(c + 1) + 1), *c++ = 0)
>
> - PARSE_ARGS_COUNT((char*)start_info.cmd_line);
> + PARSE_ARGS_COUNT(cmdline);
> #ifdef CONFIG_QEMU_XS_ARGS
> PARSE_ARGS_COUNT(domargs);
> #endif
> @@ -143,7 +144,7 @@ static void call_main(void *p)
> argv[0] = "main";
> argc = 1;
>
> - PARSE_ARGS_STORE((char*)start_info.cmd_line)
> + PARSE_ARGS_STORE(cmdline)
> #ifdef CONFIG_QEMU_XS_ARGS
> PARSE_ARGS_STORE(domargs)
> #endif
> --
> 2.6.6
>
>
> _______________________________________________
> Minios-devel mailing list
> Minios-devel@lists.xenproject.org
> https://lists.xenproject.org/cgi-bin/mailman/listinfo/minios-devel
--
Samuel
<T> csp.tar.gz: ascii text
-+- #ens-mim - vive les browsers qui prennent des initiatives à la con -+-
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next prev parent reply other threads:[~2016-08-23 23:03 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-08-23 15:15 [PATCH 00/22] mini-os: support HVMlite mode Juergen Gross
2016-08-23 15:15 ` [PATCH 01/22] mini-os: resync xen headers Juergen Gross
2016-08-23 19:44 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 02/22] mini-os: make dump_regs() work in early boot Juergen Gross
2016-08-23 19:44 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 03/22] mini-os: add CONFIG_PARAVIRT Juergen Gross
2016-08-23 19:54 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 04/22] mini-os: make some memory management related macros usable from assembler Juergen Gross
2016-08-23 19:46 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 05/22] mini-os: add boot code for HVMlite support Juergen Gross
2016-08-23 20:51 ` Samuel Thibault
2016-08-24 5:13 ` Juergen Gross
2016-08-23 15:15 ` [PATCH 06/22] mini-os: setup hypercall page for HVMlite Juergen Gross
2016-08-23 21:03 ` Samuel Thibault
2016-08-24 5:10 ` Juergen Gross
2016-08-23 15:15 ` [PATCH 07/22] mini-os: support hvm_op hypercall Juergen Gross
2016-08-23 22:00 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 08/22] mini-os: initialize trap handling for HVMlite Juergen Gross
2016-08-23 22:05 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 09/22] mini-os: support HVMlite traps Juergen Gross
2016-08-23 22:10 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 10/22] mini-os: make p2m related code depend on CONFIG_PARAVIRT Juergen Gross
2016-08-23 22:20 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 11/22] mini-os: add static page tables for virtual kernel area for HVMlite Juergen Gross
2016-08-23 22:27 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 12/22] mini-os: add x86 native page table handling Juergen Gross
2016-08-23 22:40 ` Samuel Thibault
2016-08-23 15:15 ` [PATCH 13/22] mini-os: correct wrong calculation of alloc bitmap size Juergen Gross
2016-08-23 19:49 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 14/22] mini-os: add map_frame_virt() function Juergen Gross
2016-08-23 22:42 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 15/22] mini-os: setup console interface parameters Juergen Gross
2016-08-23 22:44 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 16/22] mini-os: setup xenbus " Juergen Gross
2016-08-23 22:45 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 17/22] mini-os: add get_cmdline() function Juergen Gross
2016-08-23 23:03 ` Samuel Thibault [this message]
2016-08-23 15:16 ` [PATCH 18/22] mini-os: map shared info page for HVMlite Juergen Gross
2016-08-23 22:47 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 19/22] mini-os: remove using start_info in architecture independent code Juergen Gross
2016-08-23 22:48 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 20/22] mini-os: print start of day messages depending on domain type Juergen Gross
2016-08-23 22:51 ` Samuel Thibault
2016-08-24 5:09 ` Juergen Gross
2016-08-23 15:16 ` [PATCH 21/22] mini-os: get physical memory map Juergen Gross
2016-08-23 22:58 ` Samuel Thibault
2016-08-23 15:16 ` [PATCH 22/22] mini-os: support idle for HVMlite Juergen Gross
2016-08-23 23: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=20160823230314.GQ4401@var.home \
--to=samuel.thibault@ens-lyon.org \
--cc=jgross@suse.com \
--cc=minios-devel@lists.xenproject.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).