[PATCH][next] dm vdo: Fix spelling mistake "postive" -> "positive"

Colin Ian King posted 1 patch 5 days ago
drivers/md/dm-vdo/dm-vdo-target.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH][next] dm vdo: Fix spelling mistake "postive" -> "positive"
Posted by Colin Ian King 5 days ago
There is a spelling mistake in a vdo_log_error message. Fix it.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
---
 drivers/md/dm-vdo/dm-vdo-target.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/md/dm-vdo/dm-vdo-target.c b/drivers/md/dm-vdo/dm-vdo-target.c
index 0135a6f941fd..1d8375cc3c3e 100644
--- a/drivers/md/dm-vdo/dm-vdo-target.c
+++ b/drivers/md/dm-vdo/dm-vdo-target.c
@@ -412,7 +412,7 @@ static int __must_check parse_memory(const char *memory_str,
 
 		result = kstrtouint(memory_str, 10, &value);
 		if (result) {
-			vdo_log_error("optional parameter error: invalid memory size, must be a postive integer");
+			vdo_log_error("optional parameter error: invalid memory size, must be a positive integer");
 			return -EINVAL;
 		}
 
-- 
2.53.0
Re: [PATCH][next] dm vdo: Fix spelling mistake "postive" -> "positive"
Posted by Matthew Sakai 2 days ago

On 3/28/26 8:33 AM, Colin Ian King wrote:
> There is a spelling mistake in a vdo_log_error message. Fix it.
> 
> Signed-off-by: Colin Ian King <colin.i.king@gmail.com>

Reviewed-by: Matthew Sakai <msakai@redhat.com>

Since this is a change to Bruce's recent series, it might make sense to 
fold this into one of those patches instead of applying it as a 
standalone patch.

Matt

> ---
>   drivers/md/dm-vdo/dm-vdo-target.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/md/dm-vdo/dm-vdo-target.c b/drivers/md/dm-vdo/dm-vdo-target.c
> index 0135a6f941fd..1d8375cc3c3e 100644
> --- a/drivers/md/dm-vdo/dm-vdo-target.c
> +++ b/drivers/md/dm-vdo/dm-vdo-target.c
> @@ -412,7 +412,7 @@ static int __must_check parse_memory(const char *memory_str,
>   
>   		result = kstrtouint(memory_str, 10, &value);
>   		if (result) {
> -			vdo_log_error("optional parameter error: invalid memory size, must be a postive integer");
> +			vdo_log_error("optional parameter error: invalid memory size, must be a positive integer");
>   			return -EINVAL;
>   		}
>