Received: by 2002:a25:4158:0:0:0:0:0 with SMTP id o85csp1622920yba; Thu, 25 Apr 2019 03:00:56 -0700 (PDT) X-Google-Smtp-Source: APXvYqyBPhTv4SROkWeJJ2/4/unSKUI2s+zYXUhmnKLw9g9jsB7lnvTfvEMEN0z2FJqpzCWOV4Yl X-Received: by 2002:a63:d00d:: with SMTP id z13mr3700726pgf.213.1556186456159; Thu, 25 Apr 2019 03:00:56 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1556186456; cv=none; d=google.com; s=arc-20160816; b=mVP8M/XK8nAo6LbpFjf8ep4qPwHXCfcLZr8fdr4Wc64hTRwSg5eud6Thp/Enbeh2An krGBKt6VBDjk7Qb+ioHSHLyrJGedMctcpqNZ735+KvZ1mBFBrGObDtpY9va0xBULsjKm FWzoOgxwI4gVgRHa016r8Eqwhp7ayDibYquk4gn/uGxsgqOgoActq8/Jmc5j7kiJBOZH T1L/QuFiw6LUXlkZ4JgCyefbF2lEYKsCN2M98nrgFZ/+3ROMXAU/hIbb0zhEp/PuLMbH vU0KOSmwHb0mUInicPwk9rHgpvY2gVM4QdZHcJdccuBie78QpX+Gpz2IN5DU3U3LoBgM EipQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :message-id:in-reply-to:subject:cc:to:from:date; bh=O8Pj7/n/VmsnQA+X8WN7155RT+G5dbt3lWPkjjl76wc=; b=sD9S5MfBoM440z2+zK5OrIyvsrD4S6xHX3R5MfbmXNZxszFjpDEnLTMWB6sQRPfAEO T8gbwJkVjkSSfkDujOEdSby0Rlv8mihTpkpjWdhhF8n7j0JS6NQUIJw3sFQ+lT6SQEnE kH6hiZilKajGwjR199RGQ9Ro4WhjWJOjkqLICTaeWFkJqnqbDMqbgsh6dVX8YvGDkmNa BdW32SKoeo1PLOCDrcrO7KiBpV3XILcgbyfZQHxKDD+B9VdOkrdcGWGINlcYzJrRFG3d N0ve9AO3bnvZiuZubbwkRwUHDlmnC0wI4EaqVSaAj8U/k0bYcAhJ1v7OXBj+vSnLLmkQ t6bA== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g4si21292058plp.196.2019.04.25.03.00.39; Thu, 25 Apr 2019 03:00:56 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728072AbfDXStA (ORCPT + 99 others); Wed, 24 Apr 2019 14:49:00 -0400 Received: from mx2.suse.de ([195.135.220.15]:56218 "EHLO mx1.suse.de" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1726176AbfDXSs7 (ORCPT ); Wed, 24 Apr 2019 14:48:59 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id 980EAACD8; Wed, 24 Apr 2019 18:48:58 +0000 (UTC) Date: Wed, 24 Apr 2019 20:48:58 +0200 (CEST) From: Miroslav Benes To: Josh Poimboeuf cc: Petr Mladek , Jiri Kosina , Joe Lawrence , Kamalesh Babulal , live-patching@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 3/3] livepatch: Cleanup message handling in klp_try_switch_task() In-Reply-To: <20190424155532.3uyxyxwm4c5dqsf5@treble> Message-ID: References: <20190424085550.29612-1-pmladek@suse.com> <20190424085550.29612-4-pmladek@suse.com> <20190424155532.3uyxyxwm4c5dqsf5@treble> User-Agent: Alpine 2.21 (LSU 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 24 Apr 2019, Josh Poimboeuf wrote: > On Wed, Apr 24, 2019 at 10:55:50AM +0200, Petr Mladek wrote: > > WARN_ON_ONCE() could not be called safely under rq lock because > > of console deadlock issues. Fortunately, simple printk_deferred() > > is enough because the warning is printed from a well defined > > location and context. > > > > Also klp_try_switch_task() is called under klp_mutex. > > Therefore, the buffer for debug messages could be static. > > > > Signed-off-by: Petr Mladek > > --- > > kernel/livepatch/transition.c | 19 ++++++++++++++----- > > 1 file changed, 14 insertions(+), 5 deletions(-) > > > > diff --git a/kernel/livepatch/transition.c b/kernel/livepatch/transition.c > > index 9c89ae8b337a..e8183d18227f 100644 > > --- a/kernel/livepatch/transition.c > > +++ b/kernel/livepatch/transition.c > > @@ -254,6 +254,7 @@ static int klp_check_stack_func(struct klp_func *func, > > static int klp_check_stack(struct task_struct *task, char *err_buf) > > { > > static unsigned long entries[MAX_STACK_ENTRIES]; > > + static int enosys_warned; > > struct stack_trace trace; > > struct klp_object *obj; > > struct klp_func *func; > > @@ -263,8 +264,16 @@ static int klp_check_stack(struct task_struct *task, char *err_buf) > > trace.nr_entries = 0; > > trace.max_entries = MAX_STACK_ENTRIES; > > trace.entries = entries; > > + > > ret = save_stack_trace_tsk_reliable(task, &trace); > > - WARN_ON_ONCE(ret == -ENOSYS); > > + if (ret == -ENOSYS) { > > + if (!enosys_warned) { > > + printk_deferred(KERN_WARNING "%s: save_stack_trace_tsk_reliable() not supported on this architecture.\n", > > + __func__); > > + enosys_warned = 1; > > + } > > + return ret; > > + } > > We already have a similar printk in patch 1, so is this warning really > needed? I don't think so. pr_warn() in klp_enable_patch() should be enough in my opinion. However, if (ret == -ENOSYS) return ret; would be justified, wouldn't it? Miroslav