All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] bloat-o-meter: fix typo in help
@ 2018-02-14 17:47 Matteo Croce
  2018-03-07 23:39 ` Matteo Croce
  0 siblings, 1 reply; 5+ messages in thread
From: Matteo Croce @ 2018-02-14 17:47 UTC (permalink / raw)
  To: linux-kernel; +Cc: Matt Mackall, Maninder Singh

the bloat-o-meter script has two typos in the help, fix both.

Fixes: 192efb7a1f9b ("bloat-o-meter: provide 3 different arguments for data, function and All")
Signed-off-by: Matteo Croce <mcroce@redhat.com>
---
 scripts/bloat-o-meter | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
index 94b664817ad9..d84a5674e95e 100755
--- a/scripts/bloat-o-meter
+++ b/scripts/bloat-o-meter
@@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
 if len(sys.argv) < 3:
     sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
     sys.stderr.write("The options are:\n")
-    sys.stderr.write("-c	cateogrize output based on symbole type\n")
+    sys.stderr.write("-c	categorize output based on symbol type\n")
     sys.stderr.write("-d	Show delta of Data Section\n")
     sys.stderr.write("-t	Show delta of text Section\n")
     sys.exit(-1)
-- 
2.14.3

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] bloat-o-meter: fix typo in help
  2018-02-14 17:47 [PATCH] bloat-o-meter: fix typo in help Matteo Croce
@ 2018-03-07 23:39 ` Matteo Croce
  2018-03-08  1:51   ` Randy Dunlap
  2018-03-08 16:12   ` Masahiro Yamada
  0 siblings, 2 replies; 5+ messages in thread
From: Matteo Croce @ 2018-03-07 23:39 UTC (permalink / raw)
  To: linux-kernel; +Cc: Matt Mackall, Maninder Singh

On Wed, Feb 14, 2018 at 6:47 PM, Matteo Croce <mcroce@redhat.com> wrote:
> the bloat-o-meter script has two typos in the help, fix both.
>
> Fixes: 192efb7a1f9b ("bloat-o-meter: provide 3 different arguments for data, function and All")
> Signed-off-by: Matteo Croce <mcroce@redhat.com>
> ---
>  scripts/bloat-o-meter | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
> index 94b664817ad9..d84a5674e95e 100755
> --- a/scripts/bloat-o-meter
> +++ b/scripts/bloat-o-meter
> @@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
>  if len(sys.argv) < 3:
>      sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
>      sys.stderr.write("The options are:\n")
> -    sys.stderr.write("-c       cateogrize output based on symbole type\n")
> +    sys.stderr.write("-c       categorize output based on symbol type\n")
>      sys.stderr.write("-d       Show delta of Data Section\n")
>      sys.stderr.write("-t       Show delta of text Section\n")
>      sys.exit(-1)
> --
> 2.14.3
>

Ping, anyone willing to review and eventually merge it?

Regards,
-- 
Matteo Croce
per aspera ad upstream

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bloat-o-meter: fix typo in help
  2018-03-07 23:39 ` Matteo Croce
@ 2018-03-08  1:51   ` Randy Dunlap
  2018-03-08  4:26     ` Masahiro Yamada
  2018-03-08 16:12   ` Masahiro Yamada
  1 sibling, 1 reply; 5+ messages in thread
From: Randy Dunlap @ 2018-03-08  1:51 UTC (permalink / raw)
  To: Matteo Croce, linux-kernel
  Cc: Matt Mackall, Maninder Singh, Andrew Morton, Masahiro Yamada

On 03/07/2018 03:39 PM, Matteo Croce wrote:
> On Wed, Feb 14, 2018 at 6:47 PM, Matteo Croce <mcroce@redhat.com> wrote:
>> the bloat-o-meter script has two typos in the help, fix both.
>>
>> Fixes: 192efb7a1f9b ("bloat-o-meter: provide 3 different arguments for data, function and All")
>> Signed-off-by: Matteo Croce <mcroce@redhat.com>
>> ---
>>  scripts/bloat-o-meter | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
>> index 94b664817ad9..d84a5674e95e 100755
>> --- a/scripts/bloat-o-meter
>> +++ b/scripts/bloat-o-meter
>> @@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
>>  if len(sys.argv) < 3:
>>      sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
>>      sys.stderr.write("The options are:\n")
>> -    sys.stderr.write("-c       cateogrize output based on symbole type\n")
>> +    sys.stderr.write("-c       categorize output based on symbol type\n")
>>      sys.stderr.write("-d       Show delta of Data Section\n")
>>      sys.stderr.write("-t       Show delta of text Section\n")
>>      sys.exit(-1)
>> --
>> 2.14.3
>>
> 
> Ping, anyone willing to review and eventually merge it?

