* [PATCH v5 00/15] Compiler Attributes
@ 2018-09-24 8:46 Sedat Dilek
2018-09-30 11:11 ` Miguel Ojeda
0 siblings, 1 reply; 7+ messages in thread
From: Sedat Dilek @ 2018-09-24 8:46 UTC (permalink / raw)
To: Miguel Ojeda
Cc: Andreas Dilger, Masahiro Yamada, Michal Marek, Steven Rostedt,
Mauro Carvalho Chehab, Olof Johansson, Konstantin Ryabitsev,
David S. Miller, Andrey Ryabinin, Kees Cook, Thomas Gleixner,
Ingo Molnar, Paul Lawrence, Sandipan Das, Andrey Konovalov,
David Woodhouse, Will Deacon, Philippe Ombredanne, Paul Burton,
David Rientjes, Willy Tarreau, Martin Sebor, Christopher Li,
Jonathan Corbet, Theodore Ts'o, Geert Uytterhoeven,
Rasmus Villemoes, Joe Perches, Arnd Bergmann, Dominique Martinet,
Stefan Agner, Luc Van Oostenryck, Nick Desaulniers, Andrew Morton,
Greg Kroah-Hartman, Linus Torvalds, linux-doc, linux-ext4,
linux-sparse, linux-kbuild
[ Please CC me I am not subcribed to this ML ]
Quote from <https://lkml.org/lkml/2018/9/20/901>:
The Compiler Attributes series is an effort to disentangle
the include/linux/compiler*.h headers and bring them up to date.
The main idea behind the series is to use feature checking macros
(i.e. __has_attribute) instead of compiler version checks (e.g. GCC_VERSION),
which are compiler-agnostic (so they can be shared, reducing the size
of compiler-specific headers) and version-agnostic.
Other related improvements have been performed in the headers as well,
which on top of the use of __has_attribute it has amounted to a significant
simplification of these headers (e.g. GCC_VERSION is now only guarding 4
non-attribute macros).
This series should also help the efforts to support compiling the kernel
with clang and icc. A fair amount of documentation and comments have also
been added, clarified or removed; and the headers are now more readable,
which should help kernel developers in general.
The series was triggered due to the move to gcc >= 4.6. In turn, this series
has also triggered Sparse to gain the ability to recognize __has_attribute
on its own.
Finally, the nonstring variable attribute series has been applied on top
of this one.
You can also fetch it from:
https://github.com/ojeda/linux/tree/compiler-attributes-v5
Enjoy!
Cheers,
Miguel
Cc: Andreas Dilger <adilger.kernel@dilger.ca>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Michal Marek <michal.lkml@markovi.net>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Cc: Olof Johansson <olof@lxom.net>
Cc: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Cc: David S. Miller <davem@davemloft.net>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Lawrence <paullawrence@google.com>
Cc: Sandipan Das <sandipan@linux.vnet.ibm.com>
Cc: Andrey Konovalov <andreyknvl@google.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Philippe Ombredanne <pombredanne@nexb.com>
Cc: Paul Burton <paul.burton@mips.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Willy Tarreau <w@1wt.eu>
Cc: Martin Sebor <msebor@gmail.com>
Cc: Christopher Li <sparse@chrisli.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Joe Perches <joe@perches.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Dominique Martinet <asmadeus@codewreck.org>
Cc: Stefan Agner <stefan@agner.ch>
Cc: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-doc@vger.kernel.org
Cc: linux-ext4@vger.kernel.org
Cc: linux-sparse@vger.kernel.org
Cc: linux-kbuild@vger.kernel.org
v4 -> v5
* Removed the 2 __naked patches, since Greg just applied them to master;
and rebased on top of that. The only change in the range-diff is in
"Compiler Attributes: always use the extra-underscores syntax" due
to the move of __naked to compiler_types.h.
* Applied the nonstring series on top of this one (last 4 patches).
Rationale:
- the nonstring series would anyway be modified again by this one
(so it has been rebased after the general cleanup).
- ext4's "local" nonstring was merged
- easier to manage (and easier to see the end result)
The first 2 patches of the last 4 add the warning back at W=1 and
add the __nonstring attribute. The other two serve as an example
of usage and as a cleanup.
* Cc lists removed from each commit; using a single list in the cover letter;
and a new, revised list of Cc (wider audience).
Miguel Ojeda (15):
Compiler Attributes: remove unused attributes
Compiler Attributes: always use the extra-underscores syntax
Compiler Attributes: remove unneeded tests
Compiler Attributes: homogenize __must_be_array
Compiler Attributes: remove unneeded sparse (__CHECKER__) tests
Compiler Attributes: add missing SPDX ID in compiler_types.h
Compiler Attributes: use feature checks instead of version checks
Compiler Attributes: KENTRY used twice the "used" attribute
Compiler Attributes: remove uses of __attribute__ from compiler.h
Compiler Attributes: add Doc/process/programming-language.rst
Compiler Attributes: add MAINTAINERS entry
Compiler Attributes: add support for __nonstring (gcc >= 8)
Compiler Attributes: enable -Wstringop-truncation on W=1 (gcc >= 8)
Compiler Attributes: auxdisplay: panel: use __nonstring
Compiler Attributes: ext4: remove local __nonstring definition
Documentation/process/index.rst | 1 +
.../process/programming-language.rst | 45 +++
MAINTAINERS | 5 +
drivers/auxdisplay/panel.c | 7 +-
fs/ext4/ext4.h | 9 -
include/linux/compiler-clang.h | 5 -
include/linux/compiler-gcc.h | 70 +----
include/linux/compiler-intel.h | 9 -
include/linux/compiler.h | 19 +-
include/linux/compiler_attributes.h | 258 ++++++++++++++++++
include/linux/compiler_types.h | 101 +------
scripts/Makefile.extrawarn | 1 +
12 files changed, 341 insertions(+), 189 deletions(-)
create mode 100644 Documentation/process/programming-language.rst
create mode 100644 include/linux/compiler_attributes.h
--
2.17.1
Tested-by: Sedat Dilek <sedat.dilek@gmail.com> (against Linux
v4.19-rc5 and built with LLVM/Clang v7)
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5 00/15] Compiler Attributes
2018-09-24 8:46 [PATCH v5 00/15] Compiler Attributes Sedat Dilek
@ 2018-09-30 11:11 ` Miguel Ojeda
[not found] ` <CA+icZUXnew3JNME1UcCN0Dtc_3CHutyqcJ3yvb4d_rDBDt3jKw@mail.gmail.com>
0 siblings, 1 reply; 7+ messages in thread
From: Miguel Ojeda @ 2018-09-30 11:11 UTC (permalink / raw)
To: sedat.dilek
Cc: Andreas Dilger, Masahiro Yamada, Michal Marek, Steven Rostedt,
Mauro Carvalho Chehab, Olof Johansson, Konstantin Ryabitsev,
David Miller, Andrey Ryabinin, Kees Cook, Thomas Gleixner,
Ingo Molnar, Paul Lawrence, Sandipan Das, Andrey Konovalov,
David Woodhouse, Will Deacon, Philippe Ombredanne, Paul Burton,
David Rientjes, Willy Tarreau, Martin Sebor, Christopher Li,
Jonathan Corbet, Ted Ts'o, Geert Uytterhoeven,
Rasmus Villemoes, Joe Perches, Arnd Bergmann, Dominique Martinet,
Stefan Agner, Luc Van Oostenryck, Nick Desaulniers, Andrew Morton,
Greg KH, Linus Torvalds, Linux Doc Mailing List,
Ext4 Developers List, linux-sparse, linux-kbuild
Hi Sedat,
On Mon, Sep 24, 2018 at 10:46 AM Sedat Dilek <sedat.dilek@gmail.com> wrote:
>
> [ Please CC me I am not subcribed to this ML ]
>
> Quote from <https://lkml.org/lkml/2018/9/20/901>:
>
> Tested-by: Sedat Dilek <sedat.dilek@gmail.com> (against Linux
> v4.19-rc5 and built with LLVM/Clang v7)
Thanks a lot for testing! Which configuration roughly (e.g.
allmodconfig)? Did you boot it & run it for a while?
Cheers,
Miguel
^ permalink raw reply [flat|nested] 7+ messages in thread
* [PATCH v5 00/15] Compiler Attributes
@ 2018-09-20 17:22 Miguel Ojeda
2018-09-20 18:18 ` Nick Desaulniers
2018-09-24 14:36 ` Luc Van Oostenryck
0 siblings, 2 replies; 7+ messages in thread
From: Miguel Ojeda @ 2018-09-20 17:22 UTC (permalink / raw)
To: Greg Kroah-Hartman
Cc: linux-kernel, Miguel Ojeda, Andreas Dilger, Masahiro Yamada,
Michal Marek, Steven Rostedt, Mauro Carvalho Chehab,
Olof Johansson, Konstantin Ryabitsev, David S . Miller,
Andrey Ryabinin, Kees Cook, Thomas Gleixner, Ingo Molnar,
Paul Lawrence, Sandipan Das, Andrey Konovalov, David Woodhouse,
Will Deacon, Philippe Ombredanne, Paul Burton, David Rientjes,
Willy Tarreau, Martin Sebor, Christopher Li, Jonathan Corbet,
Theodore Ts'o, Geert Uytterhoeven, Rasmus Villemoes,
Joe Perches, Arnd Bergmann, Dominique Martinet, Stefan Agner,
Luc Van Oostenryck, Nick Desaulniers, Andrew Morton,
Linus Torvalds, linux-doc, linux-ext4, linux-sparse, linux-kbuild
The Compiler Attributes series is an effort to disentangle
the include/linux/compiler*.h headers and bring them up to date.
The main idea behind the series is to use feature checking macros
(i.e. __has_attribute) instead of compiler version checks (e.g. GCC_VERSION),
which are compiler-agnostic (so they can be shared, reducing the size
of compiler-specific headers) and version-agnostic.
Other related improvements have been performed in the headers as well,
which on top of the use of __has_attribute it has amounted to a significant
simplification of these headers (e.g. GCC_VERSION is now only guarding 4
non-attribute macros).
This series should also help the efforts to support compiling the kernel
with clang and icc. A fair amount of documentation and comments have also
been added, clarified or removed; and the headers are now more readable,
which should help kernel developers in general.
The series was triggered due to the move to gcc >= 4.6. In turn, this series
has also triggered Sparse to gain the ability to recognize __has_attribute
on its own.
Finally, the nonstring variable attribute series has been applied on top
of this one.
You can also fetch it from:
https://github.com/ojeda/linux/tree/compiler-attributes-v5
Enjoy!
Cheers,
Miguel
Cc: Andreas Dilger <adilger.kernel@dilger.ca>
Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
Cc: Michal Marek <michal.lkml@markovi.net>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
Cc: Olof Johansson <olof@lxom.net>
Cc: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
Cc: David S. Miller <davem@davemloft.net>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Paul Lawrence <paullawrence@google.com>
Cc: Sandipan Das <sandipan@linux.vnet.ibm.com>
Cc: Andrey Konovalov <andreyknvl@google.com>
Cc: David Woodhouse <dwmw2@infradead.org>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Philippe Ombredanne <pombredanne@nexb.com>
Cc: Paul Burton <paul.burton@mips.com>
Cc: David Rientjes <rientjes@google.com>
Cc: Willy Tarreau <w@1wt.eu>
Cc: Martin Sebor <msebor@gmail.com>
Cc: Christopher Li <sparse@chrisli.org>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Joe Perches <joe@perches.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Dominique Martinet <asmadeus@codewreck.org>
Cc: Stefan Agner <stefan@agner.ch>
Cc: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
Cc: Nick Desaulniers <ndesaulniers@google.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-doc@vger.kernel.org
Cc: linux-ext4@vger.kernel.org
Cc: linux-sparse@vger.kernel.org
Cc: linux-kbuild@vger.kernel.org
v4 -> v5
* Removed the 2 __naked patches, since Greg just applied them to master;
and rebased on top of that. The only change in the range-diff is in
"Compiler Attributes: always use the extra-underscores syntax" due
to the move of __naked to compiler_types.h.
* Applied the nonstring series on top of this one (last 4 patches).
Rationale:
- the nonstring series would anyway be modified again by this one
(so it has been rebased after the general cleanup).
- ext4's "local" nonstring was merged
- easier to manage (and easier to see the end result)
The first 2 patches of the last 4 add the warning back at W=1 and
add the __nonstring attribute. The other two serve as an example
of usage and as a cleanup.
* Cc lists removed from each commit; using a single list in the cover letter;
and a new, revised list of Cc (wider audience).
Miguel Ojeda (15):
Compiler Attributes: remove unused attributes
Compiler Attributes: always use the extra-underscores syntax
Compiler Attributes: remove unneeded tests
Compiler Attributes: homogenize __must_be_array
Compiler Attributes: remove unneeded sparse (__CHECKER__) tests
Compiler Attributes: add missing SPDX ID in compiler_types.h
Compiler Attributes: use feature checks instead of version checks
Compiler Attributes: KENTRY used twice the "used" attribute
Compiler Attributes: remove uses of __attribute__ from compiler.h
Compiler Attributes: add Doc/process/programming-language.rst
Compiler Attributes: add MAINTAINERS entry
Compiler Attributes: add support for __nonstring (gcc >= 8)
Compiler Attributes: enable -Wstringop-truncation on W=1 (gcc >= 8)
Compiler Attributes: auxdisplay: panel: use __nonstring
Compiler Attributes: ext4: remove local __nonstring definition
Documentation/process/index.rst | 1 +
.../process/programming-language.rst | 45 +++
MAINTAINERS | 5 +
drivers/auxdisplay/panel.c | 7 +-
fs/ext4/ext4.h | 9 -
include/linux/compiler-clang.h | 5 -
include/linux/compiler-gcc.h | 70 +----
include/linux/compiler-intel.h | 9 -
include/linux/compiler.h | 19 +-
include/linux/compiler_attributes.h | 258 ++++++++++++++++++
include/linux/compiler_types.h | 101 +------
scripts/Makefile.extrawarn | 1 +
12 files changed, 341 insertions(+), 189 deletions(-)
create mode 100644 Documentation/process/programming-language.rst
create mode 100644 include/linux/compiler_attributes.h
--
2.17.1
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5 00/15] Compiler Attributes
2018-09-20 17:22 Miguel Ojeda
@ 2018-09-20 18:18 ` Nick Desaulniers
2018-09-24 14:36 ` Luc Van Oostenryck
1 sibling, 0 replies; 7+ messages in thread
From: Nick Desaulniers @ 2018-09-20 18:18 UTC (permalink / raw)
To: Miguel Ojeda
Cc: Greg KH, LKML, adilger.kernel, Masahiro Yamada, Michal Marek,
rostedt, mchehab+samsung, olof, konstantin, David S. Miller,
Andrey Ryabinin, Kees Cook, Thomas Gleixner, Ingo Molnar,
Paul Lawrence, sandipan, Andrey Konovalov, David Woodhouse,
Will Deacon, Philippe Ombredanne, paul.burton, David Rientjes, w,
msebor, sparse, Jonathan Corbet, tytso, Geert Uytterhoeven,
Rasmus Villemoes, joe, Arnd Bergmann, asmadeus, Stefan Agner,
Luc Van Oostenryck, Andrew Morton, Linus Torvalds, linux-doc,
linux-ext4, linux-sparse, Linux Kbuild mailing list
On Thu, Sep 20, 2018 at 10:23 AM Miguel Ojeda
<miguel.ojeda.sandonis@gmail.com> wrote:
>
> The Compiler Attributes series is an effort to disentangle
> the include/linux/compiler*.h headers and bring them up to date.
>
> The main idea behind the series is to use feature checking macros
> (i.e. __has_attribute) instead of compiler version checks (e.g. GCC_VERSION),
> which are compiler-agnostic (so they can be shared, reducing the size
> of compiler-specific headers) and version-agnostic.
>
> Other related improvements have been performed in the headers as well,
> which on top of the use of __has_attribute it has amounted to a significant
> simplification of these headers (e.g. GCC_VERSION is now only guarding 4
> non-attribute macros).
>
> This series should also help the efforts to support compiling the kernel
> with clang and icc. A fair amount of documentation and comments have also
> been added, clarified or removed; and the headers are now more readable,
> which should help kernel developers in general.
>
> The series was triggered due to the move to gcc >= 4.6. In turn, this series
> has also triggered Sparse to gain the ability to recognize __has_attribute
> on its own.
>
> Finally, the nonstring variable attribute series has been applied on top
> of this one.
>
> You can also fetch it from:
>
> https://github.com/ojeda/linux/tree/compiler-attributes-v5
>
> Enjoy!
>
> Cheers,
> Miguel
Thanks for this series. I've reviewed the rest of the patches in the
series that didn't already have my reviewed by tags on them. They
look good to go to me.
>
> Cc: Andreas Dilger <adilger.kernel@dilger.ca>
> Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
> Cc: Michal Marek <michal.lkml@markovi.net>
> Cc: Steven Rostedt <rostedt@goodmis.org>
> Cc: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
> Cc: Olof Johansson <olof@lxom.net>
> Cc: Konstantin Ryabitsev <konstantin@linuxfoundation.org>
> Cc: David S. Miller <davem@davemloft.net>
> Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
> Cc: Kees Cook <keescook@chromium.org>
> Cc: Thomas Gleixner <tglx@linutronix.de>
> Cc: Ingo Molnar <mingo@kernel.org>
> Cc: Paul Lawrence <paullawrence@google.com>
> Cc: Sandipan Das <sandipan@linux.vnet.ibm.com>
> Cc: Andrey Konovalov <andreyknvl@google.com>
> Cc: David Woodhouse <dwmw2@infradead.org>
> Cc: Will Deacon <will.deacon@arm.com>
> Cc: Philippe Ombredanne <pombredanne@nexb.com>
> Cc: Paul Burton <paul.burton@mips.com>
> Cc: David Rientjes <rientjes@google.com>
> Cc: Willy Tarreau <w@1wt.eu>
> Cc: Martin Sebor <msebor@gmail.com>
> Cc: Christopher Li <sparse@chrisli.org>
> Cc: Jonathan Corbet <corbet@lwn.net>
> Cc: Theodore Ts'o <tytso@mit.edu>
> Cc: Geert Uytterhoeven <geert@linux-m68k.org>
> Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
> Cc: Joe Perches <joe@perches.com>
> Cc: Arnd Bergmann <arnd@arndb.de>
> Cc: Dominique Martinet <asmadeus@codewreck.org>
> Cc: Stefan Agner <stefan@agner.ch>
> Cc: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
> Cc: Nick Desaulniers <ndesaulniers@google.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
> Cc: Linus Torvalds <torvalds@linux-foundation.org>
> Cc: linux-doc@vger.kernel.org
> Cc: linux-ext4@vger.kernel.org
> Cc: linux-sparse@vger.kernel.org
> Cc: linux-kbuild@vger.kernel.org
>
> v4 -> v5
>
> * Removed the 2 __naked patches, since Greg just applied them to master;
> and rebased on top of that. The only change in the range-diff is in
> "Compiler Attributes: always use the extra-underscores syntax" due
> to the move of __naked to compiler_types.h.
>
> * Applied the nonstring series on top of this one (last 4 patches).
> Rationale:
> - the nonstring series would anyway be modified again by this one
> (so it has been rebased after the general cleanup).
> - ext4's "local" nonstring was merged
> - easier to manage (and easier to see the end result)
>
> The first 2 patches of the last 4 add the warning back at W=1 and
> add the __nonstring attribute. The other two serve as an example
> of usage and as a cleanup.
>
> * Cc lists removed from each commit; using a single list in the cover letter;
> and a new, revised list of Cc (wider audience).
>
> Miguel Ojeda (15):
> Compiler Attributes: remove unused attributes
> Compiler Attributes: always use the extra-underscores syntax
> Compiler Attributes: remove unneeded tests
> Compiler Attributes: homogenize __must_be_array
> Compiler Attributes: remove unneeded sparse (__CHECKER__) tests
> Compiler Attributes: add missing SPDX ID in compiler_types.h
> Compiler Attributes: use feature checks instead of version checks
> Compiler Attributes: KENTRY used twice the "used" attribute
> Compiler Attributes: remove uses of __attribute__ from compiler.h
> Compiler Attributes: add Doc/process/programming-language.rst
> Compiler Attributes: add MAINTAINERS entry
> Compiler Attributes: add support for __nonstring (gcc >= 8)
> Compiler Attributes: enable -Wstringop-truncation on W=1 (gcc >= 8)
> Compiler Attributes: auxdisplay: panel: use __nonstring
> Compiler Attributes: ext4: remove local __nonstring definition
>
> Documentation/process/index.rst | 1 +
> .../process/programming-language.rst | 45 +++
> MAINTAINERS | 5 +
> drivers/auxdisplay/panel.c | 7 +-
> fs/ext4/ext4.h | 9 -
> include/linux/compiler-clang.h | 5 -
> include/linux/compiler-gcc.h | 70 +----
> include/linux/compiler-intel.h | 9 -
> include/linux/compiler.h | 19 +-
> include/linux/compiler_attributes.h | 258 ++++++++++++++++++
> include/linux/compiler_types.h | 101 +------
> scripts/Makefile.extrawarn | 1 +
> 12 files changed, 341 insertions(+), 189 deletions(-)
> create mode 100644 Documentation/process/programming-language.rst
> create mode 100644 include/linux/compiler_attributes.h
>
> --
> 2.17.1
>
--
Thanks,
~Nick Desaulniers
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5 00/15] Compiler Attributes
2018-09-20 17:22 Miguel Ojeda
2018-09-20 18:18 ` Nick Desaulniers
@ 2018-09-24 14:36 ` Luc Van Oostenryck
2018-09-30 11:13 ` Miguel Ojeda
1 sibling, 1 reply; 7+ messages in thread
From: Luc Van Oostenryck @ 2018-09-24 14:36 UTC (permalink / raw)
To: Miguel Ojeda
Cc: Greg Kroah-Hartman, linux-kernel, Andreas Dilger, Masahiro Yamada,
Michal Marek, Steven Rostedt, Mauro Carvalho Chehab,
Olof Johansson, Konstantin Ryabitsev, David S . Miller,
Andrey Ryabinin, Kees Cook, Thomas Gleixner, Ingo Molnar,
Paul Lawrence, Sandipan Das, Andrey Konovalov, David Woodhouse,
Will Deacon, Philippe Ombredanne, Paul Burton, David Rientjes,
Willy Tarreau, Martin Sebor, Christopher Li, Jonathan Corbet,
Theodore Ts'o, Geert Uytterhoeven, Rasmus Villemoes,
Joe Perches, Arnd Bergmann, Dominique Martinet, Stefan Agner,
Nick Desaulniers, Andrew Morton, Linus Torvalds, linux-doc,
linux-ext4, linux-sparse, linux-kbuild
On Thu, Sep 20, 2018 at 07:22:46PM +0200, Miguel Ojeda wrote:
> The Compiler Attributes series is an effort to disentangle
> the include/linux/compiler*.h headers and bring them up to date.
>
> The main idea behind the series is to use feature checking macros
> (i.e. __has_attribute) instead of compiler version checks (e.g. GCC_VERSION),
> which are compiler-agnostic (so they can be shared, reducing the size
> of compiler-specific headers) and version-agnostic.
>
> Other related improvements have been performed in the headers as well,
> which on top of the use of __has_attribute it has amounted to a significant
> simplification of these headers (e.g. GCC_VERSION is now only guarding 4
> non-attribute macros).
>
> This series should also help the efforts to support compiling the kernel
> with clang and icc. A fair amount of documentation and comments have also
> been added, clarified or removed; and the headers are now more readable,
> which should help kernel developers in general.
>
> The series was triggered due to the move to gcc >= 4.6. In turn, this series
> has also triggered Sparse to gain the ability to recognize __has_attribute
> on its own.
>
> Finally, the nonstring variable attribute series has been applied on top
> of this one.
Hi Miguel,
Feel free to add my
Reviewed-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
on patches 11-15 (I think the others ones already have it).
-- Luc
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v5 00/15] Compiler Attributes
2018-09-24 14:36 ` Luc Van Oostenryck
@ 2018-09-30 11:13 ` Miguel Ojeda
0 siblings, 0 replies; 7+ messages in thread
From: Miguel Ojeda @ 2018-09-30 11:13 UTC (permalink / raw)
To: Luc Van Oostenryck
Cc: Greg KH, linux-kernel, Andreas Dilger, Masahiro Yamada,
Michal Marek, Steven Rostedt, Mauro Carvalho Chehab,
Olof Johansson, Konstantin Ryabitsev, David Miller,
Andrey Ryabinin, Kees Cook, Thomas Gleixner, Ingo Molnar,
Paul Lawrence, Sandipan Das, Andrey Konovalov, David Woodhouse,
Will Deacon, Philippe Ombredanne, Paul Burton, David Rientjes,
Willy Tarreau, Martin Sebor, Christopher Li, Jonathan Corbet,
Ted Ts'o, Geert Uytterhoeven, Rasmus Villemoes, Joe Perches,
Arnd Bergmann, Dominique Martinet, Stefan Agner, Nick Desaulniers,
Andrew Morton, Linus Torvalds, Linux Doc Mailing List,
Ext4 Developers List, linux-sparse, linux-kbuild
On Mon, Sep 24, 2018 at 4:36 PM Luc Van Oostenryck
<luc.vanoostenryck@gmail.com> wrote:
>
> On Thu, Sep 20, 2018 at 07:22:46PM +0200, Miguel Ojeda wrote:
> > The Compiler Attributes series is an effort to disentangle
> > the include/linux/compiler*.h headers and bring them up to date.
> >
> > The main idea behind the series is to use feature checking macros
> > (i.e. __has_attribute) instead of compiler version checks (e.g. GCC_VERSION),
> > which are compiler-agnostic (so they can be shared, reducing the size
> > of compiler-specific headers) and version-agnostic.
> >
> > Other related improvements have been performed in the headers as well,
> > which on top of the use of __has_attribute it has amounted to a significant
> > simplification of these headers (e.g. GCC_VERSION is now only guarding 4
> > non-attribute macros).
> >
> > This series should also help the efforts to support compiling the kernel
> > with clang and icc. A fair amount of documentation and comments have also
> > been added, clarified or removed; and the headers are now more readable,
> > which should help kernel developers in general.
> >
> > The series was triggered due to the move to gcc >= 4.6. In turn, this series
> > has also triggered Sparse to gain the ability to recognize __has_attribute
> > on its own.
> >
> > Finally, the nonstring variable attribute series has been applied on top
> > of this one.
>
> Hi Miguel,
> Feel free to add my
> Reviewed-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com>
> on patches 11-15 (I think the others ones already have it).
>
Done for both Nick and you!
Cheers,
Miguel
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-10-06 10:19 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-09-24 8:46 [PATCH v5 00/15] Compiler Attributes Sedat Dilek
2018-09-30 11:11 ` Miguel Ojeda
[not found] ` <CA+icZUXnew3JNME1UcCN0Dtc_3CHutyqcJ3yvb4d_rDBDt3jKw@mail.gmail.com>
2018-10-06 10:19 ` Miguel Ojeda
-- strict thread matches above, loose matches on Subject: below --
2018-09-20 17:22 Miguel Ojeda
2018-09-20 18:18 ` Nick Desaulniers
2018-09-24 14:36 ` Luc Van Oostenryck
2018-09-30 11:13 ` Miguel Ojeda
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).