From mboxrd@z Thu Jan 1 00:00:00 1970 From: gregkh@linuxfoundation.org (Greg Kroah-Hartman) Date: Mon, 25 Feb 2019 15:59:36 +0100 Subject: [PATCH for-4.19 02/12] staging: erofs: complete error handing of z_erofs_do_read_page In-Reply-To: <20190220091854.19242-3-gaoxiang25@huawei.com> References: <20190220091854.19242-1-gaoxiang25@huawei.com> <20190220091854.19242-3-gaoxiang25@huawei.com> Message-ID: <20190225145936.GC16015@kroah.com> On Wed, Feb 20, 2019@05:18:44PM +0800, Gao Xiang wrote: > commit 1e05ff36e6921ca61bdbf779f81a602863569ee3 upstream. > > This patch completes error handing code of z_erofs_do_read_page. > PG_error will be set when some read error happens, therefore > z_erofs_onlinepage_endio will unlock this page without setting > PG_uptodate. > > Reviewed-by: Chao Yu > Signed-off-by: Gao Xiang > Signed-off-by: Greg Kroah-Hartman > > Conflicts: > drivers/staging/erofs/unzip_vle.c These types of lines are not needed in backports, they just are clutter. I'll go fix it up... greg k-h 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 X-Spam-Level: X-Spam-Status: No, score=-5.5 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_PASS,USER_AGENT_MUTT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B9575C43381 for ; Mon, 25 Feb 2019 14:59:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 7CDB42146F for ; Mon, 25 Feb 2019 14:59:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551106780; bh=o+vSMeWMKZZ7qxqmE1Lm2iAtiDiEXYOh7Lbszgh3HK4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:List-ID:From; b=yAcCyOwaELO6t6LiDMWVp48tcgqtN9KW3kpH/Jq5fcehovWVg7p9qZGY3oRdZ7OPt uLVZTYnj8XCgNyA3d53JlIXTiBNtXKTZsoU5X9m4Pu/xQZVgSHatlt79IZQ8QjXUJp R9Zg0n9S8KPB4XBPbFfWA8Myt7kmLZ1IO1ERHw4E= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727444AbfBYO7k (ORCPT ); Mon, 25 Feb 2019 09:59:40 -0500 Received: from mail.kernel.org ([198.145.29.99]:42278 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727443AbfBYO7j (ORCPT ); Mon, 25 Feb 2019 09:59:39 -0500 Received: from localhost (5356596B.cm-6-7b.dynamic.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E29CA2087C; Mon, 25 Feb 2019 14:59:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1551106779; bh=o+vSMeWMKZZ7qxqmE1Lm2iAtiDiEXYOh7Lbszgh3HK4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=wQ+ZN96ky45LLy+ABKRJX71wv1WHVYZGgl2BVIZoMKhaiGSC9CvPYhm742tuLmAqJ eUnyt1tbTuffOPdzcsZdaxC6RcDhvqYBJEmJ96XgxpmA6dATyNqthXW4yk8CSspPvc +PxaSkPOdXcqKT6E/vVdFLawtkWzCIMah1rX2+ag= Date: Mon, 25 Feb 2019 15:59:36 +0100 From: Greg Kroah-Hartman To: Gao Xiang Cc: stable@vger.kernel.org, Chao Yu , linux-erofs@lists.ozlabs.org, miaoxie@huawei.com Subject: Re: [PATCH for-4.19 02/12] staging: erofs: complete error handing of z_erofs_do_read_page Message-ID: <20190225145936.GC16015@kroah.com> References: <20190220091854.19242-1-gaoxiang25@huawei.com> <20190220091854.19242-3-gaoxiang25@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190220091854.19242-3-gaoxiang25@huawei.com> User-Agent: Mutt/1.11.3 (2019-02-01) Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org On Wed, Feb 20, 2019 at 05:18:44PM +0800, Gao Xiang wrote: > commit 1e05ff36e6921ca61bdbf779f81a602863569ee3 upstream. > > This patch completes error handing code of z_erofs_do_read_page. > PG_error will be set when some read error happens, therefore > z_erofs_onlinepage_endio will unlock this page without setting > PG_uptodate. > > Reviewed-by: Chao Yu > Signed-off-by: Gao Xiang > Signed-off-by: Greg Kroah-Hartman > > Conflicts: > drivers/staging/erofs/unzip_vle.c These types of lines are not needed in backports, they just are clutter. I'll go fix it up... greg k-h