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 D333DC61D9D for ; Thu, 26 Jan 2023 05:21:50 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S235689AbjAZFVt (ORCPT ); Thu, 26 Jan 2023 00:21:49 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53500 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229677AbjAZFVt (ORCPT ); Thu, 26 Jan 2023 00:21:49 -0500 Received: from verein.lst.de (verein.lst.de [213.95.11.211]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B84D14609F; Wed, 25 Jan 2023 21:21:47 -0800 (PST) Received: by verein.lst.de (Postfix, from userid 2407) id A569268D09; Thu, 26 Jan 2023 06:21:43 +0100 (CET) Date: Thu, 26 Jan 2023 06:21:43 +0100 From: Christoph Hellwig To: Josef Bacik Cc: Christoph Hellwig , Chris Mason , David Sterba , Damien Le Moal , Naohiro Aota , Johannes Thumshirn , Qu Wenruo , Jens Axboe , "Darrick J. Wong" , linux-block@vger.kernel.org, linux-btrfs@vger.kernel.org, linux-fsdevel@vger.kernel.org Subject: Re: [PATCH 23/34] btrfs: allow btrfs_submit_bio to split bios Message-ID: <20230126052143.GA28195@lst.de> References: <20230121065031.1139353-1-hch@lst.de> <20230121065031.1139353-24-hch@lst.de> 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-btrfs@vger.kernel.org On Wed, Jan 25, 2023 at 04:51:16PM -0500, Josef Bacik wrote: > This is causing a panic in btrfs/125 because you set bbio to > btrfs_bio(split_bio), which has a NULL end_io. You need something like the > following so that we're ending the correct bbio. Thanks, Just curious, what are the other configuration details as I've never been able to hit it? The fix itself looks good.