Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1628832 > unrolled thread
| Started by | Colin King <colin.king@canonical.com> |
|---|---|
| First post | 2017-04-22 14:50 +0200 |
| Last post | 2017-04-24 02:10 +0200 |
| Articles | 3 — 3 participants |
Back to article view | Back to linux.kernel
[PATCH] ore: fix spelling mistake: "Multples" -> "multiples" Colin King <colin.king@canonical.com> - 2017-04-22 14:50 +0200
Re: [PATCH] ore: fix spelling mistake: "Multples" -> "multiples" Boaz Harrosh <ooo@electrozaur.com> - 2017-04-23 11:40 +0200
Re: [PATCH] ore: fix spelling mistake: "Multples" -> "multiples" Joe Perches <joe@perches.com> - 2017-04-24 02:10 +0200
| From | Colin King <colin.king@canonical.com> |
|---|---|
| Date | 2017-04-22 14:50 +0200 |
| Subject | [PATCH] ore: fix spelling mistake: "Multples" -> "multiples" |
| Message-ID | <tz2E9-2U6-1@gated-at.bofh.it> |
From: Colin Ian King <colin.king@canonical.com>
trivial fix to spelling mistake in ORE_ERR message and make word all
lower case.
Signed-off-by: Colin Ian King <colin.king@canonical.com>
---
fs/exofs/ore.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c
index 8bb72807e70d..811522ae45e1 100644
--- a/fs/exofs/ore.c
+++ b/fs/exofs/ore.c
@@ -68,7 +68,7 @@ int ore_verify_layout(unsigned total_comps, struct ore_layout *layout)
}
if (0 != (layout->stripe_unit & ~PAGE_MASK)) {
ORE_ERR("Stripe Unit(0x%llx)"
- " must be Multples of PAGE_SIZE(0x%lx)\n",
+ " must be multiples of PAGE_SIZE(0x%lx)\n",
_LLU(layout->stripe_unit), PAGE_SIZE);
return -EINVAL;
}
--
2.11.0
[toc] | [next] | [standalone]
| From | Boaz Harrosh <ooo@electrozaur.com> |
|---|---|
| Date | 2017-04-23 11:40 +0200 |
| Message-ID | <tzm9P-6K4-1@gated-at.bofh.it> |
| In reply to | #1628832 |
On 04/22/2017 03:48 PM, Colin King wrote:
> From: Colin Ian King <colin.king@canonical.com>
>
> trivial fix to spelling mistake in ORE_ERR message and make word all
> lower case.
>
> Signed-off-by: Colin Ian King <colin.king@canonical.com>
Thanks
ACK-by: Boaz Harrosh <ooo@electrozaur.com>
> ---
> fs/exofs/ore.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c
> index 8bb72807e70d..811522ae45e1 100644
> --- a/fs/exofs/ore.c
> +++ b/fs/exofs/ore.c
> @@ -68,7 +68,7 @@ int ore_verify_layout(unsigned total_comps, struct ore_layout *layout)
> }
> if (0 != (layout->stripe_unit & ~PAGE_MASK)) {
> ORE_ERR("Stripe Unit(0x%llx)"
> - " must be Multples of PAGE_SIZE(0x%lx)\n",
> + " must be multiples of PAGE_SIZE(0x%lx)\n",
> _LLU(layout->stripe_unit), PAGE_SIZE);
> return -EINVAL;
> }
>
[toc] | [prev] | [next] | [standalone]
| From | Joe Perches <joe@perches.com> |
|---|---|
| Date | 2017-04-24 02:10 +0200 |
| Message-ID | <tzzJL-7te-11@gated-at.bofh.it> |
| In reply to | #1628953 |
On Sun, 2017-04-23 at 12:37 +0300, Boaz Harrosh wrote:
> On 04/22/2017 03:48 PM, Colin King wrote:
> > trivial fix to spelling mistake in ORE_ERR message and make word all
> > lower case.
[]
> > diff --git a/fs/exofs/ore.c b/fs/exofs/ore.c
[]
> > @@ -68,7 +68,7 @@ int ore_verify_layout(unsigned total_comps, struct ore_layout *layout)
> > }
> > if (0 != (layout->stripe_unit & ~PAGE_MASK)) {
> > ORE_ERR("Stripe Unit(0x%llx)"
> > - " must be Multples of PAGE_SIZE(0x%lx)\n",
> > + " must be multiples of PAGE_SIZE(0x%lx)\n",
Perhaps better would be:
ORE_ERR("Stripe unit (0x%llx) must be a multiple of PAGE_SIZE (0x%llx)\n",
_LLU(layout->stripe_unit), PAGE_SIZE);
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web