public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
@ 2021-06-01  6:57 Xeonacid
  2021-06-01  7:23 ` Paul Zimmermann
  0 siblings, 1 reply; 5+ messages in thread
From: Xeonacid @ 2021-06-01  6:57 UTC (permalink / raw)
  To: libc-alpha

[-- Attachment #1: Type: text/plain, Size: 1125 bytes --]

Hi,
I'm a newbie to glibc contribution. I've followed the Contribution
checklist but I'm not sure if I've done the right thing.
I've not completed the FSF Copyright Assignment. I've read that
"Copyright assignment for commulative changes by any one author of
less than 15 lines do not require copyright assignment.".
-- >8 --
---
 malloc/malloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/malloc/malloc.c b/malloc/malloc.c
index e2d7b1b583..0e2e1747e0 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1477,7 +1477,7 @@ checked_request2size (size_t req, size_t *sz)
__nonnull (1)
     chunksize (p) - CHUNK_HDR_SZ :                                    \
     chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ))

-/* If memory tagging is enabled the layout changes to accomodate the granule
+/* If memory tagging is enabled the layout changes to accommodate the granule
    size, this is wasteful for small allocations so not done by default.
    Both the chunk header and user data has to be granule aligned.  */
 _Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ,
-- 
2.31.1

[-- Attachment #2: 0001-malloc-fix-typo-accomodate-should-be-accommodate.patch --]
[-- Type: text/x-patch, Size: 1410 bytes --]

From 84ec52fad96826c874405d1d3c22176a22791cc5 Mon Sep 17 00:00:00 2001
From: Xeonacid <xeonacid@hit.edu.cn>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
To: libc-alpha@sourceware.org
Cc: carlos@systemhalted.org

Hi,
I'm a newbie to glibc contribution. I've followed the Contribution checklist but I'm not sure if I've done the right thing.
I've not completed the FSF Copyright Assignment. I've read that "Copyright assignment for commulative changes by any one author of less than 15 lines do not require copyright assignment.".
-- >8 --
---
 malloc/malloc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/malloc/malloc.c b/malloc/malloc.c
index e2d7b1b583..0e2e1747e0 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1477,7 +1477,7 @@ checked_request2size (size_t req, size_t *sz) __nonnull (1)
     chunksize (p) - CHUNK_HDR_SZ :                                    \
     chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ))
 
-/* If memory tagging is enabled the layout changes to accomodate the granule
+/* If memory tagging is enabled the layout changes to accommodate the granule
    size, this is wasteful for small allocations so not done by default.
    Both the chunk header and user data has to be granule aligned.  */
 _Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ,
-- 
2.31.1


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

* Re: [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
  2021-06-01  6:57 [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate" Xeonacid
@ 2021-06-01  7:23 ` Paul Zimmermann
  2021-06-01  7:42   ` Xeonacid
  0 siblings, 1 reply; 5+ messages in thread
From: Paul Zimmermann @ 2021-06-01  7:23 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

       Hi Xeonacid,

if you look for similar typos with "git grep accomodate", you will find another
one in manual/summary.pl (excluding those in ChangeLog).
Please can you fix both in the same time (this should not exceed the 15-line
limit)?

Best regards,
Paul Zimmermann

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

* Re: [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
  2021-06-01  7:23 ` Paul Zimmermann
