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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id C73A9C4332F for ; Wed, 27 Apr 2022 23:54:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231229AbiD0X5T (ORCPT ); Wed, 27 Apr 2022 19:57:19 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:51916 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229700AbiD0X5M (ORCPT ); Wed, 27 Apr 2022 19:57:12 -0400 Received: from mail-pj1-f51.google.com (mail-pj1-f51.google.com [209.85.216.51]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 78EBC264D; Wed, 27 Apr 2022 16:54:00 -0700 (PDT) Received: by mail-pj1-f51.google.com with SMTP id o69so1417073pjo.3; Wed, 27 Apr 2022 16:54:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=t4qis+J9QIOKnM3fbYktt9NFhZKrRI7DhwX8G2bL9zc=; b=On2H6CsuJv+tmIz+9ADRj2NccrHplcElyL0ao8xw5b14OeACByx6gI5SmyLkcsqaP5 YKC+WJf4QLbHLbjCj1BrrvpH4a6h9Il8AYLNHX9DcUrnV0+PB5Z1kjhkaFr3RyQ9cuda LuyJL2BZEiM73nQO0vhov+/DIdUQUDvr+Md9uuQdJHtTh+h1PJIMeU2F4LiSC0SzVRiF 9ZmZ8bc3wZGEMRN2VVvRqZv3egZH/ogTi0q5bGbnmEGJeCGzKOXYicWJe/Xq5JKRBxSr OVD8ZbWk26CGnI3i9+ggLlgwJxPl0/2kybItNT2/6IdqOtsxqAH5FWeNujSCofpHzEuD A1OA== X-Gm-Message-State: AOAM530sAwTpnEaRgeRDC+/2oh1WoTDJlBN+dr/Ezr0CPDNv0LqGC5xz bSkuXlF1Y2ZRbyYHgx+0zqE= X-Google-Smtp-Source: ABdhPJzohQgvyNpdAnb7nqeKJuNjp6awQ1YNHqFULIu63hwwYMU72SrE0583NaL55rzyxWBEIH5+Qg== X-Received: by 2002:a17:902:cf0b:b0:151:9d28:f46f with SMTP id i11-20020a170902cf0b00b001519d28f46fmr30536375plg.53.1651103639942; Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Received: from ?IPV6:2620:15c:211:201:6cbb:d78e:9b3:bb62? ([2620:15c:211:201:6cbb:d78e:9b3:bb62]) by smtp.gmail.com with ESMTPSA id p125-20020a62d083000000b0050d475ed4d2sm10860790pfg.197.2022.04.27.16.53.57 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Message-ID: Date: Wed, 27 Apr 2022 16:53:56 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Subject: Re: [PATCH 03/16] block: add bdev_zone_no helper Content-Language: en-US To: Pankaj Raghav , jaegeuk@kernel.org, axboe@kernel.dk, snitzer@kernel.org, hch@lst.de, mcgrof@kernel.org, naohiro.aota@wdc.com, sagi@grimberg.me, damien.lemoal@opensource.wdc.com, dsterba@suse.com, johannes.thumshirn@wdc.com Cc: linux-kernel@vger.kernel.org, linux-btrfs@vger.kernel.org, clm@fb.com, gost.dev@samsung.com, chao@kernel.org, linux-f2fs-devel@lists.sourceforge.net, josef@toxicpanda.com, jonathan.derrick@linux.dev, agk@redhat.com, kbusch@kernel.org, kch@nvidia.com, linux-nvme@lists.infradead.org, dm-devel@redhat.com, jiangbo.365@bytedance.com, linux-fsdevel@vger.kernel.org, matias.bjorling@wdc.com, linux-block@vger.kernel.org References: <20220427160255.300418-1-p.raghav@samsung.com> <20220427160255.300418-4-p.raghav@samsung.com> From: Bart Van Assche In-Reply-To: <20220427160255.300418-4-p.raghav@samsung.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-block@vger.kernel.org On 4/27/22 09:02, Pankaj Raghav wrote: > +static inline unsigned int bdev_zone_no(struct block_device *bdev, sector_t sec) > +{ > + struct request_queue *q = bdev_get_queue(bdev); > + > + if (q) > + return blk_queue_zone_no(q, sec); > + return 0; > +} This patch series has been split incorrectly: the same patch that introduces a new function should also introduce a caller to that function. Thanks, Bart. 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.sourceforge.net (lists.sourceforge.net [216.105.38.7]) (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 6F145C433F5 for ; Wed, 27 Apr 2022 23:54:09 +0000 (UTC) Received: from [127.0.0.1] (helo=sfs-ml-4.v29.lw.sourceforge.com) by sfs-ml-4.v29.lw.sourceforge.com with esmtp (Exim 4.94.2) (envelope-from ) id 1njrU0-0003AU-QF; Wed, 27 Apr 2022 23:54:07 +0000 Received: from [172.30.20.202] (helo=mx.sourceforge.net) by sfs-ml-4.v29.lw.sourceforge.com with esmtps (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1njrTz-0003AO-QG for linux-f2fs-devel@lists.sourceforge.net; Wed, 27 Apr 2022 23:54:06 +0000 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sourceforge.net; s=x; h=Content-Transfer-Encoding:Content-Type:In-Reply-To: From:References:Cc:To:Subject:MIME-Version:Date:Message-ID:Sender:Reply-To: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=t4qis+J9QIOKnM3fbYktt9NFhZKrRI7DhwX8G2bL9zc=; b=SlxKPLPgKoo+zRbW25MZgb4Bas z3Yv7/qT/YB5KZRiKHGRRWqM0J4nn2lrj7W9GSwsiVYtBZLXc71tT9Ujg3xrVcz9oB+G/qf8sUH6W k4edZGMffOUsNUO41ZtdKwXOVCAGySo9Plw4wbSbAyy3hFcAvwLnxdGog4wPxpTPs+nk=; DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sf.net; s=x ; h=Content-Transfer-Encoding:Content-Type:In-Reply-To:From:References:Cc:To: Subject:MIME-Version:Date:Message-ID:Sender:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=t4qis+J9QIOKnM3fbYktt9NFhZKrRI7DhwX8G2bL9zc=; b=kQezcIP00uWsa6gkCVJtz46Se+ hSdrZJKdJ6F3zZeiJBME3T50hmyX3RUsmKHMjNgxVFFjb2pu2FHczo/hKKKmqGT3NS9e1GEdFE05U /5pyW2/GgpAghTeab5V6UuE1TDvfpD8sBekjzPzXzfdc//8gEz17d9yIXUvdlnNz0tAo=; Received: from mail-pl1-f182.google.com ([209.85.214.182]) by sfi-mx-2.v28.lw.sourceforge.com with esmtps (TLS1.2:ECDHE-RSA-AES128-GCM-SHA256:128) (Exim 4.94.2) id 1njrTx-00011u-H3 for linux-f2fs-devel@lists.sourceforge.net; Wed, 27 Apr 2022 23:54:05 +0000 Received: by mail-pl1-f182.google.com with SMTP id p6so2884765plf.9 for ; Wed, 27 Apr 2022 16:54:05 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=t4qis+J9QIOKnM3fbYktt9NFhZKrRI7DhwX8G2bL9zc=; b=iN+UPB0fT9Tymj/bj6qEeCswLHP85Llfxbr19N3xUVlLNsllpZ9JCwDgOdGGxoJX3t A1YFcQv+dLlb1vNSQ5N696fnA9CtzfLlnBqIW9jr+ybQpa/YPBWPjJOIUcFvFeGdvt4C 6GpAjUVkFyx3L7ZQhpdYNyb9JohMhT/AD5FEF2BcTIWJw43gYw8XHk+ivTODUaeneG2J 2b/Hh7qU1NfxhSu9Jjj2tIefKLSDuwQpDKZNayzad8oYKvwOecy4SNYfAeC55e/KAua1 sR534OWBeAGenxKvv8jygebUpuTZc74Zh1GgiUzLhEU76IsQEKtGgyOF12tIObcXDhl5 b07w== X-Gm-Message-State: AOAM532oLG1aLbP9CT9lWThMPy4Z7LTNcFWSr1WnuA+XYIxck3cz9Nqh ZjaFOHvBiaitpm+ZhzYVDYQ= X-Google-Smtp-Source: ABdhPJzohQgvyNpdAnb7nqeKJuNjp6awQ1YNHqFULIu63hwwYMU72SrE0583NaL55rzyxWBEIH5+Qg== X-Received: by 2002:a17:902:cf0b:b0:151:9d28:f46f with SMTP id i11-20020a170902cf0b00b001519d28f46fmr30536375plg.53.1651103639942; Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Received: from ?IPV6:2620:15c:211:201:6cbb:d78e:9b3:bb62? ([2620:15c:211:201:6cbb:d78e:9b3:bb62]) by smtp.gmail.com with ESMTPSA id p125-20020a62d083000000b0050d475ed4d2sm10860790pfg.197.2022.04.27.16.53.57 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Message-ID: Date: Wed, 27 Apr 2022 16:53:56 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 Content-Language: en-US To: Pankaj Raghav , jaegeuk@kernel.org, axboe@kernel.dk, snitzer@kernel.org, hch@lst.de, mcgrof@kernel.org, naohiro.aota@wdc.com, sagi@grimberg.me, damien.lemoal@opensource.wdc.com, dsterba@suse.com, johannes.thumshirn@wdc.com References: <20220427160255.300418-1-p.raghav@samsung.com> <20220427160255.300418-4-p.raghav@samsung.com> From: Bart Van Assche In-Reply-To: <20220427160255.300418-4-p.raghav@samsung.com> X-Headers-End: 1njrTx-00011u-H3 Subject: Re: [f2fs-dev] [PATCH 03/16] block: add bdev_zone_no helper X-BeenThere: linux-f2fs-devel@lists.sourceforge.net X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: jiangbo.365@bytedance.com, kch@nvidia.com, matias.bjorling@wdc.com, gost.dev@samsung.com, linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, linux-f2fs-devel@lists.sourceforge.net, linux-block@vger.kernel.org, clm@fb.com, dm-devel@redhat.com, agk@redhat.com, jonathan.derrick@linux.dev, kbusch@kernel.org, linux-fsdevel@vger.kernel.org, josef@toxicpanda.com, linux-btrfs@vger.kernel.org Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: linux-f2fs-devel-bounces@lists.sourceforge.net On 4/27/22 09:02, Pankaj Raghav wrote: > +static inline unsigned int bdev_zone_no(struct block_device *bdev, sector_t sec) > +{ > + struct request_queue *q = bdev_get_queue(bdev); > + > + if (q) > + return blk_queue_zone_no(q, sec); > + return 0; > +} This patch series has been split incorrectly: the same patch that introduces a new function should also introduce a caller to that function. Thanks, Bart. _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-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 us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) (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 2EFACC433F5 for ; Wed, 27 Apr 2022 23:54:13 +0000 (UTC) Received: from mimecast-mx02.redhat.com (mx3-rdu2.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-541-bdU30P81OF6hla1Wn8ssVw-1; Wed, 27 Apr 2022 19:54:09 -0400 X-MC-Unique: bdU30P81OF6hla1Wn8ssVw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.rdu2.redhat.com [10.11.54.3]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 82EC31C05AF7; Wed, 27 Apr 2022 23:54:07 +0000 (UTC) Received: from mm-prod-listman-01.mail-001.prod.us-east-1.aws.redhat.com (mm-prod-listman-01.mail-001.prod.us-east-1.aws.redhat.com [10.30.29.100]) by smtp.corp.redhat.com (Postfix) with ESMTP id 6F7FE111D78B; Wed, 27 Apr 2022 23:54:07 +0000 (UTC) Received: from mm-prod-listman-01.mail-001.prod.us-east-1.aws.redhat.com (localhost [IPv6:::1]) by mm-prod-listman-01.mail-001.prod.us-east-1.aws.redhat.com (Postfix) with ESMTP id CFEC71947046; Wed, 27 Apr 2022 23:54:04 +0000 (UTC) Received: from smtp.corp.redhat.com (int-mx09.intmail.prod.int.rdu2.redhat.com [10.11.54.9]) by mm-prod-listman-01.mail-001.prod.us-east-1.aws.redhat.com (Postfix) with ESMTP id 9E75F1947041 for ; Wed, 27 Apr 2022 23:54:03 +0000 (UTC) Received: by smtp.corp.redhat.com (Postfix) id 82AD4550A27; Wed, 27 Apr 2022 23:54:03 +0000 (UTC) Received: from mimecast-mx02.redhat.com (mimecast09.extmail.prod.ext.rdu2.redhat.com [10.11.55.25]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 7E415469A4C for ; Wed, 27 Apr 2022 23:54:03 +0000 (UTC) Received: from us-smtp-1.mimecast.com (us-smtp-1.mimecast.com [207.211.31.81]) (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 6397929AA2EF for ; Wed, 27 Apr 2022 23:54:03 +0000 (UTC) Received: from mail-pj1-f46.google.com (mail-pj1-f46.google.com [209.85.216.46]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id us-mta-599-nkfnQA4bO7e27sloD0Mm7w-1; Wed, 27 Apr 2022 19:54:01 -0400 X-MC-Unique: nkfnQA4bO7e27sloD0Mm7w-1 Received: by mail-pj1-f46.google.com with SMTP id fv2so2778544pjb.4; Wed, 27 Apr 2022 16:54:00 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:message-id:date:mime-version:user-agent:subject :content-language:to:cc:references:from:in-reply-to :content-transfer-encoding; bh=t4qis+J9QIOKnM3fbYktt9NFhZKrRI7DhwX8G2bL9zc=; b=Oc3D1gxkkW+tYbmkZBGgqW5iafolxsS63UXserdpQdmyoMCPS1wTFQv6lWHUMkovjN Dyk7JU+Re+ss/lZ2H6Q9k1hTNZt36gtUj0HwKHspRfgxZ2nPDcQdmXSMEZgquHZsQaKi K+yq5jlkLYWpCqlGbDsllZgfDUQGjtMzYV60s2PB4B8dEZRpZBlGsfTM1XTUhdyCfI8O H2NP+WR9rkEsQiSNMi0g2S+WzLEmouGe3kTRByJUL33AMkhfeF3CE5Ia9Xq7w4RwrKwv fMePYAVYHj4zHqT+yqYra5Gt8gfVEoxo6fVT+kwCeP9RLCyD2Pg7HARB3CAlRlrDC6tg n6xg== X-Gm-Message-State: AOAM531Xpb7VRJStEFVmwkAo1P3OQKMFhjBwaHC7EAeBLpXjiZOgY77e 5zeiln5OZ4etSuAVe2G50nw= X-Google-Smtp-Source: ABdhPJzohQgvyNpdAnb7nqeKJuNjp6awQ1YNHqFULIu63hwwYMU72SrE0583NaL55rzyxWBEIH5+Qg== X-Received: by 2002:a17:902:cf0b:b0:151:9d28:f46f with SMTP id i11-20020a170902cf0b00b001519d28f46fmr30536375plg.53.1651103639942; Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Received: from ?IPV6:2620:15c:211:201:6cbb:d78e:9b3:bb62? ([2620:15c:211:201:6cbb:d78e:9b3:bb62]) by smtp.gmail.com with ESMTPSA id p125-20020a62d083000000b0050d475ed4d2sm10860790pfg.197.2022.04.27.16.53.57 (version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256 bits=128/128); Wed, 27 Apr 2022 16:53:59 -0700 (PDT) Message-ID: Date: Wed, 27 Apr 2022 16:53:56 -0700 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.7.0 To: Pankaj Raghav , jaegeuk@kernel.org, axboe@kernel.dk, snitzer@kernel.org, hch@lst.de, mcgrof@kernel.org, naohiro.aota@wdc.com, sagi@grimberg.me, damien.lemoal@opensource.wdc.com, dsterba@suse.com, johannes.thumshirn@wdc.com References: <20220427160255.300418-1-p.raghav@samsung.com> <20220427160255.300418-4-p.raghav@samsung.com> From: Bart Van Assche In-Reply-To: <20220427160255.300418-4-p.raghav@samsung.com> X-Mimecast-Impersonation-Protect: Policy=CLT - Impersonation Protection Definition; Similar Internal Domain=false; Similar Monitored External Domain=false; Custom External Domain=false; Mimecast External Domain=false; Newly Observed Domain=false; Internal User Name=false; Custom Display Name List=false; Reply-to Address Mismatch=false; Targeted Threat Dictionary=false; Mimecast Threat Dictionary=false; Custom Threat Dictionary=false X-Scanned-By: MIMEDefang 2.85 on 10.11.54.9 Subject: Re: [dm-devel] [PATCH 03/16] block: add bdev_zone_no helper X-BeenThere: dm-devel@redhat.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: device-mapper development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: jiangbo.365@bytedance.com, kch@nvidia.com, matias.bjorling@wdc.com, gost.dev@samsung.com, chao@kernel.org, linux-kernel@vger.kernel.org, linux-nvme@lists.infradead.org, linux-f2fs-devel@lists.sourceforge.net, linux-block@vger.kernel.org, clm@fb.com, dm-devel@redhat.com, agk@redhat.com, jonathan.derrick@linux.dev, kbusch@kernel.org, linux-fsdevel@vger.kernel.org, josef@toxicpanda.com, linux-btrfs@vger.kernel.org Errors-To: dm-devel-bounces@redhat.com Sender: "dm-devel" X-Scanned-By: MIMEDefang 2.78 on 10.11.54.3 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-Language: en-US Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" On 4/27/22 09:02, Pankaj Raghav wrote: > +static inline unsigned int bdev_zone_no(struct block_device *bdev, sector_t sec) > +{ > + struct request_queue *q = bdev_get_queue(bdev); > + > + if (q) > + return blk_queue_zone_no(q, sec); > + return 0; > +} This patch series has been split incorrectly: the same patch that introduces a new function should also introduce a caller to that function. Thanks, Bart. -- dm-devel mailing list dm-devel@redhat.com https://listman.redhat.com/mailman/listinfo/dm-devel