From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751442AbdEQRPg (ORCPT ); Wed, 17 May 2017 13:15:36 -0400 Received: from mail.kernel.org ([198.145.29.99]:40090 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751395AbdEQROm (ORCPT ); Wed, 17 May 2017 13:14:42 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org EF63A23960 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=kernel.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=mhiramat@kernel.org From: Masami Hiramatsu To: Jeff Dike , Richard Weinberger Cc: Masami Hiramatsu , user-mode-linux-devel@lists.sourceforge.net, linux-kernel@vger.kernel.org Subject: [PATCH v3 0/6] um: Output messages to stderr and support quiet option Date: Thu, 18 May 2017 02:13:49 +0900 Message-Id: <149504121868.2543.16105153409840504430.stgit@devbox> X-Mailer: git-send-email 2.9.3 User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hello, Here is version 3 of um-quiet series. In this version I just fixed some printf format issues. V2 is here. https://lkml.org/lkml/2017/5/8/35 This series fixes some boot time printf output to stderr by adding os_info() and os_warn(). The information-level messages via os_info() are suppressed when "quiet" kernel option is specified. Also the last one allows user to pass "console=" option to kernel. Note that the output of --help and --version are still sent to stdout since they are intentionally shown by the user. Changes from v2: - Cast rlim_min/max to unsigned long long explicitly for avoiding printf-format warning. - Fix printf format in physmem.c so that it matches the type of arguments. Thank you, --- Masami Hiramatsu (6): um: Use printk instead of printf in make_uml_dir um: Add os_info() for pre-boot information messages um: Use os_info for the messages on normal path um: Add os_warn() for pre-boot warning/error messages um: Use os_warn to print out pre-boot warning/error messages um: console: Ignore console= option arch/um/drivers/stdio_console.c | 3 +++ arch/um/include/shared/os.h | 4 ++++ arch/um/kernel/physmem.c | 10 +++++----- arch/um/kernel/um_arch.c | 16 +++++++++------- arch/um/kernel/umid.c | 4 ++-- arch/um/os-Linux/execvp.c | 2 +- arch/um/os-Linux/main.c | 9 ++++----- arch/um/os-Linux/mem.c | 28 ++++++++++++++-------------- arch/um/os-Linux/start_up.c | 28 +++++++++++++++------------- arch/um/os-Linux/umid.c | 19 +++++++++++-------- arch/um/os-Linux/util.c | 34 ++++++++++++++++++++++++++++++++++ 11 files changed, 102 insertions(+), 55 deletions(-) -- Masami Hiramatsu