Message ID | 163819575444.215744.318477214576928110.stgit@warthog.procyon.org.uk (mailing list archive) |
---|---|
Headers | show
Return-Path: <linux-cifs-owner@kernel.org> 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 43575C433F5 for <linux-cifs@archiver.kernel.org>; Mon, 29 Nov 2021 14:24:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S241453AbhK2O2J (ORCPT <rfc822;linux-cifs@archiver.kernel.org>); Mon, 29 Nov 2021 09:28:09 -0500 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:43379 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232243AbhK2O0H (ORCPT <rfc822;linux-cifs@vger.kernel.org>); Mon, 29 Nov 2021 09:26:07 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1638195769; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding; bh=BAN7MFia8/5JhLZmPtO1Q/qhBSQiWBDVelce8lOIxRo=; b=CQE5kPVXrsrsb1vnwApxojjXSpoE8QZE2GawpuOC18tEx2ssc1y6lZzZK7eGGinmhk+7N/ wzCW79h1+W3meILbAjhsgrHxjRQRMHOcr1VDbX2idnXCL1Pi2C2hEuJ5XzdDwr2S2mDlMo 1keLwoT3qe8eu1Jn3RpxrubNm1oDwDI= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-60-P7AlVY0UMYaAtxibB2Azrg-1; Mon, 29 Nov 2021 09:22:45 -0500 X-MC-Unique: P7AlVY0UMYaAtxibB2Azrg-1 Received: from smtp.corp.redhat.com (int-mx07.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 83878180FCDE; Mon, 29 Nov 2021 14:22:41 +0000 (UTC) Received: from warthog.procyon.org.uk (unknown [10.33.36.25]) by smtp.corp.redhat.com (Postfix) with ESMTP id 9581E1043272; Mon, 29 Nov 2021 14:22:35 +0000 (UTC) Subject: [PATCH 00/64] fscache, cachefiles: Rewrite From: David Howells <dhowells@redhat.com> To: linux-cachefs@redhat.com Cc: Matthew Wilcox <willy@infradead.org>, Jeff Layton <jlayton@kernel.org>, Eric Van Hensbergen <ericvh@gmail.com>, Anna Schumaker <anna.schumaker@netapp.com>, linux-afs@lists.infradead.org, Steve French <sfrench@samba.org>, Al Viro <viro@zeniv.linux.org.uk>, Dominique Martinet <asmadeus@codewreck.org>, Dave Wysochanski <dwysocha@redhat.com>, Trond Myklebust <trond.myklebust@hammerspace.com>, linux-cifs@vger.kernel.org, "Matthew Wilcox (Oracle)" <willy@infradead.org>, Marc Dionne <marc.dionne@auristor.com>, linux-nfs@vger.kernel.org, Latchesar Ionkov <lucho@ionkov.net>, Shyam Prasad N <nspmangalore@gmail.com>, v9fs-developer@lists.sourceforge.net, dhowells@redhat.com, Trond Myklebust <trondmy@hammerspace.com>, Anna Schumaker <anna.schumaker@netapp.com>, Steve French <sfrench@samba.org>, Dominique Martinet <asmadeus@codewreck.org>, Jeff Layton <jlayton@kernel.org>, Matthew Wilcox <willy@infradead.org>, Alexander Viro <viro@zeniv.linux.org.uk>, Omar Sandoval <osandov@osandov.com>, Linus Torvalds <torvalds@linux-foundation.org>, linux-afs@lists.infradead.org, linux-nfs@vger.kernel.org, linux-cifs@vger.kernel.org, ceph-devel@vger.kernel.org, v9fs-developer@lists.sourceforge.net, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org Date: Mon, 29 Nov 2021 14:22:34 +0000 Message-ID: <163819575444.215744.318477214576928110.stgit@warthog.procyon.org.uk> User-Agent: StGit/0.23 MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit X-Scanned-By: MIMEDefang 2.84 on 10.5.11.22 Precedence: bulk List-ID: <linux-cifs.vger.kernel.org> X-Mailing-List: linux-cifs@vger.kernel.org |
Series |
fscache, cachefiles: Rewrite
|
expand
|
On Mon, Nov 29, 2021 at 6:22 AM David Howells <dhowells@redhat.com> wrote: > > The patchset is structured such that the first few patches disable fscache > use by the network filesystems using it, remove the cachefiles driver > entirely and as much of the fscache driver as can be got away with without > causing build failures in the network filesystems. The patches after that > recreate fscache and then cachefiles, attempting to add the pieces in a > logical order. Finally, the filesystems are reenabled and then the very > last patch changes the documentation. Thanks, this all looks conceptually sane to me. But I only really scanned the commit messages, not the actual new code. That obviously needs all the usual testing and feedback from the users of this all.. Linus