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=-7.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS autolearn=no 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 306C8C432BE for ; Fri, 23 Jul 2021 16:49:56 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 17C9660E9C for ; Fri, 23 Jul 2021 16:49:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231261AbhGWQJV (ORCPT ); Fri, 23 Jul 2021 12:09:21 -0400 Received: from mail.kernel.org ([198.145.29.99]:35742 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229847AbhGWQJU (ORCPT ); Fri, 23 Jul 2021 12:09:20 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id ACEA160E73; Fri, 23 Jul 2021 16:49:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1627058993; bh=hKmvrifTJ5hhxNB0OlIO2o7MGmqI0xoWAGvLb6SWyd8=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=pAJXmewXuMBnpHRwYsxoWlieOqoi0ilWkttro/u/Lwt3l6z023p75En98+3yrxf+j NuQgQk5oc+IYL/tmHWZ6vnzDjroZVpzuSwRt9lIX4S4xFBwm+3i+0+3uXVyKJd9+qm HYtISptKYviTWX3efKfIqhWUips26lsOpsUndBMPNCwsPxUEWD5KP9JnUy44HfpEo4 DACRbL63IeP0mHAMue0/HQDUoISur+W/zF3Zuu6f9X/uw4s/nFGFivldwpYRrssADH fvV66iLs0q90zzKtpnDGllRVZ2wv/XiRqwneEOF1LN6oDm/QOEYmKGmXgof1LkJs37 v50ch+ivgI7EA== Date: Fri, 23 Jul 2021 09:49:52 -0700 From: Eric Biggers To: Satya Tangirala Cc: linux-block@vger.kernel.org, linux-kernel@vger.kernel.org, Jens Axboe Subject: Re: [PATCH v4 0/9] ensure bios aren't split in middle of crypto data unit Message-ID: References: <20210707052943.3960-1-satyaprateek2357@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210707052943.3960-1-satyaprateek2357@gmail.com> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jul 06, 2021 at 10:29:34PM -0700, Satya Tangirala wrote: > > Changes v3 => v4 > - Patch 4 in v3 has been removed (Eric points out it isn't required > without some of the changes in the device mapper patchset at > https://lore.kernel.org/linux-block/20210604210908.2105870-1-satyat@google.com/ > so I'll add this patch to that series instead. Wouldn't it make more sense to have the blk-crypto-fallback change in this series? My concern was just that it didn't make sense to have it split between the two patch series -- it seemed like one logical change. - Eric