Received: by 10.223.185.116 with SMTP id b49csp1921029wrg; Sun, 4 Mar 2018 13:16:17 -0800 (PST) X-Google-Smtp-Source: AG47ELuSkPf8C1godUkT6dosaS8MZDkwInE0Wo6GQp6jkAX3nnkmIzxID6/9xj+mVdskFbzB10jg X-Received: by 10.98.74.140 with SMTP id c12mr13259766pfj.44.1520198177010; Sun, 04 Mar 2018 13:16:17 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1520198176; cv=none; d=google.com; s=arc-20160816; b=e5uo5vHeuX/f472gGLnZr/VWfBpaaCU1QaOUK744p5/RRFD8QD7K+m1iXoUhPNx4E/ fPBT9gMx0CWPkR5euXNZ9J/8Vaoi9X7GGhAqV1Oj9ga7uwTQvfRA2NfenqiGBpvLuO2z DcREuJS8lzQRb1C2Gt1iS0494jzADUEneGMxuApY3ozB7nGtJw42ThDrcHYTbQK5hcrg eI8PrpFnKVYOEnD6QJhAmHmUa0ub1Ke1RRBdhrLdd6GHu90mbDw3IJ9yIypTeUnyfi4J AAvE2kMdXpBUKVi+ntacVo5cstB9k6Yp7vlhJxE5INOX8tvf7urWxXaf01lek78fKRO4 nAUA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date:arc-authentication-results; bh=KT3bRLvvZaZSwbgcAmW07bAhqXl3HtdSTaFVeAAXrI8=; b=UjdpiCqnjVkWDebo+gSuB0mEaef934V8VJeqxncCWtYjXvMeU9Q5MKvsfJijTFw0uX F9YAGnO71OA3EMwWncQ/6sqaid1QrdPm5Ji1hFLL1cl2Giga7n58RrXBZCVDLvGoW5WH 3+NKXNJERhV+cbZjIHK6Imds9IqtPAIIlVdX//PKw+mfLCWFpXceJu8NvXJK9K975C53 2vRoKHnSGRYjqvKfRLGnuODEvvNQANMEpRdyrmABVFnIpwds9Rt1cq3cQDn9C/NDwP0v 2BG6Mkbj+kWAy/W4HMgSBKNnP8LhlU2l1uQ1q6lCbZsFFzk+6HBvGZxSfoShwEMaCbSk cxwA== 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 g61-v6si8204244plb.291.2018.03.04.13.16.01; Sun, 04 Mar 2018 13:16:16 -0800 (PST) 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 S932238AbeCDUj3 (ORCPT + 99 others); Sun, 4 Mar 2018 15:39:29 -0500 Received: from emh04.mail.saunalahti.fi ([62.142.5.110]:36608 "EHLO emh04.mail.saunalahti.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932090AbeCDUj2 (ORCPT ); Sun, 4 Mar 2018 15:39:28 -0500 Received: from darkstar.musicnaut.iki.fi (85-76-69-67-nat.elisa-mobile.fi [85.76.69.67]) by emh04.mail.saunalahti.fi (Postfix) with ESMTP id 43368300E7; Sun, 4 Mar 2018 22:39:26 +0200 (EET) Date: Sun, 4 Mar 2018 22:39:26 +0200 From: Aaro Koskinen To: Andy Shevchenko Cc: Linux Kernel Mailing List , Linus Torvalds , Andrew Morton Subject: Re: [PATCH] init/ramdisk: use pr_cont() at the end of ramdisk loading Message-ID: <20180304203926.fdimiyyunogejlas@darkstar.musicnaut.iki.fi> References: <20180302205552.16031-1-aaro.koskinen@iki.fi> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Sat, Mar 03, 2018 at 06:14:33PM +0200, Andy Shevchenko wrote: > On Fri, Mar 2, 2018 at 10:55 PM, Aaro Koskinen wrote: > > Use pr_cont() at the end of ramdisk loading. This will avoid the rotator > > and an extra newline appearing in the dmesg. > > > printk("Error closing the disk.\n"); > > What about this one? I think it should be left as is. A.