From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from out-172.mta0.migadu.com (out-172.mta0.migadu.com [91.218.175.172]) (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 EFE29158535 for ; Sun, 21 Jun 2026 07:46:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782028014; cv=none; b=QfMZWhJ7HxVefJD8hV9Q9+yuBm80c25RrSYBFEzAhA4yd9b6axu2LjcEszbQmIgULC27ysV4I98jR/ZZbaU6XOFNbMG1akrmiQTIsRRrlTjNZ9u7l9JqzSh1mFH7yjFJ/EjiKI9O7D5xe0HZJcjtFxJ5O1Dmbqff3CSYicdN/5A= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782028014; c=relaxed/simple; bh=o99+UaN92qrYDCnNgVXR+2B2Q7bjLpg/Nm7FFC0f5Pg=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=cFvK8RqqaaeqxeJGlCqJAbR/kS7vAqn1ZVwpUhrjyK5zF9xdnVqBOcA2I44UntSGFBnPJUgKtmd3r6bwst9Dse8e86r4Mg+cfbn7GDmcHV5bfnMdO4j+oRlECwcQnURYy0Riuw3j6p7/j1lEAps+gMXMOhvicXzTaXv1/pekwls= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev; spf=pass smtp.mailfrom=linux.dev; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b=cC6stOML; arc=none smtp.client-ip=91.218.175.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=linux.dev Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=linux.dev Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linux.dev header.i=@linux.dev header.b="cC6stOML" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.dev; s=key1; t=1782028000; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding; bh=YClda6muaVW7GgyrR58wZtd5jcgDP+zOHrI/hQGuXy0=; b=cC6stOMLsvbPLa16MqcU5dglYir/yEp5qAGqXY3J0K0eWht3c+p/BgKPNcEEaKazDbW6VI yX6wyIc5+ZS3tWIrUFDPB12Tj/W7AqYVJqJFdMtVuNY3PrEq8SByuSA/ftxONcT3X4MqHZ n4iDopMRsd+V2oChzcUnRuXQ6i8Euc0= From: Zenghui Yu To: linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org Cc: clm@fb.com, dsterba@suse.com, rdunlap@infradead.org, Zenghui Yu Subject: [PATCH] btrfs: sysfs: fix path of the "read_policy" module parameter in comment Date: Sun, 21 Jun 2026 15:46:26 +0800 Message-ID: <20260621074626.11193-1-zenghui.yu@linux.dev> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Migadu-Flow: FLOW_OUT The correct path of the "read_policy" module parameter should be /sys/module/btrfs/parameters/read_policy. Fix it. Signed-off-by: Zenghui Yu --- fs/btrfs/sysfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/btrfs/sysfs.c b/fs/btrfs/sysfs.c index 0d14570c8bc2..39cb01ee441a 100644 --- a/fs/btrfs/sysfs.c +++ b/fs/btrfs/sysfs.c @@ -1336,7 +1336,7 @@ char *btrfs_get_mod_read_policy(void) return read_policy; } -/* Set perms to 0, disable /sys/module/btrfs/parameter/read_policy interface. */ +/* Set perms to 0, disable /sys/module/btrfs/parameters/read_policy interface. */ module_param(read_policy, charp, 0); MODULE_PARM_DESC(read_policy, "Global read policy: pid (default), round-robin[:], devid[:]"); -- 2.53.0