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 279AC36B054; Mon, 23 Feb 2026 23:44:41 +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=1771890281; cv=none; b=b9y1wWckEuXeuhTtFLwBMvbujRe+mM2Aes4T+cqvvSRdZsL0QgOggfLtgd9O5Es/umXRxgEwcwKqdpVNYwihhiMPILCx00nJffZinkgqSTi/eo7QzKa2h0hlovhqV5OT793ckpCeCJl/gwceIPk9/EyYOkeX9a2MXCVCKkTJOQQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1771890281; c=relaxed/simple; bh=RegXoLJ2cV1dX0TCmMwJAOxwTWoUTBtWlsXQK0cWPEA=; h=Date:Subject:From:To:Cc:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=OqE+aQ9UlOcXDH2WT7WSyLvPhOU/ncJtZV7bWNI148sW8pqG7f/t50v2ObzLW7yiYb1P5nrcXyR7DJj9aEwyWn1WHkOZPRwdRpd/K6QIVOkDgckSUkKn3ByeYXE3ZjroGxr0ncD2CLx83cZHkytZXeDfImGL/MieLlk8v7zygH0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=I6SPIo9U; 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="I6SPIo9U" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 01B0FC116C6; Mon, 23 Feb 2026 23:44:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1771890281; bh=RegXoLJ2cV1dX0TCmMwJAOxwTWoUTBtWlsXQK0cWPEA=; h=Date:Subject:From:To:Cc:In-Reply-To:References:From; b=I6SPIo9Uqiu7ErWc+BR0DNFtGSSRnMaBYDUZShdDe0y/zWYVSHh0BSYXHI5fxRzLs Sgzdf8oNiMygRmRmebKhT99B7h5MNVFz9XuTrGdpL/xfEMen4DiC9W18pCvHOMBGrW nfhCcRzIteHQLh8OUdIXF2nKU80DTgusU6tm5Fo7nwVn8OHN/m/aB8a6LGMLekcy46 BkpLlfVS76Q/EiPNWm1/chm0fwnOkiCQXq8vPGcdkvS78P+SK3jejWBB+csdWZOX/6 MH7O7J+QOGDnYOvRya1oROo7yISP7SrxtJZJVVx2RqHr/+hCQG2YJDB7pMTxK0wfZP u8Xd6sxzRQIZw== Date: Mon, 23 Feb 2026 15:44:40 -0800 Subject: [PATCH 3/3] fuse2fs: enable iomap From: "Darrick J. Wong" To: tytso@mit.edu Cc: bpf@vger.kernel.org, linux-fsdevel@vger.kernel.org, linux-ext4@vger.kernel.org, miklos@szeredi.hu, bernd@bsbernd.com, joannelkoong@gmail.com, neal@gompa.dev Message-ID: <177188745547.3944453.6383921562493304527.stgit@frogsfrogsfrogs> In-Reply-To: <177188745484.3944453.12407213942915501693.stgit@frogsfrogsfrogs> References: <177188745484.3944453.12407213942915501693.stgit@frogsfrogsfrogs> 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="utf-8" Content-Transfer-Encoding: 7bit From: Darrick J. Wong Now that iomap functionality is complete, enable this for users. Signed-off-by: "Darrick J. Wong" --- fuse4fs/fuse4fs.c | 4 ---- misc/fuse2fs.c | 4 ---- 2 files changed, 8 deletions(-) diff --git a/fuse4fs/fuse4fs.c b/fuse4fs/fuse4fs.c index c5cf471d630451..e8edeb8f62e88a 100644 --- a/fuse4fs/fuse4fs.c +++ b/fuse4fs/fuse4fs.c @@ -2021,10 +2021,6 @@ static inline bool fuse4fs_wants_iomap(struct fuse4fs *ff) static void fuse4fs_iomap_enable(struct fuse_conn_info *conn, struct fuse4fs *ff) { - /* Don't let anyone touch iomap until the end of the patchset. */ - ff->iomap_state = IOMAP_DISABLED; - return; - if (fuse4fs_wants_iomap(ff) && fuse_set_feature_flag(conn, FUSE_CAP_IOMAP)) ff->iomap_state = IOMAP_ENABLED; diff --git a/misc/fuse2fs.c b/misc/fuse2fs.c index 4dab8034ebb317..96118942c324ba 100644 --- a/misc/fuse2fs.c +++ b/misc/fuse2fs.c @@ -1847,10 +1847,6 @@ static inline bool fuse2fs_wants_iomap(struct fuse2fs *ff) static void fuse2fs_iomap_enable(struct fuse_conn_info *conn, struct fuse2fs *ff) { - /* Don't let anyone touch iomap until the end of the patchset. */ - ff->iomap_state = IOMAP_DISABLED; - return; - if (fuse2fs_wants_iomap(ff) && fuse_set_feature_flag(conn, FUSE_CAP_IOMAP)) ff->iomap_state = IOMAP_ENABLED;