Received: by 2002:a05:6a10:f3d0:0:0:0:0 with SMTP id a16csp114822pxv; Wed, 14 Jul 2021 20:19:00 -0700 (PDT) X-Google-Smtp-Source: ABdhPJxRSGGVzCtTbD16dfq8JsvpMP/ZvLY0zVkjzhln9+3IGRzzgUH2Y2biX6wMfMD9G3y3u93S X-Received: by 2002:a50:cd86:: with SMTP id p6mr3002756edi.212.1626319140110; Wed, 14 Jul 2021 20:19:00 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1626319140; cv=none; d=google.com; s=arc-20160816; b=eBLXDeD2Ceatxd3RF/AN3FUPwSroN9msplZYCADhFVJJZ2z0F9oyemUDxci5SjZ2Nw gG6q0300KpXNo/zj3Hf3wjQ1VBcLWXBNI5SUYJ7gZsw6kGFWmkbZmkvc1RVL9bONukMP tgkqgG0FmPeYOKdb7pZBF2+IVI4rvlJ3aL2O+9obNEl8Y3OJweNul/0lvKULw1Rg2jtw LbjG7vWz9+TsPmM1mdCQHt/yk7dndYEXoZjiJ57s9DFTeaNR7FYoKdtpLv66VN9oULzS 9thVC3qhGfNdOBlYT0ZvrMZgk8s/g7cCUl4ItnEuunBkO0fLx0I8ti5p3uVGv8NRLltY Iiew== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:references:in-reply-to:message-id:date:subject :cc:to:from; bh=D5vUhA2sGHBjWBerOL3M6Tzd9GllIL31/ZZIFNTDK0k=; b=hHxI9qVAahgoFwxV8IBbJDQ6775h6acSKLOncB7dwykKc+d1I/bRJaN+to36wIKQy1 kI5fLpLgMEzGN5o0MM0ia+MK3h4FD7eFhwMTAtkwnt8tLY7QN69K58joerVz10fzShgg rp1q44KSuVZ+pQJtCr9ZQkrOuQcf7pd7ioB+wcuQMye+TAUKtfZEOjDVTQ70MOMZBis+ ysgK7sDSVM6W7WeivnwRzC3HKT0uAxZpnbkl3jxUUmNqgcLRofgqaZpfhnw0cIdv7/1P urWV9bg4vHgx7EIeqhMWbTOwk2/e0U5KPz38PvKPrKDlkRTB43aWpmobRKN6/2NJMGjs s7sg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id c7si5256437ejc.373.2021.07.14.20.18.35; Wed, 14 Jul 2021 20:19:00 -0700 (PDT) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=arm.com Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233989AbhGODTS (ORCPT + 99 others); Wed, 14 Jul 2021 23:19:18 -0400 Received: from foss.arm.com ([217.140.110.172]:46020 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S234069AbhGODTM (ORCPT ); Wed, 14 Jul 2021 23:19:12 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 8F34F1042; Wed, 14 Jul 2021 20:16:19 -0700 (PDT) Received: from entos-ampere-02.shanghai.arm.com (entos-ampere-02.shanghai.arm.com [10.169.214.103]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id F147E3F7D8; Wed, 14 Jul 2021 20:16:16 -0700 (PDT) From: Jia He To: linux-kernel@vger.kernel.org Cc: Linus Torvalds , Christoph Hellwig , nd@arm.com, Jia He , "Darrick J. Wong" , linux-xfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: [PATCH RFC 07/13] iomap: simplify iomap_swapfile_fail() with '%pD' specifier Date: Thu, 15 Jul 2021 11:15:27 +0800 Message-Id: <20210715031533.9553-8-justin.he@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210715031533.9553-1-justin.he@arm.com> References: <20210715031533.9553-1-justin.he@arm.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org After the behavior of '%pD' is change to print the full path of file, iomap_swapfile_fail() can be simplified. Given the space with proper length would be allocated in vprintk_store(), the kmalloc() is not required any more. Besides, the previous number postfix of '%pD' in format string is pointless. Cc: Christoph Hellwig Cc: "Darrick J. Wong" Cc: linux-xfs@vger.kernel.org Cc: linux-fsdevel@vger.kernel.org Cc: linux-kernel@vger.kernel.org Suggested-by: Christoph Hellwig Signed-off-by: Jia He --- fs/iomap/direct-io.c | 2 +- fs/iomap/swapfile.c | 8 +------- 2 files changed, 2 insertions(+), 8 deletions(-) diff --git a/fs/iomap/direct-io.c b/fs/iomap/direct-io.c index 9398b8c31323..e876a5f9d888 100644 --- a/fs/iomap/direct-io.c +++ b/fs/iomap/direct-io.c @@ -426,7 +426,7 @@ iomap_dio_actor(struct inode *inode, loff_t pos, loff_t length, * iomap_apply() call in the DIO path, then it will see the * DELALLOC block that the page-mkwrite allocated. */ - pr_warn_ratelimited("Direct I/O collision with buffered writes! File: %pD4 Comm: %.20s\n", + pr_warn_ratelimited("Direct I/O collision with buffered writes! File: %pD Comm: %.20s\n", dio->iocb->ki_filp, current->comm); return -EIO; default: diff --git a/fs/iomap/swapfile.c b/fs/iomap/swapfile.c index 6250ca6a1f85..17032c14e466 100644 --- a/fs/iomap/swapfile.c +++ b/fs/iomap/swapfile.c @@ -73,13 +73,7 @@ static int iomap_swapfile_add_extent(struct iomap_swapfile_info *isi) static int iomap_swapfile_fail(struct iomap_swapfile_info *isi, const char *str) { - char *buf, *p = ERR_PTR(-ENOMEM); - - buf = kmalloc(PATH_MAX, GFP_KERNEL); - if (buf) - p = file_path(isi->file, buf, PATH_MAX); - pr_err("swapon: file %s %s\n", IS_ERR(p) ? "" : p, str); - kfree(buf); + pr_err("swapon: file %pD %s\n", isi->file, str); return -EINVAL; } -- 2.17.1