From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 948601BC46; Mon, 25 Mar 2024 10:09:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711361362; cv=none; b=PC+9qBh28Vf1UigEdNHsxkaxGO9XoAwG3zWYKfLE3UQWg/yJMDesEMN/CC56J47wyADWzsTrj99UGesEB2bxp3QZdMwbHAALX7pKDOGTzbpf+Vu3pUmXl7qEI5CMpApeF9tMdTtLnqcJ5OQnd+3yawHvEnm1TTEBiNrmAoAc71Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1711361362; c=relaxed/simple; bh=+Ni54kzZZJZ8Gpflipk7sMkXhsxVvZJr72+bdfSCAWA=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=G1HArhJxtrvV+eddyepKvoGZOqg3xKYzA0Pq7ASD4e7Tj/zhwr6TZhFbGtK/1vv4j+k8j+ftb1ueXI8I+In9AJYBX77wRetlSH5/xiDBav93408rb1/vYs8Yxs8+5JtbAKbXi0fLWDFb8gRmW2OXMgVtVQO4WJfAZpA0Juuo6VY= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=LAVyeJkm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="LAVyeJkm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 29A7AC433C7; Mon, 25 Mar 2024 10:09:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1711361362; bh=+Ni54kzZZJZ8Gpflipk7sMkXhsxVvZJr72+bdfSCAWA=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=LAVyeJkmpxeTN6Gxe2VGtXmpfHMhTMrpn/UXUh/Wn12y57WkwEnoAekyyvWfMg2qE gzTc1VIB7QQqr4sWYFMAV5OKg1ncgL02/pD/vVxyLZG4KwXFeO1qkRJU2ZaIJrUZAO fQib1lD8r/c7xoSZ0DEFM4PgT4/uJp7k+B4Dc3NS9veJVKXT7pq/GH2anB5Mwg/8h7 FO0nVgHeTPbD8/5ZTjwxRpL9jRk96Mle73oV3aAgXbDCJy5BkzDKGGQQT6al5CROnm hJ58nyT9GCFwA+rC3A87WG5riMWck4SiRU92mtZHC7nwRUccM91gzavJqONMy0zDAV ShVDbZD2bJMRA== Received: from johan by xi.lan with local (Exim 4.97.1) (envelope-from ) id 1rohGi-000000000z4-3YKD; Mon, 25 Mar 2024 11:09:28 +0100 Date: Mon, 25 Mar 2024 11:09:28 +0100 From: Johan Hovold To: Christian Brauner Cc: "Matthew Wilcox (Oracle)" , Anton Altaparmakov , Namjae Jeon , ntfs3@lists.linux.dev, linux-fsdevel@vger.kernel.org, linux-ntfs-dev@lists.sourceforge.net, regressions@lists.linux.dev Subject: Re: [PATCH 1/2] ntfs3: serve as alias for the legacy ntfs driver Message-ID: References: <20240325-hinkriegen-zuziehen-d7e2c490427a@brauner> Precedence: bulk X-Mailing-List: ntfs3@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240325-hinkriegen-zuziehen-d7e2c490427a@brauner> On Mon, Mar 25, 2024 at 09:34:36AM +0100, Christian Brauner wrote: > Johan Hovold reported that removing the legacy ntfs driver broke boot > for him since his fstab uses the legacy ntfs driver to access firmware > from the original Windows partition. > > Use ntfs3 as an alias for legacy ntfs if CONFIG_NTFS_FS is selected. > This is similar to how ext3 is treated. > > Fixes: 7ffa8f3d3023 ("fs: Remove NTFS classic") > Cc: "Matthew Wilcox (Oracle)" > Cc: Johan Hovold > Link: https://lore.kernel.org/r/Zf2zPf5TO5oYt3I3@hovoldconsulting.com > Signed-off-by: Christian Brauner > --- > Hey, > > This is so far compile tested. It would be great if someone could test > this. @Johan? This seems to do the trick. Thanks for the quick fix. Tested-by: Johan Hovold Do we want to do something about the fact that ntfs mounts may now become writable as well? Johan