From nobody Fri Apr 10 10:56:30 2026 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C2B01ECAAD4 for ; Thu, 1 Sep 2022 01:57:26 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232350AbiIAB5Z (ORCPT ); Wed, 31 Aug 2022 21:57:25 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37860 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232132AbiIAB5X (ORCPT ); Wed, 31 Aug 2022 21:57:23 -0400 Received: from szxga03-in.huawei.com (szxga03-in.huawei.com [45.249.212.189]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 415EFEA32C for ; Wed, 31 Aug 2022 18:57:22 -0700 (PDT) Received: from dggpeml500024.china.huawei.com (unknown [172.30.72.55]) by szxga03-in.huawei.com (SkyGuard) with ESMTP id 4MJ3z82Kx2zHnbX; Thu, 1 Sep 2022 09:55:32 +0800 (CST) Received: from huawei.com (10.175.112.208) by dggpeml500024.china.huawei.com (7.185.36.10) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2375.24; Thu, 1 Sep 2022 09:57:19 +0800 From: Yuan Can To: , , , , , CC: , Subject: [PATCH] iommu/ioasid: Add missing new line for info message Date: Thu, 1 Sep 2022 01:55:30 +0000 Message-ID: <20220901015530.37706-1-yuancan@huawei.com> X-Mailer: git-send-email 2.17.1 MIME-Version: 1.0 X-Originating-IP: [10.175.112.208] X-ClientProxiedBy: dggems706-chm.china.huawei.com (10.3.19.183) To dggpeml500024.china.huawei.com (7.185.36.10) X-CFilter-Loop: Reflected Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" A new line in the end of the log is expected, otherwise it will be mixed with later logs. Signed-off-by: Yuan Can --- drivers/iommu/ioasid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/iommu/ioasid.c b/drivers/iommu/ioasid.c index a786c034907c..1af51ee10175 100644 --- a/drivers/iommu/ioasid.c +++ b/drivers/iommu/ioasid.c @@ -234,7 +234,7 @@ void ioasid_unregister_allocator(struct ioasid_allocato= r_ops *ops) rcu_assign_pointer(active_allocator, list_first_entry(&allocators_list, struct ioasid_allocator_data, list)); - pr_info("IOASID allocator changed"); + pr_info("IOASID allocator changed.\n"); } kfree_rcu(pallocator, rcu); break; --=20 2.17.1