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 lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2A52AC4345F for ; Mon, 29 Apr 2024 10:04:40 +0000 (UTC) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=Jo0RNhTa; dkim-atps=neutral Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4VSf7p5Sr3z3d8T for ; Mon, 29 Apr 2024 20:04:38 +1000 (AEST) Authentication-Results: lists.ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=Jo0RNhTa; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=kernel.org (client-ip=2604:1380:4641:c500::1; helo=dfw.source.kernel.org; envelope-from=xiang@kernel.org; receiver=lists.ozlabs.org) Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4VSf7g55tQz3d24 for ; Mon, 29 Apr 2024 20:04:31 +1000 (AEST) Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by dfw.source.kernel.org (Postfix) with ESMTP id 0283460C11; Mon, 29 Apr 2024 10:04:28 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id AC1D9C113CD; Mon, 29 Apr 2024 10:04:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1714385067; bh=TMQs2ZThSKL7ZuJsmgK3ppCSu+w2q9rdEEkumpq08Kk=; h=Date:From:To:Cc:Subject:From; b=Jo0RNhTax2WmFwOctSSt1zPguvty5QKlc+EsNN8ghhqlFc1IpV3nKEOL5QfmSJBkE 3XqnOakkbHXNOpod4aW0HZMchYWg7oC1qnO43EmKAu93k4JQTdJOOToiV3tFX3vLUU hVdkeMz6z44Sv10RyKzVN0AhSdjDK4qFiF420YHsQEHlzBVqzvpBqUlTXBMwUobmUJ LenNHvtmSxAIHa3BvmvJTPWy62yWcY0cjr2fMDRwyhSaBraMScD0PElUiRN8k9O+SB hjqlNGO9ywaLa7XATdi7/m3SHwmjK2fQu8viH73USz8BfYpIBVysa8LQf84ZRqPXWh mVjiOfzBvUbnA== Date: Mon, 29 Apr 2024 18:04:22 +0800 From: Gao Xiang To: Linus Torvalds Subject: [GIT PULL] erofs fixes for 6.9-rc7 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML , Chao Yu , Jingbo Xu , Baokun Li , Christian Brauner , Hongbo Li MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline X-BeenThere: linux-erofs@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Linux EROFS file system List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Christian Brauner , LKML , Hongbo Li , linux-erofs@lists.ozlabs.org Errors-To: linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Sender: "Linux-erofs" Hi Linus, Could you consider this pull request for 6.9-rc7? Here are three fixes related to EROFS fscache mode. The most important two patches fix calling kill_block_super() in bdev-based mode instead of kill_anon_super() as mentioned in [1]. The rest patch is an informative one. All commits have been in -next and no potential merge conflict is observed. [1] https://lore.kernel.org/r/15ab9875-5123-7bc2-bb25-fc683129ad9e@huawei.com Thanks, Gao Xiang The following changes since commit ed30a4a51bb196781c8058073ea720133a65596f: Linux 6.9-rc5 (2024-04-21 12:35:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.9-rc7-fixes for you to fetch changes up to 7af2ae1b1531feab5d38ec9c8f472dc6cceb4606: erofs: reliably distinguish block based and fscache mode (2024-04-28 20:36:52 +0800) ---------------------------------------------------------------- Changes since last update: - Better error message when prepare_ondemand_read failed; - Fix unmount of bdev-based mode if CONFIG_EROFS_FS_ONDEMAND is on. ---------------------------------------------------------------- Baokun Li (1): erofs: get rid of erofs_fs_context Christian Brauner (1): erofs: reliably distinguish block based and fscache mode Hongbo Li (1): erofs: modify the error message when prepare_ondemand_read failed fs/erofs/fscache.c | 2 +- fs/erofs/internal.h | 7 --- fs/erofs/super.c | 124 +++++++++++++++++++++++----------------------------- 3 files changed, 56 insertions(+), 77 deletions(-) From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 1F6E02942C for ; Mon, 29 Apr 2024 10:04:27 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714385068; cv=none; b=inn0KV622RnH1mo/BAyXJ1UJum3QUoBYXahD23Exq9JcVpW5t9wNB5GaNUv+gtdJdlhoy0URp+OarIUfkSPclVDdLJZdQdSWJ/dugrmMd5ttl/3bn9wDSlwErB7gQCIZC/jbicAPbzuW425JYItFuFd7AoHnMe10/gCK1c6lksk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1714385068; c=relaxed/simple; bh=TMQs2ZThSKL7ZuJsmgK3ppCSu+w2q9rdEEkumpq08Kk=; h=Date:From:To:Cc:Subject:Message-ID:MIME-Version:Content-Type: Content-Disposition; b=uv9oKVrnmCkXgojGvG8vYOWveao+T67r3cXet0CfzDlCW4mcRqqrEkbDnP+yBO7PAh07ycL+ZQPW8IEJar38rfWX48MGoF1wwnpk7U+1bWBBGJdswEzuCCkPiFZdFYpDtv2wqii0kfWLUpcC22Yfn9FhEA03qFP9uzy/qywS4uE= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=Jo0RNhTa; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="Jo0RNhTa" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AC1D9C113CD; Mon, 29 Apr 2024 10:04:25 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1714385067; bh=TMQs2ZThSKL7ZuJsmgK3ppCSu+w2q9rdEEkumpq08Kk=; h=Date:From:To:Cc:Subject:From; b=Jo0RNhTax2WmFwOctSSt1zPguvty5QKlc+EsNN8ghhqlFc1IpV3nKEOL5QfmSJBkE 3XqnOakkbHXNOpod4aW0HZMchYWg7oC1qnO43EmKAu93k4JQTdJOOToiV3tFX3vLUU hVdkeMz6z44Sv10RyKzVN0AhSdjDK4qFiF420YHsQEHlzBVqzvpBqUlTXBMwUobmUJ LenNHvtmSxAIHa3BvmvJTPWy62yWcY0cjr2fMDRwyhSaBraMScD0PElUiRN8k9O+SB hjqlNGO9ywaLa7XATdi7/m3SHwmjK2fQu8viH73USz8BfYpIBVysa8LQf84ZRqPXWh mVjiOfzBvUbnA== Date: Mon, 29 Apr 2024 18:04:22 +0800 From: Gao Xiang To: Linus Torvalds Cc: linux-erofs@lists.ozlabs.org, LKML , Chao Yu , Jingbo Xu , Baokun Li , Christian Brauner , Hongbo Li Subject: [GIT PULL] erofs fixes for 6.9-rc7 Message-ID: Mail-Followup-To: Linus Torvalds , linux-erofs@lists.ozlabs.org, LKML , Chao Yu , Jingbo Xu , Baokun Li , Christian Brauner , Hongbo Li Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Hi Linus, Could you consider this pull request for 6.9-rc7? Here are three fixes related to EROFS fscache mode. The most important two patches fix calling kill_block_super() in bdev-based mode instead of kill_anon_super() as mentioned in [1]. The rest patch is an informative one. All commits have been in -next and no potential merge conflict is observed. [1] https://lore.kernel.org/r/15ab9875-5123-7bc2-bb25-fc683129ad9e@huawei.com Thanks, Gao Xiang The following changes since commit ed30a4a51bb196781c8058073ea720133a65596f: Linux 6.9-rc5 (2024-04-21 12:35:54 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git tags/erofs-for-6.9-rc7-fixes for you to fetch changes up to 7af2ae1b1531feab5d38ec9c8f472dc6cceb4606: erofs: reliably distinguish block based and fscache mode (2024-04-28 20:36:52 +0800) ---------------------------------------------------------------- Changes since last update: - Better error message when prepare_ondemand_read failed; - Fix unmount of bdev-based mode if CONFIG_EROFS_FS_ONDEMAND is on. ---------------------------------------------------------------- Baokun Li (1): erofs: get rid of erofs_fs_context Christian Brauner (1): erofs: reliably distinguish block based and fscache mode Hongbo Li (1): erofs: modify the error message when prepare_ondemand_read failed fs/erofs/fscache.c | 2 +- fs/erofs/internal.h | 7 --- fs/erofs/super.c | 124 +++++++++++++++++++++++----------------------------- 3 files changed, 56 insertions(+), 77 deletions(-)