Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756826AbbGTWjA (ORCPT ); Mon, 20 Jul 2015 18:39:00 -0400 Received: from ipmail06.adl6.internode.on.net ([150.101.137.145]:13777 "EHLO ipmail06.adl6.internode.on.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752431AbbGTWi6 (ORCPT ); Mon, 20 Jul 2015 18:38:58 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2AJCACad61VPD0gLHlcgxOBPYZQokUGmk0CAgEBAoEvTQEBAQEBAQcBAQEBQT+EJAEBBDocIxAIAxgJJQ8FJQMHGhOILclEAQEIAgEfGYYFhS6FBgeEKwWUUowgmQiBCYFbgVAsMYJLAQEB Date: Tue, 21 Jul 2015 08:36:10 +1000 From: Dave Chinner To: Mike Snitzer Cc: axboe@kernel.dk, hch@lst.de, sandeen@redhat.com, linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org, dm-devel@redhat.com, xfs@oss.sgi.com Subject: Re: [RFC PATCH] block: xfs: dm thin: train XFS to give up on retrying IO if thinp is out of space Message-ID: <20150720223610.GV7943@dastard> References: <20150720151849.GA2282@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20150720151849.GA2282@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2545 Lines: 54 On Mon, Jul 20, 2015 at 11:18:49AM -0400, Mike Snitzer wrote: > If XFS fails to write metadata it will retry the write indefinitely > (with the hope that the write will succeed at some point in the future). > > Others can possibly speak to historic reason(s) why this is a sane > default for XFS. But when XFS is deployed ontop of DM thin provisioning > this infinite retry is very unwelcome -- especially if DM thinp was > configured to be automatically extended with free space but the admin > hasn't provided (or restored) adequate free space. > > To fix this infinite retry a new bdev_has_space () hook is added to XFS > to break out of its metadata retry loop if the underlying block device > reports it no longer has free space. DM thin provisioning is now > trained to respond accordingly, which enables XFS to not cause a cascade > of tasks blocked on IO waiting for XFS's infinite retry. > > All other block devices, which don't implement a .has_space method in > block_device_operations, will always return true for bdev_has_space(). > > With this change XFS will fail the metadata IO, force shutdown, and the > XFS filesystem may be unmounted. This enables an admin to recover from > their oversight, of not having provided enough free space, without > having to force a hard reset of the system to get XFS to unwedge. > > Signed-off-by: Mike Snitzer Shouldn't dm-thinp just return the bio with ENOSPC as it's error? The scsi layers already do this for hardware thinp ENOSPC failures, so dm-thinp should behave exactly the same (i.e. via __scsi_error_from_host_byte()). The behaviour of the filesystem should be the same in all cases - making it conditional on whether the thinp implementation can be polled for available space is wrong as most hardware thinp can't be polled by the kernel forthis info.. If dm-thinp just returns ENOSPC from on the BIO like other hardware thinp devices, then it is up to the filesystem to handle that appropriately. i.e. whether an ENOSPC IO error is fatal to the filesystem is determined by filesystem configuration and context of the IO error, not whether the block device has no space (which we should already know from the ENOSPC error delivered by IO completion). Cheers, Dave. -- Dave Chinner david@fromorbit.com -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/