From patchwork Tue Dec 3 16:26:38 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 11271577 Return-Path: Received: from mail.kernel.org (pdx-korg-mail-1.web.codeaurora.org [172.30.200.123]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id BF65E109A for ; Tue, 3 Dec 2019 16:26:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9D27C20675 for ; Tue, 3 Dec 2019 16:26:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727076AbfLCQ0t (ORCPT ); Tue, 3 Dec 2019 11:26:49 -0500 Received: from michel.telenet-ops.be ([195.130.137.88]:42252 "EHLO michel.telenet-ops.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726968AbfLCQ0t (ORCPT ); Tue, 3 Dec 2019 11:26:49 -0500 Received: from ramsan ([84.195.182.253]) by michel.telenet-ops.be with bizsmtp id ZUSm2100U5USYZQ06USmFw; Tue, 03 Dec 2019 17:26:47 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan with esmtp (Exim 4.90_1) (envelope-from ) id 1icB0g-0007fd-I3; Tue, 03 Dec 2019 17:26:46 +0100 Received: from geert by rox.of.borg with local (Exim 4.90_1) (envelope-from ) id 1icB0g-0005Cd-Fa; Tue, 03 Dec 2019 17:26:46 +0100 From: Geert Uytterhoeven To: Yoshinori Sato , Rich Felker Cc: Andrew Morton , Guenter Roeck , linux-sh@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 0/7] sh: Modernize printing of kernel messages Date: Tue, 3 Dec 2019 17:26:38 +0100 Message-Id: <20191203162645.19950-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.17.1 Sender: linux-sh-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-sh@vger.kernel.org Hi all, This patch series fixes the broken lines in kernel output, which I presume have been happening since commit 4bcc595ccd80decb ("printk: reinstate KERN_CONT for printing continuat ion lines"). Most annoying are the ones in call traces and disassembly dumps, as they cause lots of small bits of information to fly by your serial console. Thanks! Geert Uytterhoeven (7): sh: kernel: disassemble: Fix broken lines in disassembly dumps sh: dump_stack: Fix broken lines and ptrval in calltrace dumps sh: process: Fix broken lines in register dumps sh: sh2007: Modernize printing of kernel messages sh: pci: Modernize printing of kernel messages sh: machvec: Modernize printing of kernel messages sh: fault: Modernize printing of kernel messages arch/sh/boards/board-sh2007.c | 4 +- arch/sh/drivers/pci/common.c | 6 +- arch/sh/drivers/pci/pci-sh7780.c | 23 ++++--- arch/sh/drivers/pci/pci.c | 11 ++-- arch/sh/kernel/disassemble.c | 103 ++++++++++++++++--------------- arch/sh/kernel/dumpstack.c | 24 +++---- arch/sh/kernel/machvec.c | 8 +-- arch/sh/kernel/process_32.c | 38 +++++------- arch/sh/mm/fault.c | 39 ++++++------ 9 files changed, 124 insertions(+), 132 deletions(-) Tested-by: Guenter Roeck