From: Sukadev Bhattiprolu <[email protected]>
Date: Thu, 4 Mar 2010 17:46:31 -0800
Subject: [PATCH 01/14][user-cr] Add app_restart_args->debug

Make 'debug' a field in struct app_restart_args so other callers of
app_restart() can also control the debug output of app_restart().

Signed-off-by: Sukadev Bhattiprolu <[email protected]>
---
 restart.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/restart.c b/restart.c
index 0c74bb6..365b7ad 100644
--- a/restart.c
+++ b/restart.c
@@ -386,6 +386,7 @@ struct app_restart_args {
        int infd;
        int klogfd;
        long warn;
+       int debug;
        long fail;
        int keep_lsm;
 };
@@ -581,7 +582,7 @@ static void parse_args(struct app_restart_args *args, int 
argc, char *argv[])
                        args->copy_status = 1;
                        break;
                case 'd':
-                       global_debug = 1;
+                       global_debug = args->debug = 1;
                        break;
                case 'F':
                        args->freezer = optarg;
@@ -815,6 +816,8 @@ int app_restart(struct app_restart_args *args)
        memset(&ctx, 0, sizeof(ctx));
        ctx.args = args;
 
+       global_debug = args->debug;
+
        /* input file descriptor (default: stdin) */
        if (args->infd >= 0) {
                if (dup2(args->infd, STDIN_FILENO) < 0) {
-- 
1.6.0.4

_______________________________________________
Containers mailing list
[email protected]
https://lists.linux-foundation.org/mailman/listinfo/containers

_______________________________________________
Devel mailing list
[email protected]
https://openvz.org/mailman/listinfo/devel

Reply via email to