linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gcc-plugins: update architecture list in documentation
@ 2017-03-20  6:55 Andrew Donnellan
  2017-03-20  8:39 ` Michael Ellerman
  2017-03-22 12:02 ` Michael Ellerman
  0 siblings, 2 replies; 5+ messages in thread
From: Andrew Donnellan @ 2017-03-20  6:55 UTC (permalink / raw)
  To: keescook, re.emese, kernel-hardening; +Cc: linuxppc-dev

Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC
plugins on powerpc, but neglected to update the architecture list in the
docs. Rectify this.

Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC plugins")
Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
---
 Documentation/gcc-plugins.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/Documentation/gcc-plugins.txt b/Documentation/gcc-plugins.txt
index 891c69464434..433eaefb4aa1 100644
--- a/Documentation/gcc-plugins.txt
+++ b/Documentation/gcc-plugins.txt
@@ -18,8 +18,8 @@ because gcc versions 4.5 and 4.6 are compiled by a C compiler,
 gcc-4.7 can be compiled by a C or a C++ compiler,
 and versions 4.8+ can only be compiled by a C++ compiler.
 
-Currently the GCC plugin infrastructure supports only the x86, arm and arm64
-architectures.
+Currently the GCC plugin infrastructure supports only the x86, arm, arm64 and
+powerpc architectures.
 
 This infrastructure was ported from grsecurity [6] and PaX [7].
 
-- 
Andrew Donnellan              OzLabs, ADL Canberra
andrew.donnellan@au1.ibm.com  IBM Australia Limited

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

* Re: [PATCH] gcc-plugins: update architecture list in documentation
  2017-03-20  6:55 [PATCH] gcc-plugins: update architecture list in documentation Andrew Donnellan
@ 2017-03-20  8:39 ` Michael Ellerman
  2017-03-20 17:01   ` Kees Cook
  2017-03-22 12:02 ` Michael Ellerman
  1 sibling, 1 reply; 5+ messages in thread
From: Michael Ellerman @ 2017-03-20  8:39 UTC (permalink / raw)
  To: Andrew Donnellan, keescook, re.emese, kernel-hardening, corbet,
	linux-doc, linux-kernel
  Cc: linuxppc-dev

Andrew Donnellan <andrew.donnellan@au1.ibm.com> writes:

> Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC
> plugins on powerpc, but neglected to update the architecture list in the
> docs. Rectify this.
>
> Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC plugins")
> Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
> ---
>  Documentation/gcc-plugins.txt | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

It would be nice to merge this for v4.11, so the docs are up to do date
with the code for the release.

I'm not sure who owns it though, should it go via Jon as docs
maintainer (added to CC), or via Kees tree or mine?

cheers


>
> diff --git a/Documentation/gcc-plugins.txt b/Documentation/gcc-plugins.txt
> index 891c69464434..433eaefb4aa1 100644
> --- a/Documentation/gcc-plugins.txt
> +++ b/Documentation/gcc-plugins.txt
> @@ -18,8 +18,8 @@ because gcc versions 4.5 and 4.6 are compiled by a C compiler,
>  gcc-4.7 can be compiled by a C or a C++ compiler,
>  and versions 4.8+ can only be compiled by a C++ compiler.
>  
> -Currently the GCC plugin infrastructure supports only the x86, arm and arm64
> -architectures.
> +Currently the GCC plugin infrastructure supports only the x86, arm, arm64 and
> +powerpc architectures.
>  
>  This infrastructure was ported from grsecurity [6] and PaX [7].
>  
> -- 
> Andrew Donnellan              OzLabs, ADL Canberra
> andrew.donnellan@au1.ibm.com  IBM Australia Limited

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

* Re: [PATCH] gcc-plugins: update architecture list in documentation
  2017-03-20  8:39 ` Michael Ellerman
@ 2017-03-20 17:01   ` Kees Cook
  2017-03-21  7:00     ` [kernel-hardening] " Michael Ellerman
  0 siblings, 1 reply; 5+ messages in thread
From: Kees Cook @ 2017-03-20 17:01 UTC (permalink / raw)
  To: Michael Ellerman, Jonathan Corbet, Andrew Donnellan
  Cc: Emese Revfy, kernel-hardening, linux-doc, LKML, linuxppc-dev

