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=-10.8 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=unavailable 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 BCF57C433ED for ; Fri, 23 Apr 2021 13:08:01 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 9170C613F5 for ; Fri, 23 Apr 2021 13:08:01 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S242588AbhDWNIf (ORCPT ); Fri, 23 Apr 2021 09:08:35 -0400 Received: from us-smtp-delivery-124.mimecast.com ([170.10.133.124]:48092 "EHLO us-smtp-delivery-124.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230305AbhDWNIY (ORCPT ); Fri, 23 Apr 2021 09:08:24 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1619183267; 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=ZiEIV54Feydxm3In/brZNAh1w14oc1bLXe4KF6wMdTU=; b=a8ymZoWrvy+Kct67/fMDpYEhEMTrp9WEDQnQXfJW+4dtqxA5KTqGEgySnKMHkxfA9eEfhk fk7MtolyNfXYMRkN3VpJHb6XJjAf8l9zvalJ6meKJkA6vUWrbcremThCdvsQJZ/dAJjSOr WFdtZnhwRCsV92gWMqRsfr5FRTu5Cq0= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-526-K22UzCxtO7iDmCD0Jo1zXg-1; Fri, 23 Apr 2021 09:07:46 -0400 X-MC-Unique: K22UzCxtO7iDmCD0Jo1zXg-1 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 03E6D343A5; Fri, 23 Apr 2021 13:07:44 +0000 (UTC) Received: from horse.redhat.com (ovpn-115-86.rdu2.redhat.com [10.10.115.86]) by smtp.corp.redhat.com (Postfix) with ESMTP id 123201B5F0; Fri, 23 Apr 2021 13:07:38 +0000 (UTC) Received: by horse.redhat.com (Postfix, from userid 10451) id 99F7E220BCF; Fri, 23 Apr 2021 09:07:37 -0400 (EDT) From: Vivek Goyal To: linux-fsdevel@vger.kernel.org, linux-nvdimm@lists.01.org, dan.j.williams@intel.com Cc: linux-kernel@vger.kernel.org, virtio-fs@redhat.com, vgoyal@redhat.com, miklos@szeredi.hu, jack@suse.cz, willy@infradead.org, slp@redhat.com, groug@kaod.org Subject: [PATCH v4 0/3] dax: Fix missed wakeup in put_unlocked_entry() Date: Fri, 23 Apr 2021 09:07:20 -0400 Message-Id: <20210423130723.1673919-1-vgoyal@redhat.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, This is V4 of the patches. Posted V3 here. https://lore.kernel.org/linux-fsdevel/20210419213636.1514816-1-vgoyal@redhat.com/ Changes since V3 are. - Renamed "enum dax_entry_wake_mode" to "enum dax_wake_mode" (Matthew Wilcox) - Changed description of WAKE_NEXT and WAKE_ALL (Jan Kara) - Got rid of a comment (Greg Kurz) Thanks Vivek Vivek Goyal (3): dax: Add an enum for specifying dax wakup mode dax: Add a wakeup mode parameter to put_unlocked_entry() dax: Wake up all waiters after invalidating dax entry fs/dax.c | 35 +++++++++++++++++++++++------------ 1 file changed, 23 insertions(+), 12 deletions(-) -- 2.25.4