[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Minios-devel] [UNIKRAFT/LIBLUA PATCH v2 3/4] Add patches directory


  • To: Felipe Huici <felipe.huici@xxxxxxxxx>, "minios-devel@xxxxxxxxxxxxx" <minios-devel@xxxxxxxxxxxxx>
  • From: "Justin He (Arm Technology China)" <Justin.He@xxxxxxx>
  • Date: Mon, 16 Sep 2019 04:42:34 +0000
  • Accept-language: en-US, zh-CN
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=arm.com; dmarc=pass action=none header.from=arm.com; dkim=pass header.d=arm.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=OZZM2xcAma0030Wov9zHKzNpnqjQvbs5ClG/Nyj2LQw=; b=XHg27L9qy+lOD2yAQ0ghARdJQr1XwUxD7cQiHdzd2lKlAMiHh5ppiU2A0vGqcQvsgMt3UIdR3WQPc01I4JSQ0p3H2+mTK0Tu42V/qRnODItyWjOboBvxsB+EPTSIORNY6hwQdieh90nKyzUlbm+wxGOFljTlTHDPG087gY34XRcf/KwhpD2IZ33SagMsK0pWDlfLibpClMJKjkQofnTr82HaHhMn6+Ce4h1POJPT6FrPlfDHVUWTDkPGuUl9FAZd9hpLe7TtKGCVXhL3IknF5J9O1O9v4CfNhSMZSS8LJubrJmTZ+kNfJ74LfQLYjV2H+cY4UZOetU0ynREju10HIQ==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=HJJBclkQknjxz9R6kYkt6bfANiTnO6IZWHe1SiuoJqwZvyP7LJ3m4eyJdrlWjSoy214HW/biamkrTbR3KPLuDcZsyQOmq1bu0IPia679VZ83RkCN2slwdgp2kF4V54JINVvljqD47QArUZZebLR+R7UySGzEUAKjN14a3py0nU52sTr2GNTReDZ9LIRqzRuxn9gn9YX1twb58dzjvjvAZuoT2BFTVldg7Mp1m4oYUlEwxNt7lZmgCPnZS9m+e8Pe62/pLDF6VCpQiRaeB15ZuMhlLsdl2AT9tdPdqhjGmP9p8CFUHOZziVzXqqjKcu1R/bRfIxkerk85KgxabWpQIg==
  • Authentication-results: spf=temperror (sender IP is 63.35.35.123) smtp.mailfrom=arm.com; lists.xen.org; dkim=pass (signature was verified) header.d=armh.onmicrosoft.com;lists.xen.org; dmarc=none action=none header.from=arm.com;
  • Authentication-results-original: spf=none (sender IP is ) smtp.mailfrom=Justin.He@xxxxxxx;
  • Delivery-date: Mon, 16 Sep 2019 04:42:53 +0000
  • List-id: Mini-os development list <minios-devel.lists.xenproject.org>
  • Original-authentication-results: spf=none (sender IP is ) smtp.mailfrom=Justin.He@xxxxxxx;
  • Thread-index: AQHVaJiix6rt57EhKEeLa6xHHqw0FqctwLCQ
  • Thread-topic: [Minios-devel] [UNIKRAFT/LIBLUA PATCH v2 3/4] Add patches directory

Hi Felipe

LGTM
Reviewed-by: Jia He <justin.he@xxxxxxx>
> -----Original Message-----
> From: Minios-devel <minios-devel-bounces@xxxxxxxxxxxxxxxxxxxx> On Behalf
> Of Felipe Huici
> Sent: 2019年9月11日 20:01
> To: minios-devel@xxxxxxxxxxxxx
> Cc: Felipe Huici <felipe.huici@xxxxxxxxx>
> Subject: [Minios-devel] [UNIKRAFT/LIBLUA PATCH v2 3/4] Add patches
> directory
>
> Patch to rename main function and to add initrd support to main loop.
>
> Signed-off-by: Felipe Huici <felipe.huici@xxxxxxxxx>
> ---
>  patches/0001-add-initrd-rename-entry-point.patch | 42
> ++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>  create mode 100644 patches/0001-add-initrd-rename-entry-point.patch
>
> diff --git a/patches/0001-add-initrd-rename-entry-point.patch
> b/patches/0001-add-initrd-rename-entry-point.patch
> new file mode 100644
> index 0000000..135a0c4
> --- /dev/null
> +++ b/patches/0001-add-initrd-rename-entry-point.patch
> @@ -0,0 +1,42 @@
> +--- a/src/lua.c      2017-04-19 19:29:57.000000000 +0200
> ++++ b/src/lua.c      2019-09-03 13:36:09.437807890 +0200
> +@@ -6,6 +6,8 @@
> +
> + #define lua_c
> +
> ++#include <uk/plat/memory.h>
> ++
> + #include "lprefix.h"
> +
> +
> +@@ -555,6 +557,9 @@
> +   int argc = (int)lua_tointeger(L, 1);
> +   char **argv = (char **)lua_touserdata(L, 2);
> +   int script;
> ++  struct ukplat_memregion_desc img;
> ++  char *cstr;
> ++
> +   int args = collectargs(argv, &script);
> +   luaL_checkversion(L);  /* check that interpreter has correct version */
> +   if (argv[0] && argv[0][0]) progname = argv[0];
> +@@ -581,6 +586,11 @@
> +     return 0;
> +   if (args & has_i)  /* -i option? */
> +     doREPL(L);  /* do read-eval-print loop */
> ++  /* see if script is available from initrd */
> ++  else if (ukplat_memregion_find_initrd0(&img) >= 0) {
> ++    cstr = (char *)img.base;
> ++    dostring(L, cstr, "initrd");
> ++  }
> +   else if (script == argc && !(args & (has_e | has_v))) {  /* no arguments?
> */
> +     if (lua_stdin_is_tty()) {  /* running in interactive mode? */
> +       print_version();
> +@@ -593,7 +603,7 @@
> + }
> +
> +
> +-int main (int argc, char **argv) {
> ++int lua_main (int argc, char **argv) {
> +   int status, result;
> +   lua_State *L = luaL_newstate();  /* create state */
> +   if (L == NULL) {
> --
> 2.11.0
>
>
> _______________________________________________
> Minios-devel mailing list
> Minios-devel@xxxxxxxxxxxxxxxxxxxx
> https://lists.xenproject.org/mailman/listinfo/minios-devel
IMPORTANT NOTICE: The contents of this email and any attachments are 
confidential and may also be privileged. If you are not the intended recipient, 
please notify the sender immediately and do not disclose the contents to any 
other person, use it for any purpose, or store or copy the information in any 
medium. Thank you.
_______________________________________________
Minios-devel mailing list
Minios-devel@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/mailman/listinfo/minios-devel

 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.