From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) (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 04B0668 for ; Mon, 1 Nov 2021 16:12:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635783176; 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: in-reply-to:in-reply-to:references:references; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=OSGCzH7a9iwXipiTHXUGo0ViW4DQj+HOpxAD9jdj6SQT3OMsIMINUJqLIoxrv37CEdPivy BBYalGl+Hf/j1rPWI5ToSbwXQmb4zIXtemJC726Rt+HykiFddlTIctqsfIt08KH+Wtk5NW nmF8FM6EQKMZHFJ7vPOmuIz1BuWLhjk= Received: from mail-qk1-f197.google.com (mail-qk1-f197.google.com [209.85.222.197]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-459-R9DXjertOkGZ0tJ3dlkenQ-1; Mon, 01 Nov 2021 12:12:55 -0400 X-MC-Unique: R9DXjertOkGZ0tJ3dlkenQ-1 Received: by mail-qk1-f197.google.com with SMTP id w2-20020a3794020000b02903b54f40b442so10884183qkd.0 for ; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=aN5bwzEMB/aBx0UakktVK+qOsPjd/Cs8NhxgXvcLArEBk1VZ+y683n2l6DnDkfA+Gg pSlf52M7XDvU6o5VJ6Z+97drMVyGtQf/Zo+8QU0ly1t0uokUmmbdGsRNlRld6X0i65rr qqRMPIpX8qr2ASQxchH3urWGu2AZ5d398wGsBVtbagGk0ZQSh+viafAwWZAjjkoZ5eV4 tITcWcFabZ4EmBqy6KRtSIfK7xd6G4RKX9grtWDYp2j9oPRdq5szt+DYLBJGdyTobiiJ 24xh5dllkDkSPs8oSRZH6SrNRCB8zmrhTBPlKJnh7VRNCE8FAD8NF0CEE2KWDoSHdblu tdfg== X-Gm-Message-State: AOAM533BPrzeOBI74q+HiMusrg4018qBotwDWOuGaG9b7BVsVlR1UXZn 2okrmv5ncaqpb4m3XAUTXhXcEnItyrsQc1omqG7gJn7tYABxsBClgf90ddocBGQS+oUf/twAhh6 MaaS6jCIPfYVc7wk= X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264792qvn.62.1635783175419; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx/H7B1fdn7PP13//AwKmpta1av9FRTtOajPRoBskVHgoJcCnXd+0D44u/s4udzcALoTqA+Rw== X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264758qvn.62.1635783175189; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) Received: from localhost (pool-68-160-176-52.bstnma.fios.verizon.net. [68.160.176.52]) by smtp.gmail.com with ESMTPSA id v16sm167031qtw.90.2021.11.01.09.12.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 Nov 2021 09:12:54 -0700 (PDT) Date: Mon, 1 Nov 2021 12:12:53 -0400 From: Mike Snitzer To: Dan Williams Cc: Christoph Hellwig , Ira Weiny , device-mapper development , linux-xfs , Linux NVDIMM , linux-s390 , linux-fsdevel , linux-erofs@lists.ozlabs.org, linux-ext4 , virtualization@lists.linux-foundation.org Subject: Re: [PATCH 01/11] dm: make the DAX support dependend on CONFIG_FS_DAX Message-ID: References: <20211018044054.1779424-1-hch@lst.de> <20211018044054.1779424-2-hch@lst.de> Precedence: bulk X-Mailing-List: nvdimm@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 In-Reply-To: Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=snitzer@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, Oct 27 2021 at 4:53P -0400, Dan Williams wrote: > On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig wrote: > > > > The device mapper DAX support is all hanging off a block device and thus > > can't be used with device dax. Make it depend on CONFIG_FS_DAX instead > > of CONFIG_DAX_DRIVER. This also means that bdev_dax_pgoff only needs to > > be built under CONFIG_FS_DAX now. > > Looks good. > > Mike, can I get an ack to take this through nvdimm.git? (you'll likely > see me repeat this question on subsequent patches in this series). Sorry for late reply, but I see you punted on pushing for 5.16 merge anyway (I'm sure my lack of response didn't help, sorry about that). Acked-by: Mike Snitzer Thanks! 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 46F37C433F5 for ; Mon, 1 Nov 2021 16:13:03 +0000 (UTC) Received: from smtp2.osuosl.org (smtp2.osuosl.org [140.211.166.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id EEC2960F24 for ; Mon, 1 Nov 2021 16:13:02 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org EEC2960F24 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.linux-foundation.org Received: from localhost (localhost [127.0.0.1]) by smtp2.osuosl.org (Postfix) with ESMTP id 9F5CB401FE; Mon, 1 Nov 2021 16:13:02 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from smtp2.osuosl.org ([127.0.0.1]) by localhost (smtp2.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 9-01BlqmLGaZ; Mon, 1 Nov 2021 16:13:01 +0000 (UTC) Received: from lists.linuxfoundation.org (lf-lists.osuosl.org [IPv6:2605:bc80:3010:104::8cd3:938]) by smtp2.osuosl.org (Postfix) with ESMTPS id ED71540153; Mon, 1 Nov 2021 16:13:00 +0000 (UTC) Received: from lf-lists.osuosl.org (localhost [127.0.0.1]) by lists.linuxfoundation.org (Postfix) with ESMTP id C1F1AC0019; Mon, 1 Nov 2021 16:13:00 +0000 (UTC) Received: from smtp3.osuosl.org (smtp3.osuosl.org [IPv6:2605:bc80:3010::136]) by lists.linuxfoundation.org (Postfix) with ESMTP id A26E0C000E for ; Mon, 1 Nov 2021 16:12:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by smtp3.osuosl.org (Postfix) with ESMTP id 7CF3B605D9 for ; Mon, 1 Nov 2021 16:12:58 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Authentication-Results: smtp3.osuosl.org (amavisd-new); dkim=pass (1024-bit key) header.d=redhat.com Received: from smtp3.osuosl.org ([127.0.0.1]) by localhost (smtp3.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id DO9LNzQWiHs4 for ; Mon, 1 Nov 2021 16:12:58 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.8.0 Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by smtp3.osuosl.org (Postfix) with ESMTPS id E51FC605D5 for ; Mon, 1 Nov 2021 16:12:57 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635783176; 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: in-reply-to:in-reply-to:references:references; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=OSGCzH7a9iwXipiTHXUGo0ViW4DQj+HOpxAD9jdj6SQT3OMsIMINUJqLIoxrv37CEdPivy BBYalGl+Hf/j1rPWI5ToSbwXQmb4zIXtemJC726Rt+HykiFddlTIctqsfIt08KH+Wtk5NW nmF8FM6EQKMZHFJ7vPOmuIz1BuWLhjk= Received: from mail-qv1-f69.google.com (mail-qv1-f69.google.com [209.85.219.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-121-OLAyW36-O7m838saNZlsfA-1; Mon, 01 Nov 2021 12:12:55 -0400 X-MC-Unique: OLAyW36-O7m838saNZlsfA-1 Received: by mail-qv1-f69.google.com with SMTP id kc11-20020a056214410b00b003886a263a48so13471156qvb.12 for ; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=m8/WGnrr5962NMmC/ZgbIhMUD6tiP8Omp7D8X3d5XbZqe+hc4jAB8YTbFE+Ipmnn5u OIQSBIJJ72M5JK0PcO/HcgE1g6dq8HzacGhG01tmejMO3VovVHLbhfTYkxCv+K+n1p8e oNNOr5C4vYsax0jiTetsKbC8PKdEOJTatshIMOAgVIY/oUke0RsBBrVaM5WA0dcE2mSg PMlZa0IF7JmmnSqFTCXbYIeDYoGa12uNndqL9tRGDjxFm189GzR3ic5qSBJbP+XbYOlt vwHkSuzP5aSvOmNbpbngRToKvenpUGhJgrLCUdUFCQm6NlgeObua0soBKBM/0dDnCQUO bCoA== X-Gm-Message-State: AOAM530LKk/8syx0rfSzHhuUSVtLW4exy82knDt39veI7TIoY+w2LreE x5gep3A1kT6BnvkiT0E4mV+WzLEYzM4ZJKUspgQrzMrECtRoEPeZKBlpbB8hXU0D4XOgcFRbpJd cYsH+PhHJ7l5nLn7xwiTc3o+BwTxDlWa8rEwKeDj4 X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264795qvn.62.1635783175421; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx/H7B1fdn7PP13//AwKmpta1av9FRTtOajPRoBskVHgoJcCnXd+0D44u/s4udzcALoTqA+Rw== X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264758qvn.62.1635783175189; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) Received: from localhost (pool-68-160-176-52.bstnma.fios.verizon.net. [68.160.176.52]) by smtp.gmail.com with ESMTPSA id v16sm167031qtw.90.2021.11.01.09.12.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 Nov 2021 09:12:54 -0700 (PDT) Date: Mon, 1 Nov 2021 12:12:53 -0400 From: Mike Snitzer To: Dan Williams Subject: Re: [PATCH 01/11] dm: make the DAX support dependend on CONFIG_FS_DAX Message-ID: References: <20211018044054.1779424-1-hch@lst.de> <20211018044054.1779424-2-hch@lst.de> MIME-Version: 1.0 In-Reply-To: Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=snitzer@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline Cc: Linux NVDIMM , linux-s390 , linux-erofs@lists.ozlabs.org, virtualization@lists.linux-foundation.org, linux-xfs , device-mapper development , linux-fsdevel , linux-ext4 , Ira Weiny , Christoph Hellwig X-BeenThere: virtualization@lists.linux-foundation.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: Linux virtualization List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: virtualization-bounces@lists.linux-foundation.org Sender: "Virtualization" On Wed, Oct 27 2021 at 4:53P -0400, Dan Williams wrote: > On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig wrote: > > > > The device mapper DAX support is all hanging off a block device and thus > > can't be used with device dax. Make it depend on CONFIG_FS_DAX instead > > of CONFIG_DAX_DRIVER. This also means that bdev_dax_pgoff only needs to > > be built under CONFIG_FS_DAX now. > > Looks good. > > Mike, can I get an ack to take this through nvdimm.git? (you'll likely > see me repeat this question on subsequent patches in this series). Sorry for late reply, but I see you punted on pushing for 5.16 merge anyway (I'm sure my lack of response didn't help, sorry about that). Acked-by: Mike Snitzer Thanks! _______________________________________________ Virtualization mailing list Virtualization@lists.linux-foundation.org https://lists.linuxfoundation.org/mailman/listinfo/virtualization 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 16956C433EF for ; Mon, 1 Nov 2021 16:13:20 +0000 (UTC) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id B682661051 for ; Mon, 1 Nov 2021 16:13:19 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org B682661051 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=tempfail smtp.mailfrom=redhat.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635783198; h=from:from:sender:sender: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: in-reply-to:in-reply-to:references:references:list-id:list-help: list-unsubscribe:list-subscribe:list-post; bh=GzVhSCadZEG2e9/07SnR9HRRnFlarHDp0FhKMbtkdLE=; b=hvez+jNCfi8+LlRTh5EfSEmtqOnmVymvbWxhRWhZiDL8ikXOi0y9Coor8Q4cI9onZ9OFQU YsOi29m3GR8fCTBObZs7lX4CO7fyl5DCzlJdpB38ouyiH+qqobvo0YX5XcN0zpFOZxQLTe eEt3uliGqVw4vuDyBEVJ0DFwVIMJ1xg= 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-393-U7kuauBePSuyVQtICny-cQ-1; Mon, 01 Nov 2021 12:13:15 -0400 X-MC-Unique: U7kuauBePSuyVQtICny-cQ-1 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id D99E710066F3; Mon, 1 Nov 2021 16:13:08 +0000 (UTC) Received: from colo-mx.corp.redhat.com (colo-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.21]) by smtp.corp.redhat.com (Postfix) with ESMTPS id E651E5F4F7; Mon, 1 Nov 2021 16:13:07 +0000 (UTC) Received: from lists01.pubmisc.prod.ext.phx2.redhat.com (lists01.pubmisc.prod.ext.phx2.redhat.com [10.5.19.33]) by colo-mx.corp.redhat.com (Postfix) with ESMTP id 841C84EA2A; Mon, 1 Nov 2021 16:13:05 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.rdu2.redhat.com [10.11.54.1]) by lists01.pubmisc.prod.ext.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id 1A1GD3tC002865 for ; Mon, 1 Nov 2021 12:13:03 -0400 Received: by smtp.corp.redhat.com (Postfix) id 65D91400DEF8; Mon, 1 Nov 2021 16:13:03 +0000 (UTC) Received: from mimecast-mx02.redhat.com (mimecast01.extmail.prod.ext.rdu2.redhat.com [10.11.55.17]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 603B34010E89 for ; Mon, 1 Nov 2021 16:13:03 +0000 (UTC) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [207.211.31.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 433B1899EC1 for ; Mon, 1 Nov 2021 16:13:03 +0000 (UTC) Received: from mail-qv1-f70.google.com (mail-qv1-f70.google.com [209.85.219.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-59-ETeGta7-MuyYtVq1qAO_Zg-1; Mon, 01 Nov 2021 12:13:02 -0400 X-MC-Unique: ETeGta7-MuyYtVq1qAO_Zg-1 Received: by mail-qv1-f70.google.com with SMTP id kd7-20020a056214400700b003b54713452cso1133571qvb.13 for ; Mon, 01 Nov 2021 09:13:02 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=iN6ls7sBjYf+kwXI3LT8SVqY0UxiqOKaYorm2VSxf6fmDwQ4BOMLCeMzigngrz6a8C xubPpCWblWM6kPFAM+5vyroVJjm/8666RAJrzLNr+THnlSUDlKGVzdA0A6Pe9d+TY5IA eC+WqYVwwYG8I/FwgKljD0e+sMA3u61LLTdbNWxjaixlhsS3PT/zlDr6FfASdz06UHjA XqIldEWEcu5/rTSBBuffh5QoS6b9gv5eIWZ4jPrkpn5T85RAMWESHgmS4bi95NkzxwSK jhy3xsN0jX6R6uVwIXlTOxOJ1juBkMbgehfp4BdKm96DwUSyuaL/hUP9iX3R9M4EE3m6 kj0Q== X-Gm-Message-State: AOAM530wMzypdcRG5YaBFQcXgct4BXWAQIePchKc7Z9nylwwHCkISMvP HoRodA8hX6+q0U6Di4APuxVLr+7ou6DtM/gNSyxCCqArU9czvIkycGt+JYTGM7r/fJl+g7eJ0Mv xVd2Oth+HpM5rmw== X-Received: by 2002:a0c:e708:: with SMTP id d8mr23265257qvn.62.1635783179261; Mon, 01 Nov 2021 09:12:59 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx/H7B1fdn7PP13//AwKmpta1av9FRTtOajPRoBskVHgoJcCnXd+0D44u/s4udzcALoTqA+Rw== X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264758qvn.62.1635783175189; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) Received: from localhost (pool-68-160-176-52.bstnma.fios.verizon.net. [68.160.176.52]) by smtp.gmail.com with ESMTPSA id v16sm167031qtw.90.2021.11.01.09.12.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 Nov 2021 09:12:54 -0700 (PDT) Date: Mon, 1 Nov 2021 12:12:53 -0400 From: Mike Snitzer To: Dan Williams Message-ID: References: <20211018044054.1779424-1-hch@lst.de> <20211018044054.1779424-2-hch@lst.de> MIME-Version: 1.0 In-Reply-To: X-Scanned-By: MIMEDefang 2.84 on 10.11.54.1 X-loop: dm-devel@redhat.com Cc: Linux NVDIMM , linux-s390 , linux-erofs@lists.ozlabs.org, virtualization@lists.linux-foundation.org, linux-xfs , device-mapper development , linux-fsdevel , linux-ext4 , Ira Weiny , Christoph Hellwig Subject: Re: [dm-devel] [PATCH 01/11] dm: make the DAX support dependend on CONFIG_FS_DAX X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.12 Precedence: junk List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dm-devel-bounces@redhat.com Errors-To: dm-devel-bounces@redhat.com X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dm-devel-bounces@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Disposition: inline Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit On Wed, Oct 27 2021 at 4:53P -0400, Dan Williams wrote: > On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig wrote: > > > > The device mapper DAX support is all hanging off a block device and thus > > can't be used with device dax. Make it depend on CONFIG_FS_DAX instead > > of CONFIG_DAX_DRIVER. This also means that bdev_dax_pgoff only needs to > > be built under CONFIG_FS_DAX now. > > Looks good. > > Mike, can I get an ack to take this through nvdimm.git? (you'll likely > see me repeat this question on subsequent patches in this series). Sorry for late reply, but I see you punted on pushing for 5.16 merge anyway (I'm sure my lack of response didn't help, sorry about that). Acked-by: Mike Snitzer Thanks! -- dm-devel mailing list dm-devel@redhat.com https://listman.redhat.com/mailman/listinfo/dm-devel 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 mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 312B5C433EF for ; Mon, 1 Nov 2021 16:14:23 +0000 (UTC) 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 mail.kernel.org (Postfix) with ESMTPS id 9CE35610A5 for ; Mon, 1 Nov 2021 16:14:22 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.4.1 mail.kernel.org 9CE35610A5 Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=redhat.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=lists.ozlabs.org Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4HjdQP0Pmrz2yNG for ; Tue, 2 Nov 2021 03:14:21 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; dkim=fail reason="signature verification failed" (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=BmFObHBK; dkim=fail reason="signature verification failed" (1024-bit key) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=HkcWOoMD; dkim-atps=neutral Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=redhat.com (client-ip=170.10.133.124; helo=us-smtp-delivery-124.mimecast.com; envelope-from=snitzer@redhat.com; receiver=) Authentication-Results: lists.ozlabs.org; dkim=pass (1024-bit key; unprotected) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=BmFObHBK; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.a=rsa-sha256 header.s=mimecast20190719 header.b=HkcWOoMD; dkim-atps=neutral Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4HjdQC3gSBz2xY6 for ; Tue, 2 Nov 2021 03:14:11 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635783248; 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: in-reply-to:in-reply-to:references:references; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=BmFObHBKnXlX3x8T+S8igltipJCZ+z/U2c2pg5UsvGtJJwPDBrnGICnfuajB4nbC721/Lo N3ESjOdMvj0q/UsDAisQ2lyU7gPUjaFvTFnkljuGfZ0Qd0RUJ3lTR2/L0tnQw0yaUv0TXU DY49lr27MbfcCCjHUR+4mRNqp5RQtMI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1635783249; 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: in-reply-to:in-reply-to:references:references; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=HkcWOoMDgq5dKe2oPRbUNNy03asuFTbg23R9sZ/JGi+BaC7HHbFE+lV4X34IgERrNJ7/mj lnxsY7akEOeu23+N/yKsF8y723v5NrF0uxkJ2f8QkcCtcEWHlj8ka/eZvju/ey40KGnXA4 b68vczJQe/Nc7J+nxPV5t6bTEhbUvgw= Received: from mail-qv1-f69.google.com (mail-qv1-f69.google.com [209.85.219.69]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-121-zoQqE6FMOi2VJxMy9vDjCA-1; Mon, 01 Nov 2021 12:12:55 -0400 X-MC-Unique: zoQqE6FMOi2VJxMy9vDjCA-1 Received: by mail-qv1-f69.google.com with SMTP id q9-20020ad45749000000b00382b7c83aa1so16734050qvx.11 for ; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=+G6SzjVTR+LCyYNlG0zbcp2+gduPxDNU+2Zc+nwBRpo=; b=mkNVeiAYMLxxbD3CfeyWI3sccYSZkwXbvx7tIWBkhZpZn87KLEg09qzKzsVqagpIge +/eIRnxjMjFovQujZfWJsO7x11IUvxCedJGeSOH43Ku9W2xu5U+uoIWy/hu227/HUl5Q MiygL3e4eTdHsYCKp2BekhtvQOeQaMPIY2TJQ773vVcJ5iKZdwMEAKnVuLNlXEoK/hCJ ZDKQ/k5PSAU8nJwzN+xjQYdh3z/2PPMp2sQMx7xgsIPT6Jh/Ces22xNq5q349aH6VeRl sfSfZqGL/xOqZ3yoWO2I1XvYTH6D1rIsj7rXHOrR59H+O3ikmFH7ufL/ZC9QhkBarASP 2SNQ== X-Gm-Message-State: AOAM531D3dnSb8poXIPUU8m8ZDRSB2ITtECSsKJxmUYy9WWSvkz20bQn +fZSIiNAG+BcL5ndSKSMb1WS3geJPc1uxCdhdgahuBH6E/hoGa2Jpffn5AukUkJim89FFixI8pN oXo21md8hepXIm/BMOxeF6tI= X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264793qvn.62.1635783175419; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) X-Google-Smtp-Source: ABdhPJx/H7B1fdn7PP13//AwKmpta1av9FRTtOajPRoBskVHgoJcCnXd+0D44u/s4udzcALoTqA+Rw== X-Received: by 2002:a0c:e708:: with SMTP id d8mr23264758qvn.62.1635783175189; Mon, 01 Nov 2021 09:12:55 -0700 (PDT) Received: from localhost (pool-68-160-176-52.bstnma.fios.verizon.net. [68.160.176.52]) by smtp.gmail.com with ESMTPSA id v16sm167031qtw.90.2021.11.01.09.12.54 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 01 Nov 2021 09:12:54 -0700 (PDT) Date: Mon, 1 Nov 2021 12:12:53 -0400 From: Mike Snitzer To: Dan Williams Subject: Re: [PATCH 01/11] dm: make the DAX support dependend on CONFIG_FS_DAX Message-ID: References: <20211018044054.1779424-1-hch@lst.de> <20211018044054.1779424-2-hch@lst.de> MIME-Version: 1.0 In-Reply-To: Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=snitzer@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=us-ascii 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: Linux NVDIMM , linux-s390 , linux-erofs@lists.ozlabs.org, virtualization@lists.linux-foundation.org, linux-xfs , device-mapper development , linux-fsdevel , linux-ext4 , Ira Weiny , Christoph Hellwig Errors-To: linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Sender: "Linux-erofs" On Wed, Oct 27 2021 at 4:53P -0400, Dan Williams wrote: > On Sun, Oct 17, 2021 at 9:41 PM Christoph Hellwig wrote: > > > > The device mapper DAX support is all hanging off a block device and thus > > can't be used with device dax. Make it depend on CONFIG_FS_DAX instead > > of CONFIG_DAX_DRIVER. This also means that bdev_dax_pgoff only needs to > > be built under CONFIG_FS_DAX now. > > Looks good. > > Mike, can I get an ack to take this through nvdimm.git? (you'll likely > see me repeat this question on subsequent patches in this series). Sorry for late reply, but I see you punted on pushing for 5.16 merge anyway (I'm sure my lack of response didn't help, sorry about that). Acked-by: Mike Snitzer Thanks!