On Mon, Mar 20, 2017 at 1:39 AM, Michael Ellerman <mpe@ellerman.id.au> wrote:
> Andrew Donnellan <andrew.donnellan@au1.ibm.com> writes:
>
>> Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC
>> plugins on powerpc, but neglected to update the architecture list in the
>> docs. Rectify this.
>>
>> Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC plugins")
>> Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
>> ---
>>  Documentation/gcc-plugins.txt | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> It would be nice to merge this for v4.11, so the docs are up to do date
> with the code for the release.
>
> I'm not sure who owns it though, should it go via Jon as docs
> maintainer (added to CC), or via Kees tree or mine?

If you have other changes queued for v4.11, please take it via your
tree. Otherwise, perhaps the docs tree or mine? (I don't currently
have any fixes queued; I'm just trying to minimize pull requests going
to Linus...)

-Kees

-- 
Kees Cook
Pixel Security

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

* Re: [kernel-hardening] Re: [PATCH] gcc-plugins: update architecture list in documentation
  2017-03-20 17:01   ` Kees Cook
@ 2017-03-21  7:00     ` Michael Ellerman
  0 siblings, 0 replies; 5+ messages in thread
From: Michael Ellerman @ 2017-03-21  7:00 UTC (permalink / raw)
  To: Kees Cook, Jonathan Corbet, Andrew Donnellan
  Cc: Emese Revfy, kernel-hardening, linux-doc, LKML, linuxppc-dev

Kees Cook <keescook@chromium.org> writes:

> On Mon, Mar 20, 2017 at 1:39 AM, Michael Ellerman <mpe@ellerman.id.au> wrote:
>> Andrew Donnellan <andrew.donnellan@au1.ibm.com> writes:
>>
>>> Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC
>>> plugins on powerpc, but neglected to update the architecture list in the
>>> docs. Rectify this.
>>>
>>> Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC plugins")
>>> Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>
>>> ---
>>>  Documentation/gcc-plugins.txt | 4 ++--
>>>  1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> It would be nice to merge this for v4.11, so the docs are up to do date
>> with the code for the release.
>>
>> I'm not sure who owns it though, should it go via Jon as docs
>> maintainer (added to CC), or via Kees tree or mine?
>
> If you have other changes queued for v4.11, please take it via your
> tree. Otherwise, perhaps the docs tree or mine? (I don't currently
> have any fixes queued; I'm just trying to minimize pull requests going
> to Linus...)

I have some fixes queued already, so unless Jon yells I'll take it in
the next day or so.

cheers

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

* Re: gcc-plugins: update architecture list in documentation
  2017-03-20  6:55 [PATCH] gcc-plugins: update architecture list in documentation Andrew Donnellan
  2017-03-20  8:39 ` Michael Ellerman
@ 2017-03-22 12:02 ` Michael Ellerman
  1 sibling, 0 replies; 5+ messages in thread
From: Michael Ellerman @ 2017-03-22 12:02 UTC (permalink / raw)
  To: Andrew Donnellan, keescook, re.emese, kernel-hardening; +Cc: linuxppc-dev

On Mon, 2017-03-20 at 06:55:22 UTC, Andrew Donnellan wrote:
> Commit 65c059bcaa73 ("powerpc: Enable support for GCC plugins") enabled GCC
> plugins on powerpc, but neglected to update the architecture list in the
> docs. Rectify this.
> 
> Fixes: 65c059bcaa73 ("powerpc: Enable support for GCC plugins")
> Signed-off-by: Andrew Donnellan <andrew.donnellan@au1.ibm.com>

Applied to powerpc fixes, thanks.

https://git.kernel.org/powerpc/c/cc638a488a5205713b51eabd047be6

cheers

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

end of thread, other threads:[~2017-03-22 12:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-20  6:55 [PATCH] gcc-plugins: update architecture list in documentation Andrew Donnellan
2017-03-20  8:39 ` Michael Ellerman
2017-03-20 17:01   ` Kees Cook
2017-03-21  7:00     ` [kernel-hardening] " Michael Ellerman
2017-03-22 12:02 ` Michael Ellerman

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 NNTP newsgroup(s).