From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from casper.infradead.org (casper.infradead.org [90.155.50.34]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 830B4C2D2; Wed, 24 Jan 2024 05:05:46 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=90.155.50.34 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706072747; cv=none; b=BbuFsd0WDL+kV45Exvjj2e+M5OWRNplLe7jWAKKCS7MAmbXjM8Cb23AscQtio8cU9rvOD6pq+xQZyPGPl/BxDjXk70sLejuqT7w2Kfrf8LLb4QTTJw8nQlQfR6rGU24uLc7BxTtXWT9rZ0zqdYOyMklxrE/ZLaj0GzHaFrbu65w= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1706072747; c=relaxed/simple; bh=5Th9xUmUgDOCOzurmaMkvZIPb01LId0tFQT0gYufSx0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=OeLoL48DjqsvzNVMyaRTGx84zJFe+cYDYwDLwDsTaap0vq243DcEcXZQEebjQu2/PXYboi6hWCHG82dUUlxU7jHrFKNZou6rhDOHJRV+vlOHeIMHHYQ6Dmt3YYq7BlZRkWBgZJpf0OS5s/QuuN2lx5wTIqmvQMgDXHSvHFxzySc= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org; spf=none smtp.mailfrom=infradead.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b=lsOmmtX0; arc=none smtp.client-ip=90.155.50.34 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=infradead.org Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="lsOmmtX0" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=casper.20170209; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=r3Fxs5lxURbCrXIwDfacnwpDa1k983FO+zqj1XxEYMk=; b=lsOmmtX0OrCAi+P2O5DAFUf1rD vVCxvEc8AV2asDCZvCCwj0Zj6H0qSzD1km9Dw3TglE3YkZgxBRmoMI8aXPWSQHcE/wzHJowDudK8s XmQaUblFz1tM9ULGTkZdIEqICvK5NqjGrlGdgXrmpODlRwTQRRoadMzT8I9pAntmQrNkCN3JlI/YY Yp72i9qV6kHTaOv+uMWvPP0xh9/z8zETcATIYR+3HeXa6eh3MqbhKYiWOQLm6HDjSPUoVVeiZhzxs HfVYdOpNrsYKDQn8WjbZlRl6CoDEvUXtAOxrADAHM2GFmH6LpO10jiWQz9+ol7SFTmfYxi+O/M/MD y6RTmL+Q==; Received: from willy by casper.infradead.org with local (Exim 4.97.1 #2 (Red Hat Linux)) id 1rSVSJ-00000005RyV-0tq7; Wed, 24 Jan 2024 05:05:43 +0000 Date: Wed, 24 Jan 2024 05:05:43 +0000 From: Matthew Wilcox To: Wedson Almeida Filho Cc: Alexander Viro , Christian Brauner , Kent Overstreet , Greg Kroah-Hartman , linux-fsdevel@vger.kernel.org, rust-for-linux@vger.kernel.org, Wedson Almeida Filho Subject: Re: [RFC PATCH 19/19] tarfs: introduce tar fs Message-ID: References: <20231018122518.128049-1-wedsonaf@gmail.com> <20231018122518.128049-20-wedsonaf@gmail.com> Precedence: bulk X-Mailing-List: linux-fsdevel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231018122518.128049-20-wedsonaf@gmail.com> On Wed, Oct 18, 2023 at 09:25:18AM -0300, Wedson Almeida Filho wrote: > +config TARFS_FS > + tristate "TAR file system support" > + depends on RUST && BLOCK > + select BUFFER_HEAD I didn't spot anywhere in this that actually uses buffer_heads. Why did you add this select?