From patchwork Tue May 17 01:03:14 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Xiubo Li X-Patchwork-Id: 12851784 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 974F9C433F5 for ; Tue, 17 May 2022 01:03:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242721AbiEQBDj (ORCPT ); Mon, 16 May 2022 21:03:39 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53324 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S242396AbiEQBDe (ORCPT ); Mon, 16 May 2022 21:03:34 -0400 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 5CADC46B1C for ; Mon, 16 May 2022 18:03:26 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1652749405; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=lE/6arbINVdaJPSfS4bg2zRI0CkKSQMQAL4FCFEgRWA=; b=MgxbMlLR1Jjoinslo7c1CS5DubxxA3ar6MPnz9Tdt+E3c/zyrJ0B95HPHJC69VW4oIyveu 6FHYWd988as2/AIDcYBg939Mf7MbKSC7TPRuAmaezUB+USeFvgXpIazipdSFYVrMOb1BVe Smrb+lmipPm0VmdOx65AtYVODtHuUDE= Received: from mimecast-mx02.redhat.com (mimecast-mx02.redhat.com [66.187.233.88]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-626-h0pjylsDNr6Qc_g1gqfhbQ-1; Mon, 16 May 2022 21:03:22 -0400 X-MC-Unique: h0pjylsDNr6Qc_g1gqfhbQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.rdu2.redhat.com [10.11.54.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 89D65101AA46; Tue, 17 May 2022 01:03:21 +0000 (UTC) Received: from localhost (unknown [10.72.47.117]) by smtp.corp.redhat.com (Postfix) with ESMTP id A649B7774; Tue, 17 May 2022 01:03:20 +0000 (UTC) From: Xiubo Li To: jlayton@kernel.org, viro@zeniv.linux.org.uk Cc: idryomov@gmail.com, vshankar@redhat.com, ceph-devel@vger.kernel.org, arnd@arndb.de, mcgrof@kernel.org, akpm@linux-foundation.org, linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org, Xiubo Li Subject: [PATCH v2 0/2] ceph: wait async unlink to finish Date: Tue, 17 May 2022 09:03:14 +0800 Message-Id: <20220517010316.81483-1-xiubli@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.11.54.5 Precedence: bulk List-ID: X-Mailing-List: ceph-devel@vger.kernel.org V2: - Add one dedicated spin lock to protect the list_add/del_rcu - Other small fixes - Fix the compile error from kernel test robot Xiubo Li (2): fs/dcache: add d_compare() helper support ceph: wait the first reply of inflight unlink/rmdir fs/ceph/dir.c | 70 ++++++++++++++++++++++++++++++++++++++--- fs/ceph/file.c | 5 +++ fs/ceph/mds_client.c | 71 ++++++++++++++++++++++++++++++++++++++++++ fs/ceph/mds_client.h | 1 + fs/ceph/super.c | 3 ++ fs/ceph/super.h | 19 ++++++++--- fs/dcache.c | 15 +++++++++ include/linux/dcache.h | 2 ++ 8 files changed, 176 insertions(+), 10 deletions(-)