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 5641AC6FA8E for ; Sun, 26 Feb 2023 18:29:22 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S229693AbjBZS3U (ORCPT ); Sun, 26 Feb 2023 13:29:20 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:60908 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229557AbjBZS3S (ORCPT ); Sun, 26 Feb 2023 13:29:18 -0500 Received: from gnuweeb.org (gnuweeb.org [51.81.211.47]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id C711EC646; Sun, 26 Feb 2023 10:29:17 -0800 (PST) Received: from biznet-home.integral.gnuweeb.org (unknown [182.253.183.169]) by gnuweeb.org (Postfix) with ESMTPSA id DBF5683191; Sun, 26 Feb 2023 18:29:13 +0000 (UTC) X-GW-Data: lPqxHiMPbJw1wb7CM9QUryAGzr0yq5atzVDdxTR0iA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1677436157; bh=bdrmo9b3uW06/doEdhL8zWIVVo5RJXhv1CutW1s8cnY=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=V4ii7wUAXzT0zZR3zeGgYY8XPzUeUtMcCG4/+27Zniz1a13ikjoBKxsd4Dxz7u/5b +1XI+Q+GPGRJGQVG+GiegDZ08qLjK0K3Zy6bdAU34WEA2Nz5536RzhUyTSk0jThbZa roxzmKjeVuZE18Lwcqt1+bxHlLRPh+Ps9GlmwHP9HO7FeQFeiWxrDHxDGBHFNi4dOf OtFpk5DxE7D+Tu8JzAz2ZOY5YWKZqkTJihmLuCs5waQPvsmtVqZSS/1MTFR0yrHs0k UcDJmEMgKnkiAwlRxYOjx0lTMcO7+3B13PDsXep11n1K2U0aHCn7M2KQnh4FhRClYz d6DWoLu6cAhwA== Date: Mon, 27 Feb 2023 01:29:09 +0700 From: Ammar Faizi To: Tejun Heo Cc: Chris Mason , Josef Bacik , David Sterba , Lai Jiangshan , Filipe Manana , Linux Btrfs Mailing List , Linux Kernel Mailing List , Linux Fsdevel Mailing List , GNU/Weeb Mailing List Subject: Re: [RFC PATCH v1 0/6] Introducing `wq_cpu_set` mount option for btrfs Message-ID: References: <20230226160259.18354-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Bpl: hUx9VaHkTWcLO7S8CQCslj6OzqBx2hfLChRz45nPESx5VSB/xuJQVOKOB1zSXE3yc9ntP27bV1M1 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Feb 27, 2023 at 01:26:24AM +0700, Ammar Faizi wrote: > mount -t -o rw btrfs /dev/sda1 a; > mount -t -o rw btrfs /dev/sda2 b; > mount -t -o rw btrfs /dev/sda3 c; > mount -t -o rw btrfs /dev/sda4 d; Excuse the wrong mount commands, should be something like this: mount -t btrfs -o rw /dev/sda1 a; mount -t btrfs -o rw /dev/sda2 b; mount -t btrfs -o rw /dev/sda3 c; mount -t btrfs -o rw /dev/sda4 d; -- Ammar Faizi