@ 2021-06-01  7:42   ` Xeonacid
  2021-06-01  8:09     ` Paul Zimmermann
  2021-06-02  8:00     ` Paul Zimmermann
  0 siblings, 2 replies; 5+ messages in thread
From: Xeonacid @ 2021-06-01  7:42 UTC (permalink / raw)
  To: Paul Zimmermann; +Cc: libc-alpha

[-- Attachment #1: Type: text/plain, Size: 428 bytes --]

Hi Paul,
Here's my new patch. Thanks for your review.

On Tue, Jun 1, 2021 at 3:23 PM Paul Zimmermann <Paul.Zimmermann@inria.fr> wrote:
>
>        Hi Xeonacid,
>
> if you look for similar typos with "git grep accomodate", you will find another
> one in manual/summary.pl (excluding those in ChangeLog).
> Please can you fix both in the same time (this should not exceed the 15-line
> limit)?
>
> Best regards,
> Paul Zimmermann

[-- Attachment #2: 0001-fix-typo.patch --]
[-- Type: text/x-patch, Size: 1667 bytes --]

From c77023b9ff19dc9f964849ae29e6098525720f12 Mon Sep 17 00:00:00 2001
From: Xeonacid <h.dwwwwww@gmail.com>
Date: Tue, 1 Jun 2021 14:18:47 +0800
Subject: [COMMITTED 1/1] fix typo
To: libc-alpha@sourceware.org
Cc: carlos@systemhalted.org

"accomodate" should be "accommodate"
---
 malloc/malloc.c   | 2 +-
 manual/summary.pl | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/malloc/malloc.c b/malloc/malloc.c
index e2d7b1b583..0e2e1747e0 100644
--- a/malloc/malloc.c
+++ b/malloc/malloc.c
@@ -1477,7 +1477,7 @@ checked_request2size (size_t req, size_t *sz) __nonnull (1)
     chunksize (p) - CHUNK_HDR_SZ :                                    \
     chunksize (p) - CHUNK_HDR_SZ + (chunk_is_mmapped (p) ? 0 : SIZE_SZ))
 
-/* If memory tagging is enabled the layout changes to accomodate the granule
+/* If memory tagging is enabled the layout changes to accommodate the granule
    size, this is wasteful for small allocations so not done by default.
    Both the chunk header and user data has to be granule aligned.  */
 _Static_assert (__MTAG_GRANULE_SIZE <= CHUNK_HDR_SZ,
diff --git a/manual/summary.pl b/manual/summary.pl
index 4319c56415..ab0801b045 100755
--- a/manual/summary.pl
+++ b/manual/summary.pl
@@ -374,7 +374,7 @@ outside @*x lists ("Misplaced @standardsx").  "Spurious @standardsx"
 refers to otherwise valid @standardsx macros that were not matched to
 an element in an @*x list.  "Invalid syntax" means just that.
 
-The syntax of @standards annotations is designed to accomodate
+The syntax of @standards annotations is designed to accommodate
 multiple header and standards annotations, as necessary.
 
 Examples:
-- 
2.31.1


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

* Re: [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
  2021-06-01  7:42   ` Xeonacid
@ 2021-06-01  8:09     ` Paul Zimmermann
  2021-06-02  8:00     ` Paul Zimmermann
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Zimmermann @ 2021-06-01  8:09 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

this looks good to me, thank you for your contribution!

Paul

Reviewed-by: paul.zimmermann@inria.fr

> From: Xeonacid <h.dwwwwww@gmail.com>
> Date: Tue, 1 Jun 2021 15:42:25 +0800
> Cc: libc-alpha@sourceware.org
> 
> 
> [1:text/plain Hide]
> 
> Hi Paul,
> Here's my new patch. Thanks for your review.
> 
> On Tue, Jun 1, 2021 at 3:23 PM Paul Zimmermann <Paul.Zimmermann@inria.fr> wrote:
> >
> >        Hi Xeonacid,
> >
> > if you look for similar typos with "git grep accomodate", you will find another
> > one in manual/summary.pl (excluding those in ChangeLog).
> > Please can you fix both in the same time (this should not exceed the 15-line
> > limit)?
> >
> > Best regards,
> > Paul Zimmermann
> 
> [2:text/x-patch Show Save:0001-fix-typo.patch (2kB)]
> 

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

* Re: [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate"
  2021-06-01  7:42   ` Xeonacid
  2021-06-01  8:09     ` Paul Zimmermann
@ 2021-06-02  8:00     ` Paul Zimmermann
  1 sibling, 0 replies; 5+ messages in thread
From: Paul Zimmermann @ 2021-06-02  8:00 UTC (permalink / raw)
  To: Xeonacid; +Cc: libc-alpha

       Dear Xeonacid,

> Here's my new patch. Thanks for your review.

your patch is ill-formed, I cannot apply it as it is, as requested to avoid
losing the author information. Please could you resend it fixed?

* you should provide an accurate commit message that matches the changes
* the subject should not contain [COMMITTED 1/1] but instead [PATCH]

To produce a correct patch, please use git format-patch to produce the
patch, and then git send-email to send it.

Best regards,
Paul

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

end of thread, other threads:[~2021-06-02  8:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-01  6:57 [COMMITTED 1/1] malloc: fix typo "accomodate" should be "accommodate" Xeonacid
2021-06-01  7:23 ` Paul Zimmermann
2021-06-01  7:42   ` Xeonacid
2021-06-01  8:09     ` Paul Zimmermann
2021-06-02  8:00     ` Paul Zimmermann

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).