From mboxrd@z Thu Jan 1 00:00:00 1970 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 9CA3DC433EF for ; Sat, 28 May 2022 05:49:24 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1349008AbiE1FtX (ORCPT ); Sat, 28 May 2022 01:49:23 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:56030 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1345565AbiE1FtV (ORCPT ); Sat, 28 May 2022 01:49:21 -0400 Received: from bombadil.infradead.org (bombadil.infradead.org [IPv6:2607:7c80:54:3::133]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8D75561631 for ; Fri, 27 May 2022 22:49:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20210309; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=sNf6V5APhdWYjUjlBBfjBB6dn815d19Xny6vDUcgK1g=; b=VN2kHnfx9HLxEk+Vd2IcT0Q6xY E77xSCJQ+pDrL5sQwy1+rsFepkYeVe4/8y/W5Q/m9uUwbeN8SQ73hphsCjHBFqhN9oH+z9Tq7Mzub SZ9aOKKIpkftnxGvcCdmp6ggbmh7smt4RUXwBdWztJfQLvom4lmetzwgRQHRhqq8dsbumf2Jys8LN b312KTYmCvXZTcKeMEkyqINJSeMij+TBnHIg1IMPfCb6A8x5FH2S8xvXYwWzepQVjB9R81poynfsT Khv6i+7dVzNM7cg9MjNMOTKsMVtiwR8KEb3sV82b8fgwAc8JMHRLrJ1F/BokN9sDGP5vD9xcWmS44 MsKycPaA==; Received: from hch by bombadil.infradead.org with local (Exim 4.94.2 #2 (Red Hat Linux)) id 1nupKC-001VV1-6s; Sat, 28 May 2022 05:49:20 +0000 Date: Fri, 27 May 2022 22:49:20 -0700 From: Christoph Hellwig To: "Matthew Wilcox (Oracle)" Cc: linux-fsdevel@vger.kernel.org, linux-mm@kvack.org Subject: Re: [PATCH 09/24] nilfs2: Remove check for PageError Message-ID: References: <20220527155036.524743-1-willy@infradead.org> <20220527155036.524743-10-willy@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220527155036.524743-10-willy@infradead.org> X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Precedence: bulk List-ID: X-Mailing-List: linux-fsdevel@vger.kernel.org On Fri, May 27, 2022 at 04:50:21PM +0100, Matthew Wilcox (Oracle) wrote: > If read_mapping_page() encounters an error, it returns an errno, not a > page with PageError set, so this test is not needed. Looks good: Reviewed-by: Christoph Hellwig