From patchwork Mon Dec 9 03:10:55 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Liu Jing X-Patchwork-Id: 13898767 Received: from cmccmta3.chinamobile.com (cmccmta6.chinamobile.com [111.22.67.139]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 6DE914A02 for ; Mon, 9 Dec 2024 03:11:04 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=111.22.67.139 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733713869; cv=none; b=B5W8rHxZOK+x9pS3dEZbt8AaMIxXRtuXPbqUOcG6NmqlV3J95XC6EH1XYtbfQWwXekQupEpML1un9B9YKoS2O/uOuvGFZbxE1h+uolvJLiT1BvbaPHaZ4+T3woAzY45hHjP6Qxrfoy32sFsxicftBBkK8T/whnGbjPkk1su+ezI= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733713869; c=relaxed/simple; bh=QiNj9btLSB6aFxtzkuLOXfX0M3KRoHvxch7Ck/iDEeo=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=NqruTGKH0m7DuDzR6pJWVarL+cflLLLVCF44zG0hB9/GHKj+ylXCbkLYCANZrhs0vIM0w8vcs0kgt8oKOawaeaocRSycKs3Qmu4l1NFu0jC5Db8Qpgz88mzIoukI9bVzxTqBXFih6b7CbDX9twJzJpzbAra7949Z61a5xaUBFCg= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com; spf=pass smtp.mailfrom=cmss.chinamobile.com; arc=none smtp.client-ip=111.22.67.139 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=cmss.chinamobile.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=cmss.chinamobile.com X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from spf.mail.chinamobile.com (unknown[10.188.0.87]) by rmmx-syy-dmz-app09-12009 (RichMail) with SMTP id 2ee967565fc2948-f5966; Mon, 09 Dec 2024 11:10:58 +0800 (CST) X-RM-TRANSID: 2ee967565fc2948-f5966 X-RM-TagInfo: emlType=0 X-RM-SPAM-FLAG: 00000000 Received: from localhost.localdomain (unknown[10.55.1.71]) by rmsmtp-syy-appsvr07-12007 (RichMail) with SMTP id 2ee767565fc0d41-9d738; Mon, 09 Dec 2024 11:10:57 +0800 (CST) X-RM-TRANSID: 2ee767565fc0d41-9d738 From: liujing To: agk@redhat.com, snitzer@kernel.org, mpatocka@redhat.com Cc: dm-devel@lists.linux.dev, linux-kernel@vger.kernel.org, liujing Subject: [PATCH] dm raid: fix spelling errors in raid_ctr() Date: Mon, 9 Dec 2024 11:10:55 +0800 Message-Id: <20241209031055.2806-1-liujing@cmss.chinamobile.com> X-Mailer: git-send-email 2.27.0 Precedence: bulk X-Mailing-List: dm-devel@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Fix the respective spelling errors in raid_ctr() function. Signed-off-by: liujing diff --git a/drivers/md/dm-raid.c b/drivers/md/dm-raid.c index 1e0d3b9b75d6..6adc55fd90d3 100644 --- a/drivers/md/dm-raid.c +++ b/drivers/md/dm-raid.c @@ -3196,7 +3196,7 @@ static int raid_ctr(struct dm_target *ti, unsigned int argc, char **argv) if (reshape_sectors || rs_is_raid1(rs)) { /* * We can only prepare for a reshape here, because the - * raid set needs to run to provide the repective reshape + * raid set needs to run to provide the respective reshape * check functions via its MD personality instance. * * So do the reshape check after md_run() succeeded.