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=-7.9 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_SANE_1 autolearn=no 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 3FA5DC433EF for ; Thu, 2 Sep 2021 18:21:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 0E8FB6109E for ; Thu, 2 Sep 2021 18:21:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1346968AbhIBSW0 (ORCPT ); Thu, 2 Sep 2021 14:22:26 -0400 Received: from mail.kernel.org ([198.145.29.99]:46734 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230210AbhIBSWY (ORCPT ); Thu, 2 Sep 2021 14:22:24 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 99B5261041; Thu, 2 Sep 2021 18:21:16 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1630606886; bh=44DLHjL939OemOnIN1/VdzLyyxAZ2hVSWSI7E3ypWvU=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=KZO3g5S/N3lilzVtOABmurSqX4WR8b3Q2yohwgQbgd00ue248U0DSuWQaXgQsiKmU jSx0eo7eAHLYO1wLo2pO2snJwG0XrsyESDus912BITtP/+IdcmRcnNpLcqwbn75RUj m1D1wqSL9WYCOnTWvnvZaYQE4hBI0tLwmRxsC3KTRQ2gRITj+qY3Kz4GH6wx02z1KB VggxEueaCiiPuhueoexcH2BLCjh9x3MlFIcCn6nTeswTUiqqHjaY1Tb/GiEGAf5RmK edTE/CemVojmSou7B36A1cLXTHWU/tCiP7hlUWYm4Z2TP+3FZRRBfNfSOAaeQUOwoB Sckv4hMqwDQPg== Date: Fri, 3 Sep 2021 02:20:55 +0800 From: Gao Xiang To: Linus Torvalds Cc: LKML , Chao Yu , linux-fsdevel , linux-erofs@lists.ozlabs.org, Dan Williams , Stephen Rothwell , Huang Jianan , Yue Hu , Miao Xie , Liu Bo , Peng Tao , Joseph Qi , Liu Jiang Subject: Re: [GIT PULL] erofs updates for 5.15-rc1 Message-ID: <20210902182053.GB26537@hsiangkao-HP-ZHAN-66-Pro-G1> Mail-Followup-To: Linus Torvalds , LKML , Chao Yu , linux-fsdevel , linux-erofs@lists.ozlabs.org, Dan Williams , Stephen Rothwell , Huang Jianan , Yue Hu , Miao Xie , Liu Bo , Peng Tao , Joseph Qi , Liu Jiang References: <20210831225935.GA26537@hsiangkao-HP-ZHAN-66-Pro-G1> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Thu, Sep 02, 2021 at 09:18:59AM -0700, Linus Torvalds wrote: > On Tue, Aug 31, 2021 at 4:00 PM Gao Xiang wrote: > > > > All commits have been tested and have been in linux-next. Note that > > in order to support iomap tail-packing inline, I had to merge iomap > > core branch (I've created a merge commit with the reason) in advance > > to resolve such functional dependency, which is now merged into > > upstream. Hopefully I did the right thing... > > It all looks fine to me. You have all the important parts: what you > are merging, and _why_ you are merging it. > > So no complaints, and thanks for making it explicit in your pull > request too so that I'm not taken by surprise. Yeah, thanks. That was my first time to merge another tree due to hard dependency like this. I've gained some experience from this and will be more confident on this if such things happen in the future. :) Thanks, Gao Xiang > > Linus