Acked-by: Randy Dunlap <rdunlap@infradead.org>


Andrew or Masahiro?

thanks,
-- 
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bloat-o-meter: fix typo in help
  2018-03-08  1:51   ` Randy Dunlap
@ 2018-03-08  4:26     ` Masahiro Yamada
  0 siblings, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2018-03-08  4:26 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Matteo Croce, Linux Kernel Mailing List, Matt Mackall,
	Maninder Singh, Andrew Morton

2018-03-08 10:51 GMT+09:00 Randy Dunlap <rdunlap@infradead.org>:
> On 03/07/2018 03:39 PM, Matteo Croce wrote:
>> On Wed, Feb 14, 2018 at 6:47 PM, Matteo Croce <mcroce@redhat.com> wrote:
>>> the bloat-o-meter script has two typos in the help, fix both.
>>>
>>> Fixes: 192efb7a1f9b ("bloat-o-meter: provide 3 different arguments for data, function and All")
>>> Signed-off-by: Matteo Croce <mcroce@redhat.com>
>>> ---
>>>  scripts/bloat-o-meter | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
>>> index 94b664817ad9..d84a5674e95e 100755
>>> --- a/scripts/bloat-o-meter
>>> +++ b/scripts/bloat-o-meter
>>> @@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
>>>  if len(sys.argv) < 3:
>>>      sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
>>>      sys.stderr.write("The options are:\n")
>>> -    sys.stderr.write("-c       cateogrize output based on symbole type\n")
>>> +    sys.stderr.write("-c       categorize output based on symbol type\n")
>>>      sys.stderr.write("-d       Show delta of Data Section\n")
>>>      sys.stderr.write("-t       Show delta of text Section\n")
>>>      sys.exit(-1)
>>> --
>>> 2.14.3
>>>
>>
>> Ping, anyone willing to review and eventually merge it?
>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
>
>
> Andrew or Masahiro?
>
> thanks,
> --
> ~Randy

I will pick up this shortly.  Thanks!



-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] bloat-o-meter: fix typo in help
  2018-03-07 23:39 ` Matteo Croce
  2018-03-08  1:51   ` Randy Dunlap
@ 2018-03-08 16:12   ` Masahiro Yamada
  1 sibling, 0 replies; 5+ messages in thread
From: Masahiro Yamada @ 2018-03-08 16:12 UTC (permalink / raw)
  To: Matteo Croce; +Cc: Linux Kernel Mailing List, Matt Mackall, Maninder Singh

2018-03-08 8:39 GMT+09:00 Matteo Croce <mcroce@redhat.com>:
> On Wed, Feb 14, 2018 at 6:47 PM, Matteo Croce <mcroce@redhat.com> wrote:
>> the bloat-o-meter script has two typos in the help, fix both.
>>
>> Fixes: 192efb7a1f9b ("bloat-o-meter: provide 3 different arguments for data, function and All")
>> Signed-off-by: Matteo Croce <mcroce@redhat.com>
>> ---
>>  scripts/bloat-o-meter | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/scripts/bloat-o-meter b/scripts/bloat-o-meter
>> index 94b664817ad9..d84a5674e95e 100755
>> --- a/scripts/bloat-o-meter
>> +++ b/scripts/bloat-o-meter
>> @@ -15,7 +15,7 @@ signal(SIGPIPE, SIG_DFL)
>>  if len(sys.argv) < 3:
>>      sys.stderr.write("usage: %s [option] file1 file2\n" % sys.argv[0])
>>      sys.stderr.write("The options are:\n")
>> -    sys.stderr.write("-c       cateogrize output based on symbole type\n")
>> +    sys.stderr.write("-c       categorize output based on symbol type\n")
>>      sys.stderr.write("-d       Show delta of Data Section\n")
>>      sys.stderr.write("-t       Show delta of text Section\n")
>>      sys.exit(-1)
>> --
>> 2.14.3
>>
>
> Ping, anyone willing to review and eventually merge it?
>
> Regards,
> --
> Matteo Croce
> per aspera ad upstream

Applied to linux-kbuild/fixes.  Thanks!


-- 
Best Regards
Masahiro Yamada

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-03-08 16:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-14 17:47 [PATCH] bloat-o-meter: fix typo in help Matteo Croce
2018-03-07 23:39 ` Matteo Croce
2018-03-08  1:51   ` Randy Dunlap
2018-03-08  4:26     ` Masahiro Yamada
2018-03-08 16:12   ` Masahiro Yamada

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.