Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp2157472pxb; Mon, 22 Feb 2021 23:06:42 -0800 (PST) X-Google-Smtp-Source: ABdhPJxAxPmvChO4S8aevrWw69K8m9Sc35HPg7AR5NmmzIbX3FDhblz1SmFtl3tTU1SD87Eiphrf X-Received: by 2002:a17:906:c44d:: with SMTP id ck13mr111994ejb.103.1614064002251; Mon, 22 Feb 2021 23:06:42 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1614064002; cv=none; d=google.com; s=arc-20160816; b=prWXmXhi6uzQ0+DVbYBovomzTCtGN5s1bYj5+Xq7G0q+dynBH2rDav8GDmeKF+iwXJ ASp6MJ/vDBxno98Uv3zUNEn/bZCAaz9qdaWiHwk1VgL+oFmPk7j5drnBx35sx8uZNqab aZZKPVzgI3wNZVMcwb0jyEt2+rlVP7Ds6deVsKZSXuBh9hdZKADCK+Pbixe3IEml0ysL OLATTNWuatty2xv+ErV6B8kOmVp0Xqkks6NVB2wa5Ow9V5iMkjYHk1mt8YkQCdN9K61a RrhLp/eGsMh82yZ7/fhLZgc2aC+RW8Anqw9jKa/nJjTJobqhlQcQ7f2aP7hGHogsAft6 j4WQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:user-agent:in-reply-to:content-disposition :mime-version:references:message-id:subject:cc:to:from:date; bh=+z9Od9mP+EjtA8GwTwAWL9PI9mia3j6DvL+szjj7HYg=; b=QAjKi5EV0WFWRfz+TBE4bgtEglGi4J475KPsuLy/WuROeGRmhdTUj/JxUbHNDLsqw+ PJcsAr10OHucjAOV5FdLSluRuMioygHRK1+h7EJruCI37hxLYXEGqpbfKE7QSPQgcbV7 kNRqcufFhMrkww6ZX2P4xVDHL8sXbsPzgUOyNlBtDyhCi1mUK9+QYvgUXBQGySwT0vhk ckesB0/NgoeXKhioTKl9gHkURRxHjM5I1nERv7Jz3zEteqK6UePdlkais+RWzdANsyZq IZGGwi9Nwa038JYy4hEY8oE8KU980v/7nnEHzLfotftr/krmCBTt9BQHSfcv+ODzJi2B nf+w== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id hk1si2451049ejb.36.2021.02.22.23.06.17; Mon, 22 Feb 2021 23:06:42 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231527AbhBWHEx (ORCPT + 99 others); Tue, 23 Feb 2021 02:04:53 -0500 Received: from verein.lst.de ([213.95.11.211]:32925 "EHLO verein.lst.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230452AbhBWHEx (ORCPT ); Tue, 23 Feb 2021 02:04:53 -0500 Received: by verein.lst.de (Postfix, from userid 2407) id 4E93968D0E; Tue, 23 Feb 2021 08:04:09 +0100 (CET) Date: Tue, 23 Feb 2021 08:04:08 +0100 From: Christoph Hellwig To: John Stultz Cc: Christoph Hellwig , Johannes Thumshirn , Chaitanya Kulkarni , Damien Le Moal , Jens Axboe , David Anderson , Alistair Delva , Todd Kjos , Amit Pundir , YongQin Liu , lkml , linux-block@vger.kernel.org, Satya Tangirala Subject: Re: [REGRESSION] "split bio_kmalloc from bio_alloc_bioset" causing crash shortly after bootup Message-ID: <20210223070408.GA16980@lst.de> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.17 (2007-11-01) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The problem is that the blk-crypto fallback code calls bio_split with a NULL bioset. That was aready broken before, as the mempool needed to guarantee forward progress was missing, but is not fatal. Satya, can you look into adding a mempool that can guarantees forward progress here?